diff --git a/.github/workflows/ttnn-run-sweeps.yaml b/.github/workflows/ttnn-run-sweeps.yaml index db4f295961a..85d9e0d2964 100644 --- a/.github/workflows/ttnn-run-sweeps.yaml +++ b/.github/workflows/ttnn-run-sweeps.yaml @@ -13,9 +13,9 @@ on: - add - line_all_gather - logical_and_ - - eltwise.frac - - eltwise.ceil - - eltwise.trunc + - eltwise.frac.frac_interleaved + - eltwise.ceil.ceil_interleaved + - eltwise.trunc.trunc_interleaved - matmul.full.matmul_default_block_sharded - matmul.full.matmul_default_height_sharded - matmul.full.matmul_default_interleaved diff --git a/tests/sweep_framework/sweeps/eltwise/ceil.py b/tests/sweep_framework/sweeps/eltwise/ceil/ceil_interleaved.py similarity index 99% rename from tests/sweep_framework/sweeps/eltwise/ceil.py rename to tests/sweep_framework/sweeps/eltwise/ceil/ceil_interleaved.py index 1754675faf9..5024b114b8b 100644 --- a/tests/sweep_framework/sweeps/eltwise/ceil.py +++ b/tests/sweep_framework/sweeps/eltwise/ceil/ceil_interleaved.py @@ -17,7 +17,7 @@ # Each suite has a key name (in this case "suite_1") which will associate the test vectors to this specific suite of inputs. # Developers can create their own generator functions and pass them to the parameters as inputs. parameters = { - "suite_1": { + "nightly": { "input_shape": [ [8, 1, 33, 256], [8, 1, 256, 32], diff --git a/tests/sweep_framework/sweeps/eltwise/frac.py b/tests/sweep_framework/sweeps/eltwise/frac/frac_interleaved.py similarity index 99% rename from tests/sweep_framework/sweeps/eltwise/frac.py rename to tests/sweep_framework/sweeps/eltwise/frac/frac_interleaved.py index 60828b31965..c2f242962a5 100644 --- a/tests/sweep_framework/sweeps/eltwise/frac.py +++ b/tests/sweep_framework/sweeps/eltwise/frac/frac_interleaved.py @@ -17,7 +17,7 @@ # Each suite has a key name (in this case "suite_1") which will associate the test vectors to this specific suite of inputs. # Developers can create their own generator functions and pass them to the parameters as inputs. parameters = { - "suite_1": { + "nightly": { "input_shape": [ [8, 1, 33, 256], [8, 1, 256, 32], diff --git a/tests/sweep_framework/sweeps/eltwise/trunc.py b/tests/sweep_framework/sweeps/eltwise/trunc/trunc_interleaved.py similarity index 99% rename from tests/sweep_framework/sweeps/eltwise/trunc.py rename to tests/sweep_framework/sweeps/eltwise/trunc/trunc_interleaved.py index ec6544de7d9..e127c43c8b0 100644 --- a/tests/sweep_framework/sweeps/eltwise/trunc.py +++ b/tests/sweep_framework/sweeps/eltwise/trunc/trunc_interleaved.py @@ -17,7 +17,7 @@ # Each suite has a key name (in this case "suite_1") which will associate the test vectors to this specific suite of inputs. # Developers can create their own generator functions and pass them to the parameters as inputs. parameters = { - "suite_1": { + "nightly": { "input_shape": [ [8, 1, 33, 256], [8, 1, 256, 32],