Searched refs:minor (Results 1 – 10 of 10) sorted by relevance
| /libCEED/tests/ |
| H A D | t000-ceed.c | 11 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 D | LibCEED.jl | 180 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 D | online_compiler.hpp | 126 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 D | C.md | 5 some minor manual modifications) using the Julia package
|
| /libCEED/backends/cuda/ |
| H A D | ceed-cuda-compile.cpp | 124 + 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 D | ceed.h | 173 #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 D | RELEASING.md | 11 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 D | ceed.c | 1882 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 D | libceed_bindings.jl | 175 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 D | libCEEDdev.md | 69 The CUDA and HIP backends are very similar, with minor differences.
|