We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 28b5401 + 41f612b commit ac26fe5Copy full SHA for ac26fe5
src/axom/core/execution/internal/omp_exec.hpp
@@ -66,9 +66,9 @@ struct execution_space<OMP_EXEC>
66
}
67
static bool usesMemorySpace(axom::MemorySpace m) noexcept
68
{
69
- return m == memory_space
+ return m == MemorySpace::Dynamic
70
#ifdef AXOM_USE_UMPIRE
71
- || m == MemorySpace::Unified
+ || m == MemorySpace::Host || m == MemorySpace::Unified
72
#endif
73
;
74
src/axom/core/execution/internal/seq_exec.hpp
@@ -75,9 +75,9 @@ struct execution_space<SEQ_EXEC>
75
76
77
78
79
80
81
82
83
0 commit comments