Home
last modified time | relevance | path

Searched refs:prob_size (Results 1 – 11 of 11) sorted by relevance

/libCEED/examples/ceed/
H A Dex1-volume-f.f9046 integer prob_size local
51 num_elem = prob_size/(degree**fe_dim)
260 integer prob_size, mesh_size, sol_size variable
288 prob_size = -1
327 read(arg_value, '(I10)') prob_size
342 if (prob_size < 0) then
344 prob_size = 8 * 16
346 prob_size = 256 * 1024
359 write (*, *) ' Approx. # unknowns [-s] : ', prob_size
384 call getcartesianmeshsize(fe_dim, sol_degree, prob_size, num_xyz)
H A Dex2-surface.c48 int GetCartesianMeshSize(CeedInt dim, CeedInt degree, CeedInt prob_size, CeedInt num_xyz[3]);
62 CeedInt prob_size = -1; // approximate problem size in main() local
83 parse_error = next_arg ? prob_size = atoi(argv[++ia]), 0 : 1; in main()
97 if (prob_size < 0) prob_size = test ? 16 * 16 * dim * dim : 256 * 1024; in main()
112 printf(" Approx. # unknowns [-s] : %" CeedInt_FMT "\n", prob_size); in main()
136 GetCartesianMeshSize(dim, sol_degree, prob_size, num_xyz); in main()
314 int GetCartesianMeshSize(CeedInt dim, CeedInt degree, CeedInt prob_size, CeedInt num_xyz[3]) { in GetCartesianMeshSize() argument
317 CeedInt num_elem = prob_size / CeedIntPow(degree, dim); in GetCartesianMeshSize()
H A Dex3-volume.c47 int GetCartesianMeshSize(CeedInt dim, CeedInt degree, CeedInt prob_size, CeedInt num_xyz[dim…
61 CeedInt prob_size = -1; // approximate problem size in main() local
82 parse_error = next_arg ? prob_size = atoi(argv[++ia]), 0 : 1; in main()
94 if (prob_size < 0) prob_size = test ? 8 * 16 : 256 * 1024; in main()
105 printf(" Approx. # unknowns [-s] : %" CeedInt_FMT "\n", prob_size); in main()
129 GetCartesianMeshSize(dim, sol_degree, prob_size, num_xyz); in main()
283 int GetCartesianMeshSize(CeedInt dim, CeedInt degree, CeedInt prob_size, CeedInt num_xyz[dim]) { in GetCartesianMeshSize() argument
286 CeedInt num_elem = prob_size / CeedIntPow(degree, dim); in GetCartesianMeshSize()
H A Dex1-volume.c48 int GetCartesianMeshSize(CeedInt dim, CeedInt degree, CeedInt prob_size, CeedInt num_xyz[dim…
62 CeedInt prob_size = -1; // approximate problem size in main() local
83 parse_error = next_arg ? prob_size = atoi(argv[++ia]), 0 : 1; in main()
97 if (prob_size < 0) prob_size = test ? 8 * 16 : 256 * 1024; in main()
108 printf(" Approx. # unknowns [-s] : %" CeedInt_FMT "\n", prob_size); in main()
132 GetCartesianMeshSize(dim, sol_degree, prob_size, num_xyz); in main()
294 int GetCartesianMeshSize(CeedInt dim, CeedInt degree, CeedInt prob_size, CeedInt num_xyz[dim]) { in GetCartesianMeshSize() argument
297 CeedInt num_elem = prob_size / CeedIntPow(degree, dim); in GetCartesianMeshSize()
/libCEED/examples/rust-qfunctions/
H A Dex1-volume.c49 int GetCartesianMeshSize(CeedInt dim, CeedInt degree, CeedInt prob_size, CeedInt num_xyz[dim…
63 CeedInt prob_size = -1; // approximate problem size in main() local
84 parse_error = next_arg ? prob_size = atoi(argv[++ia]), 0 : 1; in main()
98 if (prob_size < 0) prob_size = test ? 8 * 16 : 256 * 1024; in main()
109 printf(" Approx. # unknowns [-s] : %" CeedInt_FMT "\n", prob_size); in main()
142 GetCartesianMeshSize(dim, sol_degree, prob_size, num_xyz); in main()
304 int GetCartesianMeshSize(CeedInt dim, CeedInt degree, CeedInt prob_size, CeedInt num_xyz[dim]) { in GetCartesianMeshSize() argument
307 CeedInt num_elem = prob_size / CeedIntPow(degree, dim); in GetCartesianMeshSize()
/libCEED/julia/LibCEED.jl/examples/
H A Dex2-surface.jl15 function run_ex2(; ceed_spec, dim, mesh_order, sol_order, num_qpts, prob_size, gallery) argument
17 prob_size < 0 && (prob_size = 256*1024)
28 nxyz = get_cartesian_mesh_size(dim, sol_order, prob_size)
169 prob_size=-1,
H A Dex1-volume.jl31 function run_ex1(; ceed_spec, dim, mesh_order, sol_order, num_qpts, prob_size, gallery) argument
33 prob_size < 0 && (prob_size = 256*1024)
42 nxyz = get_cartesian_mesh_size(dim, sol_order, prob_size)
156 prob_size=-1,
H A Dex3-volume.jl31 function run_ex3(; ceed_spec, dim, mesh_order, sol_order, num_qpts, prob_size) argument
33 prob_size < 0 && (prob_size = 256*1024)
42 nxyz = get_cartesian_mesh_size(dim, sol_order, prob_size)
196 prob_size=-1,
H A Dcommon.jl1 function get_cartesian_mesh_size(dim, order, prob_size) argument
4 # prob_size ~ num_elem * order^dim
5 num_elem = div(prob_size, order^dim)
H A Dex1-volume-c.jl62 function get_cartesian_mesh_size_c(dim, order, prob_size) argument
65 # prob_size ~ num_elem * order^dim
66 num_elem = div(prob_size, order^dim)
215 function run_ex1_c(; ceed_spec, dim, mesh_order, sol_order, num_qpts, prob_size) argument
217 prob_size < 0 && (prob_size = 256*1024)
246 nxyz = get_cartesian_mesh_size_c(dim, sol_order, prob_size)
433 prob_size=-1,
/libCEED/examples/python/
H A Dex_common.py59 def get_cartesian_mesh_size(dim, degree, prob_size): argument
71 num_elem = prob_size // (degree ** dim)