| /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/docs/src/ |
| H A D | Basis.md | 3 !!! info "Column-major vs. row-major storage" 4 libCEED internally uses row-major (C convention) storage of matrices, 5 while Julia uses column-major (Fortran convention) storage.
|
| /libCEED/julia/LibCEED.jl/src/ |
| H A D | LibCEED.jl | 179 major = Ref{Cint}() 183 C.CeedGetVersion(major, minor, patch, release) 184 return VersionNumber(major[], minor[], patch[]) 193 major = Ref{Cint}() 197 C.CeedGetVersion(major, minor, patch, release)
|
| H A D | Basis.jl | 94 # Convert from Julia matrices (column-major) to row-major format 151 # Convert from Julia matrices and tensors (column-major) to row-major format 209 # Convert from Julia matrices and tensors (column-major) to row-major format 268 # Convert from Julia matrices and tensors (column-major) to row-major format
|
| H A D | ElemRestriction.jl | 199 - `curlorients`: Array of shape `(3 * elemsize, nelem)` representing a row-major tridiagonal
|
| /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/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 175 (CEED_VERSION_MAJOR > major || \ 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/interface/ |
| H A D | ceed.c | 1882 int CeedGetVersion(int *major, int *minor, int *patch, bool *release) { in CeedGetVersion() argument 1883 if (major) *major = CEED_VERSION_MAJOR; in CeedGetVersion()
|
| /libCEED/ |
| H A D | CONTRIBUTING.md | 24 When contributors make a major contribution and support it, their names are included in the automat…
|
| /libCEED/doc/sphinx/source/ |
| H A D | CONTRIBUTING.md | 24 When contributors make a major contribution and support it, their names are included in the automat…
|
| H A D | releasenotes.md | 263 …h {c:func}`CeedOperatorLinearAssemblePointBlockDiagonal`, provided in row-major form in a {code}`n… 636 This release also contained major improvements in the OCCA backend (including a new
|
| H A D | libCEEDdev.md | 170 This ordering is sometimes referred to as row-major or C-style.
|
| /libCEED/backends/cuda-gen/ |
| H A D | ceed-cuda-gen-operator-build.cpp | 1263 if ((prop.major < 6) && (CEED_SCALAR_TYPE != CEED_SCALAR_FP32)) { in CeedOperatorBuildKernel_Cuda_gen() 1679 if ((prop.major < 6) && (CEED_SCALAR_TYPE != CEED_SCALAR_FP32)) { in CeedOperatorBuildKernelAssemblyAtPoints_Cuda_gen() 2203 if ((prop.major < 6) && (CEED_SCALAR_TYPE != CEED_SCALAR_FP32)) { in CeedOperatorBuildKernelLinearAssembleQFunction_Cuda_gen()
|
| /libCEED/julia/LibCEED.jl/src/generated/ |
| H A D | libceed_bindings.jl | 175 function CeedGetVersion(major, minor, patch, release) argument 176 …ccall((:CeedGetVersion, libceed), Cint, (Ptr{Cint}, Ptr{Cint}, Ptr{Cint}, Ptr{Bool}), major, minor…
|