| /libCEED/examples/python/ |
| H A D | ex_test.py | 25 problem_size=-1, 42 problem_size=-1, 59 problem_size=-1, 76 problem_size=-1, 93 problem_size=-1, 110 problem_size=-1, 126 problem_size=-1, 143 problem_size=-1, 160 problem_size=-1, 177 problem_size=-1, [all …]
|
| H A D | ex3_volume.py | 44 …problem_size = args.problem_size if args.problem_size > 0 else (8 * 16 if args.test else 256 * 102… 77 num_xyz = common.get_cartesian_mesh_size(dim, sol_degree, problem_size)
|
| H A D | ex1_volume.py | 44 …problem_size = args.problem_size if args.problem_size > 0 else (8 * 16 if args.test else 256 * 102… 72 num_xyz = common.get_cartesian_mesh_size(dim, sol_degree, problem_size)
|
| H A D | ex2_surface.py | 45 …problem_size = args.problem_size if args.problem_size > 0 else (500 * dim * dim if args.test else … 73 num_xyz = common.get_cartesian_mesh_size(dim, sol_degree, problem_size)
|
| /libCEED/examples/rust/mesh/src/ |
| H A D | lib.rs | 14 pub fn cartesian_mesh_size(dim: usize, solution_degree: usize, problem_size: i64) -> [usize; 3] { in cartesian_mesh_size() 17 let mut num_elem = problem_size / solution_degree.pow(dim as u32) as i64;
|
| /libCEED/examples/rust/ex1-volume/src/ |
| H A D | main.rs | 56 let problem_size: i64 = if problem_size_requested < 0 { in example_1() localVariable 74 println!(" Approx. # unknowns [-s] : {}", problem_size); in example_1() 101 let num_xyz = mesh::cartesian_mesh_size(dim, solution_degree, problem_size); in example_1()
|
| /libCEED/examples/rust/ex1-volume-vector/src/ |
| H A D | main.rs | 57 let problem_size: i64 = if problem_size_requested < 0 { in example_1_vector() localVariable 76 println!(" Approx. # unknowns [-s] : {}", problem_size); in example_1_vector() 103 let num_xyz = mesh::cartesian_mesh_size(dim, solution_degree, problem_size); in example_1_vector()
|
| /libCEED/examples/rust/ex3-volume/src/ |
| H A D | main.rs | 55 let problem_size: i64 = if problem_size_requested < 0 { in example_3() localVariable 73 println!(" Approx. # unknowns [-s] : {}", problem_size); in example_3() 97 let num_xyz = mesh::cartesian_mesh_size(dim, solution_degree, problem_size); in example_3()
|
| /libCEED/examples/rust/ex2-surface/src/ |
| H A D | main.rs | 57 let problem_size: i64 = if problem_size_requested < 0 { in example_2() localVariable 75 println!(" Approx. # unknowns [-s] : {}", problem_size); in example_2() 102 let num_xyz = mesh::cartesian_mesh_size(dim, solution_degree, problem_size); in example_2()
|
| /libCEED/examples/rust/ex3-volume-vector/src/ |
| H A D | main.rs | 56 let problem_size: i64 = if problem_size_requested < 0 { in example_3_vector() localVariable 75 println!(" Approx. # unknowns [-s] : {}", problem_size); in example_3_vector() 99 let num_xyz = mesh::cartesian_mesh_size(dim, solution_degree, problem_size); in example_3_vector()
|
| /libCEED/examples/rust/ex2-surface-vector/src/ |
| H A D | main.rs | 58 let problem_size: i64 = if problem_size_requested < 0 { in example_2_vector() localVariable 77 println!(" Approx. # unknowns [-s] : {}", problem_size); in example_2_vector() 104 let num_xyz = mesh::cartesian_mesh_size(dim, solution_degree, problem_size); in example_2_vector()
|