| /libCEED/examples/nek/ |
| H A D | nek-examples.sh | 82 Build examples with: 138 # Build examples 142 if [[ ! -d build ]]; then 143 mkdir build 147 if [[ ! -f build/makenek ]]; then 148 cp $NEK5K_DIR/bin/makenek build/ 152 cp bps/bps.* build/ 155 if [[ ! -f build/SIZE ]]; then 156 cp SIZE.in build/SIZE 159 # Change to build directory [all …]
|
| H A D | README.md | 22 You can build the Nek5000 libCEED examples with the command `make bps`. 24 You can also build the Nek5000 libCEED examples by invoking `nek-examples.sh` script. 30 To build the examples without MPI, set the environment variable `MPI=0`. 33 Due to the Nek5000 build process, multiple examples cannot be built in parallel. 34 At present, there is only one Nek5000 example file to build, which handles both CEED BP 1 and CEED …
|
| /libCEED/doc/ |
| H A D | README.md | 5 ## Quick build 7 …thon and Doxygen installed, these two commands should build the documentation in `doc/sphinx/build… 20 The Sphinx API documentation depends on Doxygen's XML output (via the `breathe` plugin). Build the… 32 which will HTML docs in the [doc/sphinx/build](./sphinx/build) directory. Use 38 to build PDF using the LaTeX toolchain (which must be installed).
|
| /libCEED/rust/libceed-sys/ |
| H A D | Cargo.toml | 7 build = "build.rs" 21 "build.rs", 32 [build-dependencies] 42 …{ file = "build.rs", search = "atleast_version\\(\"[0-9.]*\"\\)", replace = "atleast_version(\"{{v…
|
| H A D | README.md | 30 To develop libCEED, use `cargo build` in the `rust/libceed-sys` directory to install a local copy a… 33 If that file exists during `cargo build` then edits will prompt recompilation of the bindings. 48 export LD_LIBRARY_PATH=$CEED_DIR/target/debug/build/libceed-sys-d1ea22c6e1ad3f23/out/lib 51 where the precise hash value is printed during `cargo build --verbose` or you can find it with `fin…
|
| H A D | build.rs | 22 out_dir.join("build").to_string_lossy() in main() 26 out_dir.join("build").join("lib").to_string_lossy() in main() 28 .arg("FC=") // Don't try to find Fortran (unused library build/install) in main() 57 // to bindgen, and lets you build up options for in main()
|
| /libCEED/.github/workflows/ |
| H A D | python-wheels.yml | 3 # Build on every branch push, tag push, and pull request change: 15 name: Build wheels on ${{ matrix.os }} 30 - name: Build wheels 38 name: Build source distribution 48 - name: Build sdist 49 run: pipx run build --sdist
|
| H A D | julia-documentation.yml | 11 build: 19 …-project=docs/ -e 'using Pkg; Pkg.develop(PackageSpec(path=pwd())); Pkg.instantiate(); Pkg.build()' 20 - name: Build and deploy
|
| /libCEED/ |
| H A D | .readthedocs.yml | 7 build: 19 # Build documentation in the docs/ directory with Sphinx 24 # Optionally build your docs in additional formats such as PDF and ePub 28 # Optionally set the version of Python and requirements required to build your docs
|
| H A D | pyproject.toml | 1 [build-system] 3 build-backend = "setuptools.build_meta" 9 build-verbosity = "1"
|
| H A D | RELEASING.md | 25 Use `make doc-latexpdf` to build a PDF users manual and inspect it for missing references or format… 72 …t against [Yggdrasil](https://github.com/JuliaPackaging/Yggdrasil), the Julia community build tree. 73 …update version number and change the hash of the libCEED commit to use to build the binaries, simi… 85 # Collection of sources required to complete build 132 The _release_ tests are run both with the current build of libCEED, and with the most recent releas… 133 …t available in the most recent release, and so they are only run with the current build of libCEED. 142 …` label. One can also use `cibuildwheel --only cp310-manylinux_x86_64` to build and test wheels lo… 179 2. `cargo release` to build crates locally (handling dependencies between creates in the workspace)
|
| H A D | .gitignore | 1 # Build Dir 2 build/* 50 doc/sphinx/build/
|
| H A D | .codecov.yml | 5 - "build/backends/::backends/" 6 - "build/gallery/::gallery/"
|
| /libCEED/python/tests/ |
| H A D | README.md | 8 To run the tests, first build the user QFunctions file by running 10 python setup-qfunctions.py build 18 To build user defined QFunctions, modify `libceed-qfunctions.c` to include 20 `python setup-qfunctions.py build`. The files `test-4-qfunction.py` and
|
| H A D | Makefile | 11 rm -rf build __pycache__ .pytest_cache *.so 14 $(PYTHON) setup-qfunctions.py build
|
| /libCEED/backends/magma/tuning/ |
| H A D | README.md | 18 python generate_tuning.py -arch a100 -max-nb 32 -build-cmd "make" -ceed "/gpu/cuda/magma" 21 The `-build-cmd` parameter specifies the command which should be used to compile 22 the libCEED library. For example, this may be a build script which calls `make` 24 call to `make configure` has configured the build. Finally, the `-ceed`
|
| /libCEED/examples/petsc/ |
| H A D | README.md | 9 To build, run `make bpsraw` 21 To build, run `make bps` 46 To build, run `make multigrid` 70 To build, run `make area`
|
| /libCEED/julia/LibCEED.jl/ |
| H A D | .gitignore | 3 deps/build.log 5 docs/build
|
| /libCEED/interface/ |
| H A D | ceed-config.c | 17 @brief Get output of `git describe --dirty` from build time. 73 @brief Get build variables as a multi-line string. 77 @param[out] build_config A static string containing build variables
|
| /libCEED/tests/ |
| H A D | t010-config.c | 2 /// Test git version and build configuration 3 /// \test Test git version and build configuration
|
| /libCEED/examples/python/ |
| H A D | Makefile | 11 rm -rf build __pycache__ .pytest_cache *.so 14 $(PYTHON) setup_qfunctions.py build
|
| /libCEED/examples/deal.II/ |
| H A D | README.md | 9 mkdir build 10 cd build
|
| /libCEED/backends/xsmm/ |
| H A D | ceed-xsmm-tensor.c | 20 // Build or query the required kernel in CeedTensorContractApply_Xsmm() 32 …el, CeedTensorContractReturnCeed(contract), CEED_ERROR_BACKEND, "LIBXSMM kernel failed to build."); in CeedTensorContractApply_Xsmm() 40 // Build or query the required kernel in CeedTensorContractApply_Xsmm() 52 …el, CeedTensorContractReturnCeed(contract), CEED_ERROR_BACKEND, "LIBXSMM kernel failed to build."); in CeedTensorContractApply_Xsmm()
|
| /libCEED/doc/sphinx/ |
| H A D | Makefile | 6 SPHINXBUILD = sphinx-build 9 BUILDDIR = build
|
| /libCEED/examples/rust-qfunctions/ |
| H A D | Makefile | 27 # Special build rule for example 1 (rust) 29 …cargo +nightly build --release --manifest-path ex1-volume-rs/Cargo.toml --config ex1-volume-rs/.ca…
|