Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
CI_FILTER: ^linux_icpx
  • Loading branch information
SimeonEhrig committed May 14, 2024
1 parent 14d2b02 commit 4054e15
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions include/alpaka/mem/Visibility.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ namespace alpaka
CREATE_MEM_VISIBILITY(MemVisibleCPU);
CREATE_MEM_VISIBILITY(MemVisibleFpgaSyclIntel);
CREATE_MEM_VISIBILITY(MemVisibleGenericSycl);
CREATE_MEM_VISIBILITY(MemVisibleCpuSycl);
CREATE_MEM_VISIBILITY(MemVisibleGpuCudaRt);
CREATE_MEM_VISIBILITY(MemVisibleGpuHipRt);
CREATE_MEM_VISIBILITY(MemVisibleGpuSyclIntel);
Expand Down
2 changes: 1 addition & 1 deletion include/alpaka/platform/PlatformCpuSycl.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ namespace alpaka::trait
template<>
struct MemVisibility<PlatformCpuSycl>
{
using type = alpaka::MemVisibleCPU;
using type = alpaka::MemVisibleCpuSycl;
};
} // namespace alpaka::trait

Expand Down
2 changes: 1 addition & 1 deletion test/unit/mem/src/Visibility.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ using ExpectedTagsMemVisibilities = alpaka::meta::Filter<
std::tuple<alpaka::TagCpuOmp2Threads, alpaka::MemVisibleCPU>,
std::tuple<alpaka::TagGpuCudaRt, alpaka::MemVisibleGpuCudaRt>,
std::tuple<alpaka::TagGpuHipRt, alpaka::MemVisibleGpuHipRt>,
std::tuple<alpaka::TagCpuSycl, alpaka::MemVisibleCPU>,
std::tuple<alpaka::TagCpuSycl, alpaka::MemVisibleCpuSycl>,
std::tuple<alpaka::TagFpgaSyclIntel, alpaka::MemVisibleFpgaSyclIntel>,
std::tuple<alpaka::TagGpuSyclIntel, alpaka::MemVisibleGpuSyclIntel>>,
AccIsEnabledMemVisibilities>;
Expand Down

0 comments on commit 4054e15

Please sign in to comment.