From 08e4cc68019edbf2df6f494fc3b1d7a1d422612a Mon Sep 17 00:00:00 2001 From: Tristan Konolige Date: Thu, 28 Jul 2022 09:46:55 -0700 Subject: [PATCH] print out report for debugging --- tests/python/unittest/test_roofline.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/python/unittest/test_roofline.py b/tests/python/unittest/test_roofline.py index 645fe3f7b7f5..e2ecead9bb66 100644 --- a/tests/python/unittest/test_roofline.py +++ b/tests/python/unittest/test_roofline.py @@ -101,6 +101,7 @@ def test_roofline_analysis(target, dev): dev = remote.device(target) report = tvm.utils.roofline_analysis(mod, params, target, dev, remote=remote) + print(report) assert "Bound" in report.table() assert "Percent of Theoretical Optimal" in report.table()