Home
last modified time | relevance | path

Searched full:tests (Results 1 – 25 of 49) sorted by relevance

12

/libCEED/tests/
H A DREADME.md1 # libCEED: Tests
3 This page provides a brief description of the tests for the libCEED library.
5 The tests are organized by API object, and some tests are further organized, as required.
7 0. Ceed Tests
8 1. CeedVector Tests\
9     0. CeedVector general tests\
10     1. CeedVector error tests
11 2. CeedElemRestriction Tests
12 3. CeedBasis Tests\
13     0. CeedBasis utility tests\
[all …]
H A Djunit.py18 help='libCEED backend to use with convergence tests')
30 help='Search string to filter tests, using `re` package format')
38 # Necessary functions for running tests
73 return (Path('tests') / test).with_suffix('.f90')
75 return (Path('tests') / test).with_suffix('.c')
99 return Path('tests') / 'output' / output_file
H A Dt406-qfunction.h20 #include "../tests/t406-qfunction-helper.h"
22 #include "output/../../tests/t406-qfunction-helper.h"
/libCEED/examples/fluids/
H A Dnavierstokes.c21Tests",only="cpu") -ceed {ceed_resource} -test_type solver -options_file examples/fluids/gaussianw…
22 …pare_final_state_atol 2e-11 -compare_final_state_filename examples/fluids/tests-output/fluids-navi…
23 …mpare_final_state_atol 1e-8 -compare_final_state_filename examples/fluids/tests-output/fluids-navi…
24 …pare_final_state_atol 1e-10 -compare_final_state_filename examples/fluids/tests-output/fluids-navi…
25 …pare_final_state_atol 7e-10 -compare_final_state_filename examples/fluids/tests-output/fluids-navi…
26 …pare_final_state_atol 2E-11 -compare_final_state_filename examples/fluids/tests-output/fluids-navi…
27 …pare_final_state_atol 1e-10 -compare_final_state_filename examples/fluids/tests-output/fluids-navi…
28 …mpare_final_state_atol 1e-8 -compare_final_state_filename examples/fluids/tests-output/fluids-navi…
29 …pare_final_state_atol 1e-12 -compare_final_state_filename examples/fluids/tests-output/fluids-navi…
30 …le examples/fluids/tests-output/blasius_test.yaml -compare_final_state_atol 5e-10 -compare_final_s…
[all …]
H A Dconv_test.sh60 count=$(diff conv_test_result.csv tests-output/fluids-navierstokes-conv-euler.csv | grep "^>" | wc …
63 diff -q conv_test_result.csv tests-output/fluids-navierstokes-conv-euler.csv
/libCEED/
H A DRELEASING.md129 ### Moving development tests to release tests
131 LibCEED.jl has both _development_ and _release_ unit tests.
132 The _release_ tests are run both with the current build of libCEED, and with the most recent releas…
133 The _development_ tests may use features which were not available in the most recent release, and s…
135 Upon release, the development tests may be moved to the release tests, so that these features will …
136 The release tests are found in the file `julia/LibCEED.jl/test/runtests.jl` and the development tes…
142 1. CI builds and tests wheels when a pull request has the `release preparation` label. One can also…
143 2. CI publishes wheels on `v**` tags, assuming tests pass.
H A D.gitlab-ci.yml43 # -- libCEED only tests
44 - echo "-------------- core tests ----------"
46 # Note: PETSC_DIR is set by default in GitLab runner env, unsetting to isolate core tests
93 # -- libCEED only tests
94 - echo "-------------- core tests ----------"
96 # Note: PETSC_DIR is set by default in GitLab runner env, unsetting to isolate core tests
128 … bash <(curl -s https://codecov.io/bash) -f coverage.info -t ${CODECOV_ACCESS_TOKEN} -F tests;
143 # SYCL tests currently disabled
202 # -- libCEED only tests
203 - echo "-------------- Rust QFunction tests -----"
[all …]
H A D.codecov.yml43 tests:
45 - tests/
H A DMakefile331 # Tests
332 tests.c := $(sort $(wildcard tests/t[0-9][0-9][0-9]-*.c))
333 tests.f := $(if $(FC),$(sort $(wildcard tests/t[0-9][0-9][0-9]-*.f90)))
334 tests := $(tests.c:tests/%.c=$(OBJDIR)/%$(EXE_SUFFIX)) macro
335 ctests := $(tests)
336 tests += $(tests.f:tests/%.f90=$(OBJDIR)/%$(EXE_SUFFIX))
637 …$(examples) $(tests) : CEED_LDFLAGS += $(EM_LDFLAGS) $(_pkg_ldflags) $(if $(STATIC),,$(_pkg_ldflag…
638 $(examples) $(tests) : CEED_LDLIBS += $(_pkg_ldlibs)
645 $(examples) $(tests) : CEED_LDLIBS += $(LIBCXX)
686 $(OBJDIR)/%$(EXE_SUFFIX) : tests/%.c | $$(@D)/.DIR
[all …]
H A DCONTRIBUTING.md8 Check that tests (including "examples") pass using `make prove-all`.
11 …typical development, every commit should compile, be covered by the test suite, and pass all tests.
/libCEED/python/tests/
H A DREADME.md1 # libCEED Python Tests
3 These files provide libCEED for Python tests. Full examples of finite element
8 To run the tests, first build the user QFunctions file by running
/libCEED/doc/sphinx/source/
H A DlibCEEDapi.md219 … action of a simple 1D mass matrix (cf. [tests/t500-operator.c](https://github.com/CEED/libCEED/bl…
221 ```{literalinclude} ../../../tests/t500-operator.c
237 ```{literalinclude} ../../../tests/t500-operator.c
250 ```{literalinclude} ../../../tests/t500-operator.c
292 ```{literalinclude} ../../../tests/t500-operator.c
304 ```{literalinclude} ../../../tests/t500-operator.c
310 ```{literalinclude} ../../../tests/t500-operator.c
334 ```{literalinclude} ../../../tests/t500-operator.c
340 ```{literalinclude} ../../../tests/t500-operator.c
346 ```{literalinclude} ../../../tests/t500-operator.c
[all …]
H A Dprecision.md14 Tests can be run using `make test FC=` because the Fortran tests do not support single precision at…
18 …used for compile-time checking of {code}`CeedScalar`'s type; see, e.g., {code}`tests/t314-basis.c`.
H A DlibCEEDdev.md20 Once the user facing API and the default implementation are in place and verified correct via tests
91 …ully forming these vectors) so long as the backend passes the `t5**` series tests and all examples.
103 …If possible, backends should use {c:func}`CeedElemRestrictionSetELayout()` to use the `t2**` tests.
105 …strided E-vector layout; however, the `t2**` tests will not function correctly in this case and th…
260 10. External functions, i.e. those used in tests or examples, must have their *declarations* prefix…
H A DCONTRIBUTING.md8 Check that tests (including "examples") pass using `make prove-all`.
11 …typical development, every commit should compile, be covered by the test suite, and pass all tests.
/libCEED/examples/solids/
H A DMakefile74 tests-output/NH-strain.csv: args = -problem FSInitial-NH1 -E 2.8 -nu 0.4
75 tests-output/MR-strain.csv: args = -problem FSInitial-MR1 -mu_1 1 -mu_2 0.0 -nu .4
76 tests-output/MR-strain1.csv: args = -problem FSInitial-MR1 -mu_1 .5 -mu_2 0.5 -nu .4
78 tests-output/%.csv: elasticity
/libCEED/tests/junit-xml/
H A DREADME.rst58 <testsuite errors="0" failures="0" name="my test suite" tests="1">
78 See the docs and unit tests for more examples.
83 Running the tests
/libCEED/rust/libceed-sys/c-src/
H A DMakefile331 # Tests
332 tests.c := $(sort $(wildcard tests/t[0-9][0-9][0-9]-*.c))
333 tests.f := $(if $(FC),$(sort $(wildcard tests/t[0-9][0-9][0-9]-*.f90)))
334 tests := $(tests.c:tests/%.c=$(OBJDIR)/%$(EXE_SUFFIX)) macro
335 ctests := $(tests)
336 tests += $(tests.f:tests/%.f90=$(OBJDIR)/%$(EXE_SUFFIX))
637 …$(examples) $(tests) : CEED_LDFLAGS += $(EM_LDFLAGS) $(_pkg_ldflags) $(if $(STATIC),,$(_pkg_ldflag…
638 $(examples) $(tests) : CEED_LDLIBS += $(_pkg_ldlibs)
645 $(examples) $(tests) : CEED_LDLIBS += $(LIBCXX)
686 $(OBJDIR)/%$(EXE_SUFFIX) : tests/%.c | $$(@D)/.DIR
[all …]
/libCEED/benchmarks/
H A Dbenchmark.sh64 -r|--run <name> run the tests in the script <name>
65 -n|--num-proc \"list\" total number of MPI tasks to use in the tests
66 -p|--proc-node \"list\" number of MPI tasks per node to use in the tests
67 -d|--dry-run show (but do not run) the commands for the tests
128 echo "Running the tests using a total of $num_proc_run MPI tasks ..." | tee -a $output_file
239 ### Run the tests (building and running $test_file)
H A DREADME.md27 When running the tests `petsc-bpsraw.sh`, the following
32 tests will be run (the lowest degree is 1); the default value is 8.
/libCEED/examples/deal.II/
H A D.clang-format135 # make sure that "../tests.h" appears before all other local include files
136 # such that replacing Assert in tests also applies to the testing header files.
137 - Regex: "\\.\\./tests\\.h"
/libCEED/python/
H A Dtest-wheel.sh8 pushd ${ceed_dir}/python/tests
/libCEED/examples/fluids/tests-output/
H A Dstats_test.yaml44 continue_filename: ./examples/fluids/tests-output/fluids-navierstokes-turb-spanstats-IC.bin
/libCEED/tests/junit-xml/junit_xml/
H A D__init__.py23 <testsuites errors="1" failures="1" tests="4" time="45">
25 package="testdb" tests="4" timestamp="2012-11-15T01:02:29">
134 test_suite_attributes["tests"] = str(len(self.test_cases))
291 for key in ["disabled", "errors", "failures", "tests"]:
/libCEED/julia/LibCEED.jl/test/
H A Drundevtests.jl11 @testset "LibCEED Development Tests" begin

12