Home
last modified time | relevance | path

Searched full:type (Results 1 – 25 of 36) sorted by relevance

12

/honee/tests/
H A Djunit.py15 type=str,
22 type=RunMode,
26 parser.add_argument('-n', '--nproc', type=int, default=1, help='number of MPI processes')
27 …parser.add_argument('-b', '--junit-batch', type=str, default='', help='Name of JUnit batch for out…
28 …parser.add_argument('-np', '--pool-size', type=int, default=1, help='Number of test cases to run i…
29 …parser.add_argument('--smartredis-dir', type=str, default='', help='path to SmartSim library, if p…
30 parser.add_argument('--has-torch', type=bool, default=False, help='Whether to build with torch')
31 parser.add_argument('-s', '--search', type=str, default='.*',
125 if 'No SYCL devices of the requested type are available' in stderr:
126 return f'SYCL device type not available'
H A Dblasius_test.yaml6 type: 'beuler'
12 type: platemesh
H A Dblasius_stgtest.yaml6 type: 'beuler'
12 type: platemesh
H A Dchannel_divdiff_verify.yaml5 # type: 'beuler'
12 type: 'rk'
H A Dstats_test.yaml6 type: 'beuler'
12 type: platemesh
H A Djunit_common.py31 """Action to convert input values to lower case prior to converting to an Enum type"""
33 def __init__(self, option_strings, dest, type, default, **kwargs): argument
34 if not issubclass(type, Enum):
35 raise ValueError(f"{type} must be an Enum")
36 # store provided enum type
37 self.enum_type = type
45 raise argparse.ArgumentTypeError("Invalid value type, must be str or iterable")
46 # prevent automatic type conversion
57 raise argparse.ArgumentTypeError("Invalid value type, must be str or iterable")
351 known[key] = test_fields[index].type(value) # type: ignore
[all …]
H A Dgaussianwave_cgns_load.yaml22 type: alpha
/honee/tests/junit-xml/junit_xml/
H A D__init__.py31 <failure message="Assertion FAILED: failed assert" type="failure">
36 <error message="Assertion ERROR: error assert" type="error">
41 <skipped message="SKIPPED Test" type="skipped">
202 attrs = {"type": "failure"}
205 if failure["type"]:
206 attrs["type"] = decode(failure["type"], encoding)
215 attrs = {"type": "error"}
218 if error["type"]:
219 attrs["type"] = decode(error["type"], encoding)
227 attrs = {"type": "skipped"}
[all …]
/honee/examples/
H A Dflatplate_STG.yaml5 type: 'alpha'
18 type: lgmres
32 type: platemesh
H A Dblasius.yaml6 type: 'beuler'
17 type: platemesh
26 # type: platemesh
H A Dadvection_wave.yaml10 type: square
17 type: rk
H A Dadvection.yaml16 type: bcgs
27 type: alpha
H A Dchannel.yaml7 type: 'beuler'
H A Dadvection_bl.yaml13 type: alpha
H A Dtaylor_green_vortex.yaml36 type: rk
H A Dgaussianwave.yaml26 type: alpha
H A Dvortexshedding.yaml11 type: alpha
H A DstdoutParsing.py56 # Convert string values to numeric type
H A Dconv_plot.py30 type=str,
/honee/include/
H A Dmat-ceed.h34 PETSC_CEED_EXTERN PetscErrorCode MatCeedSetCOOMatType(Mat mat, MatType type);
35 PETSC_CEED_EXTERN PetscErrorCode MatCeedGetCOOMatType(Mat mat, MatType *type);
H A Dnavierstokes.h41 // Test mode type
51 // Subgrid-Stress mode type
58 // Subgrid-Stress mode type
95 // Problem type arguments
/honee/src/
H A Dmat-ceed.c337 // Check for specific CL coo mat type for this Mat in MatSetFromOptions_Ceed()
509 // -- Set internal mat type in MatCreateCeed()
533 @brief Copy `MATCEED` into a compatible `Mat` with type `MatShell` or `MATCEED`.
546 // Check type compatibility in MatCeedCopy()
553 PetscCheck(is_matceed, PETSC_COMM_SELF, PETSC_ERR_LIB, "mat_ceed must have type " MATCEED); in MatCeedCopy()
557 …PetscCheck(is_matceed || is_matshell, PETSC_COMM_SELF, PETSC_ERR_LIB, "mat_other must have type " … in MatCeedCopy()
1100 @brief Sets the default COO matrix type as a string from the `MATCEED`.
1105 @param[in] type COO `MatType` to set
1109 PetscErrorCode MatCeedSetCOOMatType(Mat mat, MatType type) { in MatCeedSetCOOMatType() argument
1120 PetscCall(PetscStrlen(type, &len_new)); in MatCeedSetCOOMatType()
[all …]
H A Dhonee-file.c35 // @brief Read in binary int based on it's data type
195 …PetscCheck(is_binary_viewer, comm, PETSC_ERR_ARG_WRONGSTATE, "Viewer must be binary type; instead … in HoneeWriteBinaryVec()
197 …e == FILE_MODE_WRITE, comm, PETSC_ERR_ARG_WRONGSTATE, "Viewer must be binary type; instead got %s", in HoneeWriteBinaryVec()
H A Dcloptions.c106 …PetscCall(PetscOptionsEnum("-test_type", "Type of test to run", NULL, TestTypes, (PetscEnum)app_ct… in ProcessCommandLineOptions()
159 …PetscCall(PetscOptionsFList("-amat_type", "Set the type of Amat distinct from Pmat (-dm_mat_type)"… in ProcessCommandLineOptions()
190 …PetscCall(PetscOptionsEnum("-sgs_model_type", "Subgrid Stress Model type", NULL, SGSModelTypes, (P… in ProcessCommandLineOptions()
/honee/problems/
H A Dadvection.c37 " Wind Type : %s\n", in PRINT_ADVECTION()
53 …PetscCall(PetscPrintf(comm, " Initial Condition Type : %s\n", AdvDifICTypes[setup_c… in PRINT_ADVECTION()
64 …PetscCall(PetscPrintf(comm, " Wave Type : %s\n", AdvDifWaveTypes[setup… in PRINT_ADVECTION()
427 …PetscCall(PetscOptionsEnum("-wind_type", "Wind type in Advection", NULL, AdvDifWindTypes, (PetscEn… in NS_ADVECTION()
452 …PetscCall(PetscOptionsEnum("-advection_ic_wave_type", "Type of wave", NULL, AdvDifWaveTypes, (Pets… in NS_ADVECTION()

12