Skip to content

Commit 7fe0c9d

Browse files
committed
Small updates
1 parent 4c80fb8 commit 7fe0c9d

File tree

4 files changed

+4
-17
lines changed

4 files changed

+4
-17
lines changed

py.supp

-14
Original file line numberDiff line numberDiff line change
@@ -22,20 +22,6 @@
2222
fun:internal_ascii_loop
2323
...
2424
}
25-
{
26-
<ffi_cond>
27-
Memcheck:Cond
28-
...
29-
fun:ffi_call
30-
...
31-
}
32-
{
33-
<ffi_val>
34-
Memcheck:Value8
35-
...
36-
fun:ffi_call
37-
...
38-
}
3925
{
4026
<destroy_shared_ptr>
4127
Memcheck:Free

simd/dolfin_batch_assembly/holzapfel.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,13 @@
55
from dolfin import MPI
66

77
import ufl
8-
from ufl import inner, dot, grad, dx, ds, tr, det, ln
8+
from ufl import inner, dot, grad, dx, tr, det, ln
99

1010
import time
1111

1212

1313
def assemble_test(cell_batch_size: int):
14-
mesh = dolfin.UnitCubeMesh(MPI.comm_world, 2, 2, 2)
14+
mesh = dolfin.UnitCubeMesh(MPI.comm_world, 40, 40, 40)
1515

1616
def isochoric(F):
1717
C = F.T*F

simd/ttbench/ttbench/form_data.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ def holzapfel_p1tet() -> FormTestData:
119119
element_tensor_size=144,
120120
coefficients=W12x12,
121121
coord_dofs=DOF_4x3,
122-
n_elems=int(np.floor(80 ** 3 / 4) * 4)
122+
n_elems=int(np.floor(70 ** 3 / 4) * 4)
123123
)
124124

125125

simd/ttbench/ttbench/main.py

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
import ttbench.io as io
55

66

7+
# TODO: remove arrays and shapes from FormTestData (can be calculated using FIAT)
78
# TODO: remove speedup calculation before plotting?
89
# TODO: add name for compile parameter set during test case definition
910
# TODO: proper configuration of plotting

0 commit comments

Comments
 (0)