Home
last modified time | relevance | path

Searched refs:indu (Results 1 – 9 of 9) sorted by relevance

/libCEED/tests/
H A Dt504-operator-f.f9026 integer indu(nelem*p)
47 indu(p*i+j+1)=2*(i*(p-1)+j)
52 & ceed_use_pointer,indu,erestrictu,err)
H A Dt500-operator-f.f9026 integer indu(nelem*p)
52 indu(p*i+j+1)=i*(p-1)+j
57 & ceed_use_pointer,indu,erestrictu,err)
H A Dt503-operator-f.f9026 integer indu(nelem*p)
63 indu(p*i+j+1)=i*(p-1)+j
68 & ceed_use_pointer,indu,erestrictu,err)
H A Dt502-operator-f.f9026 integer indu(nelem*p)
53 indu(p*i+j+1)=2*(i*(p-1)+j)
58 & ceed_use_pointer,indu,erestrictu,err)
H A Dt501-operator-f.f9026 integer indu(nelem*p)
53 indu(p*i+j+1)=i*(p-1)+j
58 & ceed_use_pointer,indu,erestrictu,err)
H A Dt505-operator-f.f9026 integer indu(nelem*p)
53 indu(p*i+j+1)=i*(p-1)+j
58 & ceed_use_pointer,indu,erestrictu,err)
H A Dt506-operator-f.f9028 integer indu(nelem*p)
55 indu(p*i+j+1)=2*(i*(p-1)+j)
60 & ceed_use_pointer,indu,erestrictu,err)
/libCEED/python/tests/
H A Dtest-5-operator.py69 indu = np.zeros(nelem * p, dtype="int32")
72 indu[p * i + j] = i * (p - 1) + j
73 ru = ceed.ElemRestriction(nelem, p, 1, 1, nu, indu,
158 indu = np.zeros(nelem * p, dtype="int32")
161 indu[p * i + j] = i * (p - 1) + j
162 ru = ceed.ElemRestriction(nelem, p, 1, 1, nu, indu,
248 indu = np.zeros(nelem * p, dtype="int32")
251 indu[p * i + j] = 2 * (i * (p - 1) + j)
252 ru = ceed.ElemRestriction(nelem, p, 2, 1, 2 * nu, indu,
345 indu = np.zeros(nelem * p, dtype="int32")
[all …]
/libCEED/rust/libceed/src/
H A Dlib.rs1210 let mut indu: Vec<i32> = vec![0; p * nelem]; in ceed_t501() localVariable
1213 indu[p * i + j] = (i + j) as i32; in ceed_t501()
1216 let ru = ceed.elem_restriction(nelem, p, 1, 1, ndofs, MemType::Host, &indu)?; in ceed_t501()