Home
last modified time | relevance | path

Searched defs:ceed (Results 1 – 25 of 422) sorted by relevance

12345678910>>...17

/libCEED/interface/
H A Dceed.c150 static int CeedWorkVectorsCreate(Ceed ceed) { in CeedWorkVectorsCreate()
164 static int CeedWorkVectorsDestroy(Ceed ceed) { in CeedWorkVectorsDestroy()
191 static int CeedView_Object(CeedObject ceed, FILE *stream) { in CeedView_Object()
205 static int CeedDestroy_Object(CeedObject *ceed) { in CeedDestroy_Object()
229 bool CeedDebugFlag(const Ceed ceed) { return ceed->is_debug; } in CeedDebugFlag()
514 int CeedIsDebug(Ceed ceed, bool *is_debug) { in CeedIsDebug()
533 int CeedGetResourceRoot(Ceed ceed, const char *resource, const char *delineator, char **resource_ro… in CeedGetResourceRoot()
552 int CeedGetParent(Ceed ceed, Ceed *parent) { in CeedGetParent()
572 int CeedGetDelegate(Ceed ceed, Ceed *delegate) { in CeedGetDelegate()
591 int CeedSetDelegate(Ceed ceed, Ceed delegate) { in CeedSetDelegate()
[all …]
H A Dceed-config.c50 int CeedSetIsClang(Ceed ceed, bool is_clang) { in CeedSetIsClang()
67 int CeedGetIsClang(Ceed ceed, bool *is_clang) { in CeedGetIsClang()
H A Dceed-jit-tools.c27 int CeedCheckFilePath(Ceed ceed, const char *source_file_path, bool *is_valid) { in CeedCheckFilePath()
74 static int CeedNormalizePath(Ceed ceed, const char *source_file_path, char **normalized_source_file… in CeedNormalizePath()
124 int CeedLoadSourceToInitializedBuffer(Ceed ceed, const char *source_file_path, CeedInt *num_file_pa… in CeedLoadSourceToInitializedBuffer()
313 int CeedLoadSourceAndInitializeBuffer(Ceed ceed, const char *source_file_path, CeedInt *num_file_pa… in CeedLoadSourceAndInitializeBuffer()
339 int CeedLoadSourceToBuffer(Ceed ceed, const char *source_file_path, char **buffer) { in CeedLoadSourceToBuffer()
368 int CeedPathConcatenate(Ceed ceed, const char *base_file_path, const char *relative_file_path, char… in CeedPathConcatenate()
406 int CeedGetJitAbsolutePath(Ceed ceed, const char *relative_file_path, const char **absolute_file_pa… in CeedGetJitAbsolutePath()
/libCEED/backends/cuda/
H A Dceed-cuda-common.c19 int CeedInit_Cuda(Ceed ceed, const char *resource) { in CeedInit_Cuda()
40 int CeedDestroy_Cuda(Ceed ceed) { in CeedDestroy_Cuda()
52 static inline int CeedSetDeviceGenericArray_Cuda(Ceed ceed, const void *source_array, CeedCopyMode … in CeedSetDeviceGenericArray_Cuda()
81 int CeedSetDeviceBoolArray_Cuda(Ceed ceed, const bool *source_array, CeedCopyMode copy_mode, CeedSi… in CeedSetDeviceBoolArray_Cuda()
88 int CeedSetDeviceCeedInt8Array_Cuda(Ceed ceed, const CeedInt8 *source_array, CeedCopyMode copy_mode… in CeedSetDeviceCeedInt8Array_Cuda()
95 int CeedSetDeviceCeedIntArray_Cuda(Ceed ceed, const CeedInt *source_array, CeedCopyMode copy_mode, … in CeedSetDeviceCeedIntArray_Cuda()
102 int CeedSetDeviceCeedScalarArray_Cuda(Ceed ceed, const CeedScalar *source_array, CeedCopyMode copy_… in CeedSetDeviceCeedScalarArray_Cuda()
H A Dceed-cuda-common.h16 #define CeedChk_Cu(ceed, x) \ argument
26 #define CeedChk_Cublas(ceed, x) \ argument
35 #define CeedCallCuda(ceed, ...) \ argument
41 #define CeedCallCublas(ceed, ...) \ argument
H A Dceed-cuda-compile.cpp30 #define CeedChk_Nvrtc(ceed, x) … argument
36 #define CeedCallNvrtc(ceed, ...) \ argument
42 #define CeedCallSystem(ceed, command, message) CeedCallBackend(CeedCallSystem_Core(ceed, command, m… argument
47 static int CeedCallSystem_Core(Ceed ceed, const char *command, const char *message) { in CeedCallSystem_Core()
71 static int CeedCompileCore_Cuda(Ceed ceed, const char *source, const bool throw_error, bool *is_com… in CeedCompileCore_Cuda()
407 int CeedCompile_Cuda(Ceed ceed, const char *source, CUmodule *module, const CeedInt num_defines, ..… in CeedCompile_Cuda()
419 int CeedTryCompile_Cuda(Ceed ceed, const char *source, bool *is_compile_good, CUmodule *module, con… in CeedTryCompile_Cuda()
433 int CeedGetKernel_Cuda(Ceed ceed, CUmodule module, const char *name, CUfunction *kernel) { in CeedGetKernel_Cuda()
443 int CeedRunKernelAutoblockCuda(Ceed ceed, CUfunction kernel, size_t points, void **args) { in CeedRunKernelAutoblockCuda()
454 int CeedRunKernel_Cuda(Ceed ceed, CUfunction kernel, const int grid_size, const int block_size, voi… in CeedRunKernel_Cuda()
[all …]
/libCEED/backends/hip/
H A Dceed-hip-common.c18 int CeedInit_Hip(Ceed ceed, const char *resource) { in CeedInit_Hip()
47 int CeedDestroy_Hip(Ceed ceed) { in CeedDestroy_Hip()
59 static inline int CeedSetDeviceGenericArray_Hip(Ceed ceed, const void *source_array, CeedCopyMode c… in CeedSetDeviceGenericArray_Hip()
88 int CeedSetDeviceBoolArray_Hip(Ceed ceed, const bool *source_array, CeedCopyMode copy_mode, CeedSiz… in CeedSetDeviceBoolArray_Hip()
95 int CeedSetDeviceCeedInt8Array_Hip(Ceed ceed, const CeedInt8 *source_array, CeedCopyMode copy_mode,… in CeedSetDeviceCeedInt8Array_Hip()
102 int CeedSetDeviceCeedIntArray_Hip(Ceed ceed, const CeedInt *source_array, CeedCopyMode copy_mode, C… in CeedSetDeviceCeedIntArray_Hip()
109 int CeedSetDeviceCeedScalarArray_Hip(Ceed ceed, const CeedScalar *source_array, CeedCopyMode copy_m… in CeedSetDeviceCeedScalarArray_Hip()
H A Dceed-hip-compile.cpp21 #define CeedChk_hiprtc(ceed, x) … argument
27 #define CeedCallHiprtc(ceed, ...) \ argument
36 static int CeedCompileCore_Hip(Ceed ceed, const char *source, const bool throw_error, bool *is_comp… in CeedCompileCore_Hip()
178 int CeedCompile_Hip(Ceed ceed, const char *source, hipModule_t *module, const CeedInt num_defines, … in CeedCompile_Hip()
190 int CeedTryCompile_Hip(Ceed ceed, const char *source, bool *is_compile_good, hipModule_t *module, c… in CeedTryCompile_Hip()
204 int CeedGetKernel_Hip(Ceed ceed, hipModule_t module, const char *name, hipFunction_t *kernel) { in CeedGetKernel_Hip()
212 int CeedRunKernel_Hip(Ceed ceed, hipFunction_t kernel, const int grid_size, const int block_size, v… in CeedRunKernel_Hip()
220 int CeedRunKernelDim_Hip(Ceed ceed, hipFunction_t kernel, const int grid_size, const int block_size… in CeedRunKernelDim_Hip()
229 static int CeedRunKernelDimSharedCore_Hip(Ceed ceed, hipFunction_t kernel, hipStream_t stream, cons… in CeedRunKernelDimSharedCore_Hip()
253 int CeedRunKernelDimShared_Hip(Ceed ceed, hipFunction_t kernel, hipStream_t stream, const int grid_… in CeedRunKernelDimShared_Hip()
[all …]
H A Dceed-hip-common.h20 #define CeedChk_Hip(ceed, x) \ argument
29 #define CeedChk_Hipblas(ceed, x) \ argument
38 #define CeedCallHip(ceed, ...) \ argument
44 #define CeedCallHipblas(ceed, ...) \ argument
/libCEED/backends/magma/
H A Dceed-magma-common.c18 int CeedInit_Magma_common(Ceed ceed, const char *resource) { in CeedInit_Magma_common()
45 int CeedDestroy_Magma(Ceed ceed) { in CeedDestroy_Magma()
/libCEED/backends/opt/
H A Dceed-opt-blocked.c18 static int CeedDestroy_Opt(Ceed ceed) { in CeedDestroy_Opt()
29 static int CeedInit_Opt_Blocked(const char *resource, Ceed ceed) { in CeedInit_Opt_Blocked()
H A Dceed-opt-serial.c18 static int CeedDestroy_Opt(Ceed ceed) { in CeedDestroy_Opt()
29 static int CeedInit_Opt_Serial(const char *resource, Ceed ceed) { in CeedInit_Opt_Serial()
/libCEED/backends/sycl/
H A Dceed-sycl-compile.sycl.cpp27 static int CeedJitAddDefinitions_Sycl(Ceed ceed, const std::string &kernel_source, std::string &jit… in CeedJitAddDefinitions_Sycl()
71 static inline int CeedJitCompileSource_Sycl(Ceed ceed, const sycl::device &sycl_device, const std::… in CeedJitCompileSource_Sycl()
86 static int CeedLoadModule_Sycl(Ceed ceed, const sycl::context &sycl_context, const sycl::device &sy… in CeedLoadModule_Sycl()
124 int CeedBuildModule_Sycl(Ceed ceed, const std::string &kernel_source, SyclModule_t **sycl_module, c… in CeedBuildModule_Sycl()
143 int CeedGetKernel_Sycl(Ceed ceed, const SyclModule_t *sycl_module, const std::string &kernel_name, … in CeedGetKernel_Sycl()
169 int CeedRunKernelDimSharedSycl(Ceed ceed, sycl::kernel *kernel, const int grid_size, const int bloc… in CeedRunKernelDimSharedSycl()
H A Dceed-sycl-common.sycl.cpp18 int CeedInit_Sycl(Ceed ceed, const char *resource) { in CeedInit_Sycl()
81 int CeedDestroy_Sycl(Ceed ceed) { in CeedDestroy_Sycl()
92 int CeedSetStream_Sycl(Ceed ceed, void *handle) { in CeedSetStream_Sycl()
H A Dceed-sycl-common.hpp15 #define CeedCallSycl(ceed, ...) \ argument
27 int CeedSetBackendFunctionCpp(Ceed ceed, const char *type, void *object, const char *fname, R (*f)(… in CeedSetBackendFunctionCpp()
/libCEED/backends/cuda-ref/
H A Dceed-cuda-ref.c28 int CeedGetCublasHandle_Cuda(Ceed ceed, cublasHandle_t *handle) { in CeedGetCublasHandle_Cuda()
40 static int CeedInit_Cuda_ref(const char *resource, Ceed ceed) { in CeedInit_Cuda_ref()
/libCEED/backends/hip-ref/
H A Dceed-hip-ref.c28 int CeedGetHipblasHandle_Hip(Ceed ceed, hipblasHandle_t *handle) { in CeedGetHipblasHandle_Hip()
43 static int CeedInit_Hip_ref(const char *resource, Ceed ceed) { in CeedInit_Hip_ref()
/libCEED/backends/sycl-gen/
H A Dceed-sycl-gen-qfunction.sycl.cpp27 Ceed ceed; in CeedQFunctionDestroy_Sycl_gen() local
49 Ceed ceed; in CeedQFunctionCreate_Sycl_gen() local
/libCEED/backends/sycl-ref/
H A Dceed-sycl-ref-qfunctioncontext.sycl.cpp20 Ceed ceed; in CeedQFunctionContextSyncH2D_Sycl() local
53 Ceed ceed; in CeedQFunctionContextSyncD2H_Sycl() local
193 Ceed ceed; in CeedQFunctionContextSetDataDevice_Sycl() local
257 Ceed ceed; in CeedQFunctionContextTakeData_Sycl() local
349 Ceed ceed; in CeedQFunctionContextDestroy_Sycl() local
370 Ceed ceed; in CeedQFunctionContextCreate_Sycl() local
H A Dceed-sycl-ref-qfunction.sycl.cpp27 Ceed ceed; in CeedQFunctionApply_Sycl() local
114 Ceed ceed; in CeedQFunctionDestroy_Sycl() local
130 Ceed ceed; in CeedQFunctionCreate_Sycl() local
H A Dceed-sycl-vector.sycl.cpp41 Ceed ceed; in CeedVectorSyncH2D_Sycl() local
75 Ceed ceed; in CeedVectorSyncD2H_Sycl() local
203 Ceed ceed; in CeedVectorSetArrayDevice_Sycl() local
296 Ceed ceed; in CeedVectorSetValue_Sycl() local
336 Ceed ceed; in CeedVectorTakeArray_Sycl() local
450 Ceed ceed; in CeedVectorNorm_Sycl() local
520 Ceed ceed; in CeedVectorReciprocal_Sycl() local
560 Ceed ceed; in CeedVectorScale_Sycl() local
600 Ceed ceed; in CeedVectorAXPY_Sycl() local
647 Ceed ceed; in CeedVectorPointwiseMult_Sycl() local
[all …]
/libCEED/tests/
H A Dt101-vector.c11 static int CheckValues(Ceed ceed, CeedVector x, CeedScalar value) { in CheckValues()
25 Ceed ceed; in main() local
/libCEED/examples/solids/problems/
H A Dmooney-rivlin.c14 PetscErrorCode PhysicsContext_MR(MPI_Comm comm, Ceed ceed, Units *units, CeedQFunctionContext *ctx)… in PhysicsContext_MR()
30 PetscErrorCode PhysicsSmootherContext_MR(MPI_Comm comm, Ceed ceed, CeedQFunctionContext ctx, CeedQF… in PhysicsSmootherContext_MR()
H A Dneo-hookean.c14 PetscErrorCode PhysicsContext_NH(MPI_Comm comm, Ceed ceed, Units *units, CeedQFunctionContext *ctx)… in PhysicsContext_NH()
30 PetscErrorCode PhysicsSmootherContext_NH(MPI_Comm comm, Ceed ceed, CeedQFunctionContext ctx, CeedQF… in PhysicsSmootherContext_NH()
/libCEED/python/
H A Dceed_qfunction.py79 def __init__(self, ceed, vlength, f, source): argument
153 def __init__(self, ceed, name): argument
173 def __init__(self, ceed, size, inmode, outmode): argument

12345678910>>...17