From e2e13cda4c71f9d72935107bbea9a97df779e347 Mon Sep 17 00:00:00 2001 From: Jared Smolens Date: Wed, 27 Jan 2021 08:33:20 -0800 Subject: TOSA Unit Test updates - For TOSA.resize, constrain random OFM dimensions to be >0 to avoid possible div-by-zero - Print generated test names only in verbose mode Change-Id: Ib28457c03eca54b7721a1b1b5ba3ed89c58fd000 Signed-off-by: Jared Smolens --- verif/tosa_test_gen.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'verif/tosa_test_gen.py') diff --git a/verif/tosa_test_gen.py b/verif/tosa_test_gen.py index 0e57a7b..24d7b7b 100644 --- a/verif/tosa_test_gen.py +++ b/verif/tosa_test_gen.py @@ -683,7 +683,7 @@ class TosaArgGen: # Randomly generate legal output dimensions and shift # and then compute the stride and offset based on them - output_dims = [ testGen.randInt(), testGen.randInt() ] + output_dims = [ testGen.randInt(1), testGen.randInt(1) ] in_center_h = (ifm_shape[1] - 1) / 2.0 in_center_w = (ifm_shape[2] - 1) / 2.0 out_center_h = (output_dims[0] - 1) / 2.0 -- cgit v1.2.1