SWDEV 409754: Disable sections of memcpy3D tests that cause llvm errors. (#357)

* Update hipMemcpy3DAsync.cc

* Update hipMemcpy3D.cc

* Update hipMemcpy3DAsync.cc
This commit is contained in:
Ioannis Assiouras
2023-07-07 21:50:57 +01:00
committed by GitHub
parent dfa8015901
commit db596a7cb1
2 changed files with 6 additions and 6 deletions
+2 -2
View File
@@ -48,7 +48,7 @@ TEST_CASE("Unit_hipMemcpy3DAsync_Positive_Basic") {
SECTION("Host to Device") { Memcpy3DHostToDeviceShell<async>(Memcpy3DWrapper<async>, stream); }
SECTION("Host to Host") { Memcpy3DHostToHostShell<async>(Memcpy3DWrapper<async>, stream); }
//SWDEV-409754 SECTION("Host to Host") { Memcpy3DHostToHostShell<async>(Memcpy3DWrapper<async>, stream); }
}
TEST_CASE("Unit_hipMemcpy3DAsync_Positive_Synchronization_Behavior") {
@@ -82,7 +82,7 @@ TEST_CASE("Unit_hipMemcpy3DAsync_Positive_Parameters") {
TEST_CASE("Unit_hipMemcpy3DAsync_Positive_Array") {
constexpr bool async = true;
SECTION("Array from/to Host") { Memcpy3DArrayHostShell<async>(Memcpy3DWrapper<async>); }
//SWDEV-409754 SECTION("Array from/to Host") { Memcpy3DArrayHostShell<async>(Memcpy3DWrapper<async>); }
#if HT_NVIDIA // Disabled on AMD due to defect - EXSWHTEC-238
SECTION("Array from/to Device") { Memcpy3DArrayDeviceShell<async>(Memcpy3DWrapper<async>); }
#endif