Commit 54829da3 authored by Tomáš Oberhuber's avatar Tomáš Oberhuber Committed by Jakub Klinkovský
Browse files

Fixing array tests for HIP.

parent 8922fed5
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -59,7 +59,7 @@ protected:

// types for which ArrayViewTest is instantiated
using ViewTypes = ::testing::Types<
#ifndef HAVE_CUDA
#if ! defined HAVE_CUDA && ! defined HAVE_HIP
    ArrayView< int,    Devices::Host, short >
   ,ArrayView< long,   Devices::Host, short >
   ,ArrayView< float,  Devices::Host, short >
@@ -94,7 +94,7 @@ using ViewTypes = ::testing::Types<
   ,ArrayView< MyData, Devices::Cuda, long >
#endif
#ifdef HAVE_HIP
  ,ArrayView< int,    Devices::Hip, short >,
   ArrayView< int,    Devices::Hip, short >,
   ArrayView< long,   Devices::Hip, short >,
   ArrayView< float,  Devices::Hip, short >,
   ArrayView< double, Devices::Hip, short >,