Skip to content

Commit

Permalink
Merge pull request #204 from Xilinx/matthias.disable_oob_tests
Browse files Browse the repository at this point in the history
Disable test that randomly fail due to out of bounds accesses
  • Loading branch information
mgehre-amd authored Jul 26, 2024
2 parents af52ebc + 3b25f4a commit 38f9bb1
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion projects/pt1/e2e_testing/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,11 @@ def main():
if args.config == "linalg":
config = LinalgOnTensorsBackendTestConfig(RefBackendLinalgOnTensorsBackend())
xfail_set = LINALG_XFAIL_SET
crashing_set = set(["ConvolutionModule2DTranspose_basic"])
# Out of bounds access
crashing_set = set(["ConvolutionModule2DTranspose_basic",
"Conv_Transpose2dModule_basic",
"ConvolutionModule2DTransposeStrided_basic",
"ConvolutionModule2DTransposeStridedStatic_basic"])
elif args.config == "stablehlo":
config = StablehloBackendTestConfig(LinalgOnTensorsStablehloBackend())
xfail_set = all_test_unique_names - STABLEHLO_PASS_SET
Expand Down

0 comments on commit 38f9bb1

Please sign in to comment.