Home
last modified time | relevance | path

Searched refs:minor (Results 1 – 10 of 10) sorted by relevance

/libCEED/tests/
H A Dt000-ceed.c11 int major, minor, patch; in main() local
13 CeedGetVersion(&major, &minor, &patch, NULL); in main()
14 …if (!CEED_VERSION_GE(major, minor, patch)) printf("Library version mismatch %d.%d.%d\n", major, mi… in main()
/libCEED/julia/LibCEED.jl/src/
H A DLibCEED.jl180 minor = Ref{Cint}()
183 C.CeedGetVersion(major, minor, patch, release)
184 return VersionNumber(major[], minor[], patch[])
194 minor = Ref{Cint}()
197 C.CeedGetVersion(major, minor, patch, release)
/libCEED/backends/sycl/
H A Donline_compiler.hpp126 online_compiler<Lang> &setOutputFormatVersion(int major, int minor) { in setOutputFormatVersion() argument
127 OutputFormatVersion = {major, minor}; in setOutputFormatVersion()
/libCEED/julia/LibCEED.jl/docs/src/
H A DC.md5 some minor manual modifications) using the Julia package
/libCEED/backends/cuda/
H A Dceed-cuda-compile.cpp124 + std::to_string(prop.major) + std::to_string(prop.minor); in CeedCompileCore_Cuda()
328 …std::to_string(prop.major) + std::to_string(prop.minor) + " --cuda-device-only -emit-llvm -S temp/… in CeedCompileCore_Cuda()
373 …std::to_string(prop.major) + std::to_string(prop.minor) + " temp/kernel_" + std::to_string(build_i… in CeedCompileCore_Cuda()
/libCEED/include/ceed/
H A Dceed.h173 #define CEED_VERSION_GE(major, minor, patch) \ argument
176 …(CEED_VERSION_MAJOR == major && (CEED_VERSION_MINOR > minor || (CEED_VERSION_MINOR == minor && CEE…
178 CEED_EXTERN int CeedGetVersion(int *major, int *minor, int *patch, bool *release);
/libCEED/
H A DRELEASING.md11 Some minor bookkeeping updates are needed when releasing a new version of the core library.
30 1. If making a minor release, check for API and ABI changes that could break [semantic versioning](…
/libCEED/interface/
H A Dceed.c1882 int CeedGetVersion(int *major, int *minor, int *patch, bool *release) { in CeedGetVersion() argument
1884 if (minor) *minor = CEED_VERSION_MINOR; in CeedGetVersion()
/libCEED/julia/LibCEED.jl/src/generated/
H A Dlibceed_bindings.jl175 function CeedGetVersion(major, minor, patch, release) argument
176 …ersion, libceed), Cint, (Ptr{Cint}, Ptr{Cint}, Ptr{Cint}, Ptr{Bool}), major, minor, patch, release)
/libCEED/doc/sphinx/source/
H A DlibCEEDdev.md69 The CUDA and HIP backends are very similar, with minor differences.