Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ struct ndarray_device_type<ghex::cpu>
template<>
struct ndarray_device_type<ghex::gpu>
{
#ifdef __HIP_PLATFORM_HCC__
#ifdef __HIP_PLATFORM_AMD__
using type = nanobind::device::rocm;
#else
using type = nanobind::device::cuda;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ struct ndarray_device_type<ghex::cpu>
template<>
struct ndarray_device_type<ghex::gpu>
{
#ifdef __HIP_PLATFORM_HCC__
#ifdef __HIP_PLATFORM_AMD__
using type = nanobind::device::rocm;
#else
using type = nanobind::device::cuda;
Expand Down
Loading