diff --git a/tests/catch/unit/deviceLib/CMakeLists.txt b/tests/catch/unit/deviceLib/CMakeLists.txt index 7355023d09..2ee700545c 100644 --- a/tests/catch/unit/deviceLib/CMakeLists.txt +++ b/tests/catch/unit/deviceLib/CMakeLists.txt @@ -23,7 +23,6 @@ endif() # AMD only tests set(AMD_TEST_SRC unsafeAtomicAdd.cc - vectorTypesDevice.cc mbcnt.cc bitExtract.cc bitInsert.cc diff --git a/tests/catch/unit/deviceLib/vectorTypesDevice.cc b/tests/catch/unit/deviceLib/vectorTypesDevice.cc index 5a842809f4..5da42bc6bc 100644 --- a/tests/catch/unit/deviceLib/vectorTypesDevice.cc +++ b/tests/catch/unit/deviceLib/vectorTypesDevice.cc @@ -26,8 +26,6 @@ THE SOFTWARE. #include #include -template using Enable_if_t = typename std::enable_if::type; - using namespace std; template __device__ typename std::add_rvalue_reference::type _declval() noexcept; diff --git a/tests/src/deviceLib/hipVectorTypesDevice.cpp b/tests/src/deviceLib/hipVectorTypesDevice.cpp index 0fd52a991c..6ec6271b45 100644 --- a/tests/src/deviceLib/hipVectorTypesDevice.cpp +++ b/tests/src/deviceLib/hipVectorTypesDevice.cpp @@ -21,14 +21,13 @@ THE SOFTWARE. */ /* HIT_START - * BUILD: %t %s ../test_common.cpp EXCLUDE_HIP_PLATFORM nvidia + * BUILD: %t %s ../test_common.cpp EXCLUDE_HIP_PLATFORM nvidia amd * TEST: %t * HIT_END */ #include -#include "vector_test_common.h" #include "test_common.h" #include