Home
last modified time | relevance | path

Searched full:release (Results 1 – 25 of 31) sorted by relevance

12

/libCEED/
H A DRELEASING.md1 # Release Procedures
5 In preparing a release, create a branch to hold pre-release commits.
6 We ideally want all release mechanics (for all languages) to be in one commit, which will then be t…
20 Additionally, the release notes in `doc/sphinx/source/releasenotes.md` should be updated.
21 …of the pull requests that have been merged and thus might warrant emphasizing in the release notes.
23 The "Current Main" heading needs to be named for the release.
30 1. If making a minor release, check for API and ABI changes that could break [semantic versioning](…
34 …not prevent release, it's polite to make a PR to support the new release, and it's good for qualit…
39 The Spack `libceed/package.py` file should be updated immediately after tagging a release.
46 2. `git push` updates the PR holding release; opportunity for others to review
[all …]
H A DCONTRIBUTING.md5 …e branch ('stable' for backward-compatible bug fixes for the last stable release, main' for new fe…
/libCEED/.github/workflows/
H A Dpython-wheels.yml5 # Alternatively, to publish when a (published) GitHub Release is created, use the following:
9 # release:
18 contains(github.event.pull_request.labels.*.name, 'release preparation')) ||
41 contains(github.event.pull_request.labels.*.name, 'release preparation')) ||
60 # alternatively, to publish when a GitHub Release is created, use the following rule:
61 # if: github.event_name == 'release' && github.event.action == 'published'
H A Drelease-notes.yml1 name: Release Notes
20 - name: Check release notes
26 echo "API changes detected, but release notes not updated"
H A Djulia-test-with-style.yml39 …[[ "$GITHUB_REF" =~ ^refs/(heads/release|tags/).* ]] || julia --project -e 'import Pkg; Pkg.test("…
/libCEED/doc/sphinx/source/
H A Dreleasenotes.md1 # Changes/Release Notes
3 …e provide a summary of the main API changes, new features and examples for each release of libCEED.
102 - OCCA backend updated to latest OCCA release; DPC++ and OMP OCCA modes enabled.
104 This issue will be fixed in a future OCCA release.
232 …aming schema are currently provided, but these headers will be removed in the libCEED v0.9 release.
374 For this release, several improvements were made. Two new CUDA backends were added to
376 performance using single-source {ref}`CeedQFunction`. From this release, users
386 were included in this release, such as the `/cpu/self/opt/*` backends (which are
391 This release also included various performance improvements, bug fixes, new examples,
404 computes the surface area of a given mesh was added to this release.
[all …]
H A Dconf.py78 # |version| and |release|, also used in various other places throughout the
90 release = pkgconf_version variable
H A DCONTRIBUTING.md5 …e branch ('stable' for backward-compatible bug fixes for the last stable release, main' for new fe…
/libCEED/julia/LibCEED.jl/src/
H A DLibCEED.jl182 release = Ref{Bool}()
183 C.CeedGetVersion(major, minor, patch, release)
190 Returns true if the libCEED library is a release build, false otherwise.
196 release = Ref{Bool}()
197 C.CeedGetVersion(major, minor, patch, release)
198 return release[]
205 `true` whenever libCEED is not a release build.
/libCEED/examples/rust/mesh/
H A DCargo.toml12 [package.metadata.release]
13 release = false
/libCEED/examples/rust/ex3-volume-vector/
H A DCargo.toml14 [package.metadata.release]
15 release = false
/libCEED/examples/rust/ex3-volume/
H A DCargo.toml14 [package.metadata.release]
15 release = false
/libCEED/examples/rust/ex1-volume/
H A DCargo.toml14 [package.metadata.release]
15 release = false
/libCEED/examples/rust/ex2-surface/
H A DCargo.toml14 [package.metadata.release]
15 release = false
/libCEED/examples/rust/ex1-volume-vector/
H A DCargo.toml14 [package.metadata.release]
15 release = false
/libCEED/examples/rust/ex2-surface-vector/
H A DCargo.toml14 [package.metadata.release]
15 release = false
/libCEED/rust/libceed/
H A DCargo.toml30 [package.metadata.release]
31 pre-release-replacements = [
/libCEED/rust/libceed-sys/
H A DCargo.toml39 [package.metadata.release]
40 pre-release-replacements = [
/libCEED/examples/rust-qfunctions/
H A DMakefile29 …cargo +nightly build --release --manifest-path ex1-volume-rs/Cargo.toml --config ex1-volume-rs/.ca…
30 …$@ $(CEED_LIBS) -L$(CEED_DIR)/examples/rust-qfunctions/ex1-volume-rs/target/release -lex1_volume_rs
/libCEED/examples/rust-qfunctions/ex1-volume-rs/
H A DCargo.toml9 [profile.release]
/libCEED/python/
H A Dceed_qfunction.py69 ffi.release(invecs)
70 ffi.release(outvecs)
/libCEED/interface/
H A Dceed-config.c19 While @ref CeedGetVersion() uniquely identifies the source code for release
H A Dceed.c1867 Non-release versions may contain unstable interfaces.
1872 @param[out] release True for releases; false for development branches
1882 int CeedGetVersion(int *major, int *minor, int *patch, bool *release) { in CeedGetVersion() argument
1886 if (release) *release = CEED_VERSION_RELEASE; in CeedGetVersion()
/libCEED/backends/cuda/
H A Dceed-cuda-compile.cpp280 …command = "cargo +" + std::string(rust_toolchain) + " build --release --target nvptx64-nvidia-cuda… in CeedCompileCore_Cuda()
345 std::string dir = rust_dirs[i] + "/target/nvptx64-nvidia-cuda/release"; in CeedCompileCore_Cuda()
/libCEED/include/ceed/
H A Dceed.h165 /// A non-release version always compares as positive infinity.
178 CEED_EXTERN int CeedGetVersion(int *major, int *minor, int *patch, bool *release);

12