| /libCEED/rust/libceed/ |
| H A D | Cargo.toml | 8 version = "0.12.0" 10 rust-version = "1.56" 21 libceed-sys = { version = "0.12", path = "../libceed-sys" } 22 katexit = { version = "0.1.1", optional = true } 25 version-sync = "0.9.2" 32 { file = "README.md", search = "libceed = \"[0-9.]*\"", replace = "libceed = \"{{version}}\"" }, 33 …{ file = "../../README.md", search = "libceed = \"[0-9.]*\"", replace = "libceed = \"{{version}}\"…
|
| /libCEED/ |
| H A D | RELEASING.md | 11 Some minor bookkeeping updates are needed when releasing a new version of the core library. 13 The version number must be updated in 56 Generate the PDF using `make doc-latexpdf`, click "New version" on the [Zenodo record](https://zeno… 58 Make a new PR to update the version number and DOI in `README.rst` and `doc/bib/references.bib`. 73 In this PR, the file `L/libCEED/build_tarballs.jl` should be changed to update version number and c… 82 -version = v"0.7.0" 83 +version = v"0.8.0" 91 After the PR is merged into Yggdrasil, the new version of libCEED_jll will automatically be registe… 97 The version number should be incremented, and the dependency on the updated version of `libCEED_jll… 105 -version = "0.1.0" [all …]
|
| H A D | .gitlab-ci.yml | 27 - echo "-------------- CC ------------------" && $CC --version 28 - echo "-------------- CXX -----------------" && $CXX --version 29 - echo "-------------- FC ------------------" && $FC --version 50 - echo "-------------- clang-tidy ----------" && clang-tidy --version 75 - echo "-------------- CC ------------------" && $CC --version 76 - echo "-------------- CXX -----------------" && $CXX --version 77 - echo "-------------- FC ------------------" && $FC --version 78 - echo "-------------- GCOV ----------------" && gcov --version 156 # - echo "-------------- CC ------------------" && $CC --version 157 # - echo "-------------- CXX -----------------" && $CXX --version [all …]
|
| H A D | setup.py | 26 def version(): function 28 ceed_version = [line.split("Version:", 1)[1].strip() for line in template if 29 line.startswith("Version: ")] 97 version=version(),
|
| H A D | .readthedocs.yml | 5 version: 2 28 # Optionally set the version of Python and requirements required to build your docs
|
| /libCEED/julia/LibCEED.jl/src/ |
| H A D | LibCEED.jl | 163 Incompatible libCEED version. 164 LibCEED.jl requires libCEED version at least $minimum_libceed_version. 165 The version of the libCEED library is $(ceedversion())." 176 Returns a `VersionNumber` corresponding to the version of the libCEED library currently used. 202 ceedversion_ge(version::VersionNumber) 204 Returns true if the libCEED library is at least as current as the specified `version`. Returns 207 ceedversion_ge(version::VersionNumber) = !isrelease() || (ceedversion() >= version) 217 `set_libceed_path!(:prebuilt)` indicates to LibCEED.jl to use the prebuilt version of the libCEED 262 Indicates that the prebuilt version of the libCEED library (bundled with libCEED\\_jll) should be
|
| /libCEED/.github/workflows/ |
| H A D | python-test-with-style.yml | 15 python-version: ['3.x'] 25 python-version: ${{ matrix.python-version }} 50 - name: Python version
|
| H A D | julia-test-with-style.yml | 14 julia-version: ['1'] 29 version: ${{ matrix.julia-version }}
|
| H A D | c-fortran-test-linux-osx.yml | 45 - name: Show compiler version 46 run: $CC --version | head -1
|
| /libCEED/rust/libceed-sys/ |
| H A D | Cargo.toml | 9 version = "0.12.0" 37 version-sync = "0.9.2" 41 …{ file = "README.md", search = "libceed-sys = \"[0-9.]*\"", replace = "libceed-sys = \"{{version}}… 42 …d.rs", search = "atleast_version\\(\"[0-9.]*\"\\)", replace = "atleast_version(\"{{version}}\")" },
|
| /libCEED/backends/sycl/ |
| H A D | online_compiler.sycl.cpp | 113 // function. Those versions had the same API as the first version of ocloc in compileToSPIRV() 120 // The loaded library with version (A.B) is compatible with expected API/ABI in compileToSPIRV() 121 // version (X.Y) used here if A == B and B >= Y. in compileToSPIRV() 127 …throw online_compile_error(std::string("Found incompatible version of ocloc library: (") + std::to… in compileToSPIRV() 188 …std::string Version = std::to_string(OutputFormatVersion.first) + ", " + std::to_string(OutputForm… in compile() local 189 …throw online_compile_error(std::string("The output format version (") + Version + ") is not suppor… in compile() 199 …std::string Version = std::to_string(OutputFormatVersion.first) + ", " + std::to_string(OutputForm… in compile() local 200 …throw online_compile_error(std::string("The output format version (") + Version + ") is not suppor… in compile()
|
| H A D | ocloc_api.h | 20 OCLOC_VERSION_1_0 = OCLOC_MAKE_VERSION(1, 0), ///< version 1.0 21 OCLOC_VERSION_CURRENT = OCLOC_MAKE_VERSION(1, 0), ///< latest known version 101 /// Returns the current version of ocloc.
|
| /libCEED/tests/junit-xml/ |
| H A D | README.rst | 56 <?xml version="1.0" ?> 92 Releasing a new version 95 1. Bump version in `setup.py` 98 4. Verify the new version was uploaded at https://pypi.org/project/junit-xml/#history
|
| /libCEED/julia/LibCEED.jl/docs/src/ |
| H A D | index.md | 18 own version of the libCEED library, and configure LibCEED.jl to use this binary 64 match the `Read` version to get the array with non-`Read` version to restore the 71 version is always paired properly. 111 The macro version can provide better performance if a closure is required, and
|
| H A D | Examples.md | 10 - `ex1-volume.jl`, a higher-level more idiomatic version of `ex1-volume.c`, 12 - `ex2-surface.jl`, a higher-level, idiomatic version of `ex2-surface.c`.
|
| H A D | LibCEED.md | 3 By default, LibCEED.jl uses a "basic version" of the libCEED library that is 14 The version number of the currently loaded libCEED library can also be queried
|
| /libCEED/doc/sphinx/source/ |
| H A D | conf.py | 33 # If your documentation needs a minimal Sphinx version, state it here. 77 # The version info for the project you're documenting, acts as replacement for 78 # |version| and |release|, also used in various other places throughout the 81 # The short X.Y version. 85 if line.startswith("Version:"): 88 version = pkgconf_version variable 89 # The full version, including alpha/beta/rc tags.
|
| /libCEED/examples/rust-qfunctions/ex1-volume-rs/ |
| H A D | Cargo.toml | 3 version = "0.1.0" 17 ndarray = {version = "0.16.1", default-features = false}
|
| /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/rust/ex3-volume-vector/ |
| H A D | Cargo.toml | 3 version = "0.11.0" 10 clap = { version = "4.0.17", features = ["derive"] }
|
| /libCEED/examples/rust/ex3-volume/ |
| H A D | Cargo.toml | 3 version = "0.11.0" 10 clap = { version = "4.0.17", features = ["derive"] }
|
| /libCEED/examples/rust/ex1-volume/ |
| H A D | Cargo.toml | 3 version = "0.11.0" 10 clap = { version = "4.0.17", features = ["derive"] }
|
| /libCEED/examples/rust/ex2-surface/ |
| H A D | Cargo.toml | 3 version = "0.11.0" 10 clap = { version = "4.0.17", features = ["derive"] }
|
| /libCEED/examples/rust/ex1-volume-vector/ |
| H A D | Cargo.toml | 3 version = "0.11.0" 10 clap = { version = "4.0.17", features = ["derive"] }
|
| /libCEED/examples/rust/ex2-surface-vector/ |
| H A D | Cargo.toml | 3 version = "0.11.0" 10 clap = { version = "4.0.17", features = ["derive"] }
|