Home
last modified time | relevance | path

Searched refs:int (Results 1 – 13 of 13) sorted by relevance

/libCEED/benchmarks/
H A Dpostprocess_base.py39 data['num_procs'] = int(
47 data['num_procs_node'] = int(
66 data['num_procs'] = int(line.split(':')[1].strip())
68 data['num_procs_node'] = int(line.split(':')[1].strip())
76 data['degree'] = int(line.split(':')[1]) - 1
79 data['quadrature_pts'] = int(line.split(':')[1])
82 data['num_unknowns'] = int(line.split(':')[1])
86 data['num_unknowns'] = int(line.split(':')[1])
89 data['num_elem'] = int(
92 data['dof_per_node'] = int(line.split(':')[1])
[all …]
/libCEED/examples/python/
H A Dex_common.py36 parser.add_argument("-d", "--dim", type=int, default=3,
38 parser.add_argument("-m", "--mesh-degree", type=int, default=4,
40 parser.add_argument("-p", "--solution-degree", type=int, default=4,
42 parser.add_argument("-q", "--quadrature-points", type=int, default=6,
44 parser.add_argument("-s", "--problem-size", type=int, default=-1,
/libCEED/tests/
H A Djunit.py26 parser.add_argument('-n', '--nproc', type=int, default=1, help='number of MPI processes')
28 …parser.add_argument('-np', '--pool-size', type=int, default=1, help='Number of test cases to run i…
101 def check_pre_skip(self, test: str, spec: TestSpec, resource: str, nproc: int) -> Optional[str]: argument
H A Djunit_common.py181 def check_pre_skip(self, test: str, spec: TestSpec, resource: str, nproc: int) -> Optional[str]: argument
276 def find_matching(line: str, open: str = '(', close: str = ')') -> Tuple[int, int]:
295 start: int = line.find(open)
298 count: int = 1
430 uncommented_lines: List[int] = []
524 backend: str, test: str, index: int, verbose: bool) -> str: argument
585 def run_test(index: int, test: str, spec: TestSpec, backend: str, argument
586 mode: RunMode, nproc: int, suite_spec: SuiteSpec, verbose: bool = False) -> TestCase: argument
768 def run_tests(test: str, ceed_backends: List[str], mode: RunMode, nproc: int, argument
769 …suite_spec: SuiteSpec, pool_size: int = 1, search: str = ".*", verbose: bool = False) -> TestSuite: argument
/libCEED/examples/solids/
H A DREADME.md37 * - `-degree [int]`
43 * - `-bc_clamp [int list]`
47 * - `-bc_traction [int list]`
70 …he user may use a DMPlex box mesh by specifying {code}`-dm_plex_box_faces [int list]`, {code}`-dm_…
215 * - Body force (gravity) on volume, $\int \rho \bm g$
219 …}`-units_meter 100` to measure displacement in centimeters), but $E$ and $\int \rho \bm g$ have th…
/libCEED/python/
H A Dceed_vector.py143 'data': (int(ffi.cast("intptr_t", array_pointer[0])), False),
190 'data': (int(ffi.cast("intptr_t", array_pointer[0])), False),
236 'data': (int(ffi.cast("intptr_t", array_pointer[0])), False),
H A Dceed_qfunctioncontext.py141 'data': (int(ffi.cast("intptr_t", data_pointer[0])), False),
/libCEED/
H A D.mailmap40 Valeria Barra <valeriabarra21@gmail.com> <vaba3353@shas0136.rc.int.colorado.edu>
41 Valeria Barra <valeriabarra21@gmail.com> <vaba3353@shas0137.rc.int.colorado.edu>
/libCEED/tests/junit-xml/junit_xml/
H A D__init__.py128 …test_suite_attributes["assertions"] = str(sum([int(c.assertions) for c in self.test_cases if c.ass…
288 attributes = defaultdict(int)
292 attributes[key] += int(ts_xml.get(key, 0))
/libCEED/backends/magma/tuning/
H A Dgenerate_tuning.py85 type=int)
/libCEED/python/tests/
H A Dtest-2-elemrestriction.py106 block = int(k / blk_size)
154 block = int(k / blk_size)
/libCEED/julia/LibCEED.jl/src/generated/
H A Dlibceed_bindings.jl160 # typedef int ( * CeedErrorHandler ) ( Ceed , const char * , int , const char * , int , const char …
519 # typedef int ( * CeedQFunctionUser ) ( void * ctx , const CeedInt Q , const CeedScalar * const * i…
590 # typedef int ( * CeedQFunctionContextDataDestroyUser ) ( void * data )
/libCEED/doc/sphinx/source/
H A DlibCEEDdev.md229 3. Nearly all functions should have a return type of `int` and return a `CeedErrorType` to allow fo…
257 int CeedInit(const char *resource, Ceed *ceed) {