| /libCEED/examples/ceed/ |
| H A D | ex1-volume-f.f90 | 46 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 D | ex2-surface.c | 48 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 D | ex3-volume.c | 47 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 D | ex1-volume.c | 48 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 D | ex1-volume.c | 49 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 D | ex2-surface.jl | 15 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 D | ex1-volume.jl | 31 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 D | ex3-volume.jl | 31 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 D | common.jl | 1 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 D | ex1-volume-c.jl | 62 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 D | ex_common.py | 59 def get_cartesian_mesh_size(dim, degree, prob_size): argument 71 num_elem = prob_size // (degree ** dim)
|