From 85b127d3c202c39d85025722a20473460eb9bd0f Mon Sep 17 00:00:00 2001 From: adstraw Date: Thu, 6 Oct 2022 15:52:53 -0700 Subject: [PATCH] [Hexagon] disable cache_write schedule type from sw pipeline test --- .../contrib/test_hexagon/test_software_pipeline_async.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/tests/python/contrib/test_hexagon/test_software_pipeline_async.py b/tests/python/contrib/test_hexagon/test_software_pipeline_async.py index 7a53a1fc9b53..9fc6abbb9480 100644 --- a/tests/python/contrib/test_hexagon/test_software_pipeline_async.py +++ b/tests/python/contrib/test_hexagon/test_software_pipeline_async.py @@ -28,7 +28,10 @@ inner = tvm.testing.parameter(64, 128) dtype = tvm.testing.parameter("uint8", "float16") scope = tvm.testing.parameter("global", "global.vtcm") -sched = tvm.testing.parameter("cache_read", "cache_write", "cache_read_write") +# TODO(Straw) Add back "cache_write" schedule type once we have upstreamed +# buffer dependency analysis in InjectSoftwarePipeline pass +# to insert approprite TIR "wait" attributes for this schedule +sched = tvm.testing.parameter("cache_read", "cache_read_write") @tvm.testing.fixture