xref: /libCEED/examples/solids/include/utils.h (revision cdf95791513f7c35170bef3ba2e19f272fe04533)
1 #ifndef libceed_solids_examples_utils_h
2 #define libceed_solids_examples_utils_h
3 
4 #include <ceed.h>
5 #include <petsc.h>
6 
7 // Translate PetscMemType to CeedMemType
8 static inline CeedMemType MemTypeP2C(PetscMemType mem_type) {
9   return PetscMemTypeDevice(mem_type) ? CEED_MEM_DEVICE : CEED_MEM_HOST;
10 }
11 
12 #endif // libceed_solids_examples_utils_h
13