-
Notifications
You must be signed in to change notification settings - Fork 48
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove xfails on submodels for rocm.
- Loading branch information
Showing
1 changed file
with
3 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -93,7 +93,7 @@ def setUp(self): | |
) | ||
|
||
def test01_ExportClipModels(self): | ||
if arguments["device"] in ["vulkan", "rocm", "cuda"]: | ||
if arguments["device"] in ["vulkan", "cuda"]: | ||
self.skipTest( | ||
This comment has been minimized.
Sorry, something went wrong.
This comment has been minimized.
Sorry, something went wrong.
monorimet
Author
Contributor
|
||
"Compilation error on vulkan; Runtime error on rocm; To be tested on cuda." | ||
) | ||
|
@@ -215,7 +215,7 @@ def test01_ExportClipModels(self): | |
np.testing.assert_allclose(torch_output_2, turbine_2[0], rtol, atol) | ||
|
||
def test02_ExportUnetModel(self): | ||
if arguments["device"] in ["vulkan", "rocm", "cuda"]: | ||
if arguments["device"] in ["vulkan", "cuda"]: | ||
self.skipTest( | ||
"Unknown error on vulkan; Runtime error on rocm; To be tested on cuda." | ||
) | ||
|
@@ -325,7 +325,7 @@ def test02_ExportUnetModel(self): | |
np.testing.assert_allclose(torch_output, turbine, rtol, atol) | ||
|
||
def test03_ExportVaeModelDecode(self): | ||
if arguments["device"] in ["vulkan", "cuda", "rocm"]: | ||
if arguments["device"] in ["vulkan", "cuda"]: | ||
self.skipTest( | ||
"Compilation error on vulkan; Runtime error on rocm; To be tested on cuda." | ||
) | ||
|
Instead of skipping these tests, can we just xfail them?