| /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)
|
| /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 | Makefile | 62 ifeq (,$(filter-out undefined default,$(origin CC))) 65 ifeq (,$(filter-out undefined default,$(origin CXX))) 68 ifeq (,$(filter-out undefined default,$(origin FC))) 71 ifeq (,$(filter-out undefined default,$(origin LINK))) 74 ifeq (,$(filter-out undefined default,$(origin AR))) 77 ifeq (,$(filter-out undefined default,$(origin ARFLAGS))) 289 … interface/ceed-hip.c interface/ceed-jit-source-root-$(if $(for_install),default,install).c, $(wil… 862 $(OBJDIR)/interface/ceed-jit-source-root-default.o : CPPFLAGS += -DCEED_JIT_SOURCE_ROOT_DEFAULT="\"…
|
| /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)))
|
| /libCEED/examples/python/ |
| H A D | ex_common.py | 34 parser.add_argument("-c", "--ceed", default="/cpu/self", 36 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,
|
| H A D | conftest.py | 16 parser.addoption("--ceed", action="store", default='/cpu/self/ref/blocked')
|
| H A D | tutorial-0-ceed.ipynb | 45 …"Here we illustrate the simple declaration of a `Ceed`, with default resource (which is `/cpu/self…
|
| /libCEED/backends/magma/tuning/ |
| H A D | generate_tuning.py | 84 default=32, 89 default="make") 93 default="/cpu/self")
|
| /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
|
| H A D | Operator.jl | 97 For non-blocking application, the user can specify a request object. By default, immediate 115 For non-blocking application, the user can specify a request object. By default, immediate
|
| /libCEED/python/tests/ |
| H A D | conftest.py | 16 parser.addoption("--ceed", action="store", default='/cpu/self/ref/blocked')
|
| /libCEED/examples/rust-qfunctions/ex1-volume-rs/ |
| H A D | Cargo.toml | 17 ndarray = {version = "0.16.1", default-features = false}
|
| /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/rust/libceed-sys/ |
| H A D | Cargo.toml | 28 default = ["static"]
|
| H A D | build.rs | 59 let bindings = bindgen::Builder::default() in main()
|
| 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/julia/LibCEED.jl/docs/src/ |
| H A D | LibCEED.md | 3 By default, LibCEED.jl uses a "basic version" of the libCEED library that is
|
| /libCEED/rust/libceed-sys/c-src/ |
| H A D | Makefile | 62 ifeq (,$(filter-out undefined default,$(origin CC))) 65 ifeq (,$(filter-out undefined default,$(origin CXX))) 68 ifeq (,$(filter-out undefined default,$(origin FC))) 71 ifeq (,$(filter-out undefined default,$(origin LINK))) 74 ifeq (,$(filter-out undefined default,$(origin AR))) 77 ifeq (,$(filter-out undefined default,$(origin ARFLAGS))) 289 … interface/ceed-hip.c interface/ceed-jit-source-root-$(if $(for_install),default,install).c, $(wil… 862 $(OBJDIR)/interface/ceed-jit-source-root-default.o : CPPFLAGS += -DCEED_JIT_SOURCE_ROOT_DEFAULT="\"…
|
| /libCEED/julia/LibCEED.jl/ |
| H A D | README.md | 18 By default, LibCEED.jl will use the pre-built libCEED binaries provided by the [libCEED_jll](https:…
|
| /libCEED/examples/solids/ |
| H A D | README.md | 45 Note: The default for a clamped face is zero displacement. 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.
|
| /libCEED/doc/sphinx/source/ |
| H A D | precision.md | 4 The default is to use double precision.
|
| /libCEED/tests/junit-xml/ |
| H A D | README.rst | 49 # pretty printing is on by default but can be disabled using prettyprint=False
|
| /libCEED/examples/nek/boxes/ |
| H A D | b1e.rea | 20 0.00000 p016 PSSOLVER: 0=default
|