xref: /libCEED/examples/solids/include/utils.h (revision bf4cb66493dbcc06b8d25c9c91cf89fe1cab7c9b)
1 #ifndef utils_h
2 #define 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 // utils_h