| /libCEED/ |
| H A D | Doxyfile | 31 # file that follow. The default is UTF-8 which is also the encoding used for all 35 # The default value is: UTF-8. 43 # The default value is: My Project. 80 # The default value is: NO. 87 # directories at level 8 which is the default and also the maximum value. The 90 # Minimum value: 0, maximum value: 8, default value: 8. 99 # The default value is: NO. 114 # The default value is: English. 121 # The default value is: YES. 130 # The default value is: YES. [all …]
|
| H A D | .codecov.yml | 17 default: off 25 default: off
|
| /libCEED/examples/python/ |
| H A D | ex_common.py | 34 parser.add_argument("-c", "--ceed", default="/cpu/self", 35 help="libCEED resource specifier (default: /cpu/self)") 36 parser.add_argument("-d", "--dim", type=int, default=3, 37 help="Problem dimension (1-3) (default: 3)") 38 parser.add_argument("-m", "--mesh-degree", type=int, default=4, 39 help="Mesh polynomial degree (default: 4)") 40 parser.add_argument("-p", "--solution-degree", type=int, default=4, 41 help="Solution polynomial degree (default: 4)") 42 parser.add_argument("-q", "--quadrature-points", type=int, default=6, 43 help="Number of quadrature points (default: 6)") [all …]
|
| /libCEED/examples/nek/ |
| H A D | README.md | 29 By default, the examples are built with MPI. 48 -c|-ceed Ceed backend to be used for the run (optional, default: /cpu/self) 49 -e|-example Example name (optional, default: bp1) 50 -n|-np Specify number of MPI ranks for the run (optional, default: 1) 51 -t|-test Run in test mode (not on by default) 52 -b|-box Box case in boxes sub-directory found along with this script (default: 2x2x2)
|
| H A D | Makefile | 21 ifeq (,$(filter-out undefined default,$(origin CC))) 24 ifeq (,$(filter-out undefined default,$(origin FC)))
|
| H A D | nek-examples.sh | 73 -c|-ceed Ceed backend to be used for the run (optional, default: /cpu/self) 74 -e|-example Example name (optional, default: bp1) 75 -n|-np Specify number of MPI ranks for the run (optional, default: 1) 76 -t|-test Run in test mode (not on by default) 77 -b|-box Box case in boxes sub-directory found along with this script (default: 2x2x2)
|
| /libCEED/examples/nek/boxes/ |
| H A D | b1e.rea | 20 0.00000 p016 PSSOLVER: 0=default 165 C Default 166 C Default 167 C Default 168 C Default 169 C Default 170 C Default 171 C Default
|
| /libCEED/python/ |
| H A D | ceed.py | 215 **memtype: memory type of the offsets array, default CEED_MEM_HOST 216 **cmode: copy mode for the offsets array, default CEED_COPY_VALUES 248 **memtype: memory type of the offsets array, default CEED_MEM_HOST 249 **cmode: copy mode for the offsets array, default CEED_COPY_VALUES 281 **memtype: memory type of the offsets array, default CEED_MEM_HOST 282 **cmode: copy mode for the offsets array, default CEED_COPY_VALUES 332 typically given by the backend. The default reordering is 334 **memtype: memory type of the offsets array, default CEED_MEM_HOST 335 **cmode: copy mode for the offsets array, default CEED_COPY_VALUES 366 typically given by the backend. The default reordering is [all …]
|
| H A D | ceed_vector.py | 79 **memtype: memory type of the array being passed, default CEED_MEM_HOST 80 **cmode: copy mode for the array, default CEED_COPY_VALUES""" 109 **memtype: memory type of the array being passed, default CEED_MEM_HOST 154 **memtype: memory type of the array being passed, default CEED_MEM_HOST 202 **memtype: memory type of the array being passed, default CEED_MEM_HOST 271 **memtype: memory type of the array being passed, default CEED_MEM_HOST 296 **memtype: memory type of the array being passed, default CEED_MEM_HOST 322 **memtype: memory type of the array being passed, default CEED_MEM_HOST
|
| H A D | ceed_qfunctioncontext.py | 69 **memtype: memory type of the array being passed, default CEED_MEM_HOST 70 **cmode: copy mode for the array, default CEED_COPY_VALUES""" 103 **memtype: memory type of the array being passed, default CEED_MEM_HOST 165 **memtype: memory type of the data being passed, default CEED_MEM_HOST
|
| H A D | ceed_operator.py | 59 **request: Ceed request, default CEED_REQUEST_IMMEDIATE""" 72 **request: Ceed request, default CEED_REQUEST_IMMEDIATE""" 88 **request: Ceed request, default CEED_REQUEST_IMMEDIATE""" 104 **request: Ceed request, default CEED_REQUEST_IMMEDIATE""" 131 **request: Ceed request, default CEED_REQUEST_IMMEDIATE""" 147 **request: Ceed request, default CEED_REQUEST_IMMEDIATE"""
|
| H A D | ceed_elemrestriction.py | 55 **tmode: apply restriction or transpose, default CEED_NOTRANSPOSE 56 **request: Ceed request, default CEED_REQUEST_IMMEDIATE""" 82 **createLvec: flag to create local vector, default True 83 **createEvec: flag to create element vector, default True 359 **tmode: apply restriction or transpose, default CEED_NOTRANSPOSE 360 **request: Ceed request, default CEED_REQUEST_IMMEDIATE""" 484 **request: Ceed request, default CEED_REQUEST_IMMEDIATE""" 506 **request: Ceed request, default CEED_REQUEST_IMMEDIATE"""
|
| /libCEED/tests/ |
| H A D | junit.py | 17 default=['/cpu/self'], 25 default=RunMode.JUNIT) 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('-s', '--search', type=str, default='.*', 31 parser.add_argument('-v', '--verbose', action='store_true', default=False,
|
| H A D | junit_common.py | 33 def __init__(self, option_strings, dest, type, default, **kwargs): argument 38 if isinstance(default, self.enum_type): 40 elif isinstance(default, str): 41 default = self.enum_type(default.lower()) 42 elif isinstance(default, Iterable): 43 default = [self.enum_type(v.lower()) for v in default] 47 super().__init__(option_strings, dest, default=default, **kwargs) 385 …List[TestSpec]: List of parsed `TestSpec` objects, or a list containing a single, default `TestSpe…
|
| /libCEED/julia/LibCEED.jl/src/ |
| H A D | LibCEED.jl | 212 set_libceed_path!(:default) 220 `set_libceed_path!(:default)` indicates to LibCEED.jl to use the default library. This usually has 248 elseif sym == :default 255 error("set_libceed_path(::Symbol) must be called with :prebuilt or :default.") 285 # If CeedGetScalarType is not provided by the libCEED shared library, default for Float64
|
| /libCEED/examples/fluids/ |
| H A D | README.md | 36 - Default value 263 The default Riemann solver, HLLC, is sufficient in this regard while the simpler HLL converts therm… 265 … resolve to near the boundary, choose `bc_outflow`. This condition (with default `outflow_type: ri… 311 - Default value 431 - Default value 480 - Default value 519 - Default value 682 - Default value 741 - Default value 795 - Default value [all …]
|
| H A D | vortexshedding.yaml | 19 # Reference state is used for the initial condition, zero velocity by default. 32 # Freestream inherits reference state as default
|
| /libCEED/examples/fluids/src/ |
| H A D | qdata.c | 28 PetscInt field = 0; // Default field has the coordinates in QDataGetNumComponents() 42 default: in QDataGetNumComponents() 51 default: in QDataGetNumComponents() 139 default: in QDataBoundaryGetNumComponents()
|
| /libCEED/benchmarks/ |
| H A D | README.md | 30 bound of the problem sizes, per compute node; the default value is 3*2^20. 32 tests will be run (the lowest degree is 1); the default value is 8.
|
| /libCEED/examples/solids/ |
| H A D | README.md | 45 Note: The default for a clamped face is zero displacement. 92 - Default value 165 This mini-app is configured to use the following Newton-Krylov-Multigrid method by default. 170 The default smoother uses degree 3 Chebyshev with Jacobi preconditioning. 186 - Default value
|
| /libCEED/rust/libceed-sys/ |
| H A D | README.md | 25 * `static` (default): link to static libceed.a 52 This mode of development is more fragile than the default (which uses static libraries).
|
| /libCEED/backends/magma/tuning/ |
| H A D | generate_tuning.py | 84 default=32, 89 default="make") 93 default="/cpu/self")
|
| /libCEED/doc/sphinx/source/ |
| H A D | conf.py | 13 # All configuration values have a default; values that are commented out 14 # serve to show the default. 149 # so a file named "default.css" will overwrite the builtin "default.css".
|
| /libCEED/examples/solids/src/ |
| H A D | cl-options.c | 30 PetscCall(PetscStrncpy(app_ctx->output_dir, ".", 2)); // Default - current directory in ProcessCommandLineOptions() 41 app_ctx->problem_choice = ELAS_LINEAR; // Default - Linear Elasticity in ProcessCommandLineOptions() 50 app_ctx->forcing_choice = FORCE_NONE; // Default - no forcing term in ProcessCommandLineOptions() 155 // Provide default ceed resource if not specified in ProcessCommandLineOptions()
|
| /libCEED/examples/deal.II/ |
| H A D | bps-kokkos.h | 121 class OperatorDealii : public OperatorBase<Number, MemorySpace::Default> 124 using VectorType = typename OperatorBase<Number, MemorySpace::Default>::VectorType; 146 ~OperatorDealii() = default; 291 Kokkos::RangePolicy<MemorySpace::Default::kokkos_space::execution_space>( in compute_inverse_diagonal_internal()
|