Home
last modified time | relevance | path

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

/libCEED/examples/python/
H A Dex_test.py25 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 Dex3_volume.py44problem_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 Dex1_volume.py44problem_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 Dex2_surface.py45problem_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 Dlib.rs14 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 Dmain.rs56 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 Dmain.rs57 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 Dmain.rs55 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 Dmain.rs57 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 Dmain.rs56 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 Dmain.rs58 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()