-
Notifications
You must be signed in to change notification settings - Fork 14
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Combine test_infra tests #1186
Comments
ctodTT
added a commit
that referenced
this issue
Nov 12, 2024
This change combines does two main things: - In `python/test_infra/test_ttir_ops_tt{nn,metal}.py`, each test function used to have 3 decorators that always went together. These have been combined into a single decorator. - `python/test_infra/test_ttir_ops_tt{nn,metal}.py` have been combined into a single file, with an additional parameter `targets` being used to select which backend is tested for.
ctodTT
added a commit
that referenced
this issue
Nov 12, 2024
This change combines does two main things: - In `python/test_infra/test_ttir_ops_tt{nn,metal}.py`, each test function used to have 3 decorators that always went together. These have been combined into a single decorator. - `python/test_infra/test_ttir_ops_tt{nn,metal}.py` have been combined into a single file, with an additional parameter `targets` being used to select which backend is tested for.
ctodTT
added a commit
that referenced
this issue
Nov 12, 2024
This change combines does two main things: - In `python/test_infra/test_ttir_ops_tt{nn,metal}.py`, each test function used to have 3 decorators that always went together. These have been combined into a single decorator. - `python/test_infra/test_ttir_ops_tt{nn,metal}.py` have been combined into a single file, with an additional parameter `targets` being used to select which backend is tested for.
ctodTT
added a commit
that referenced
this issue
Nov 12, 2024
This change combines does two main things: - In `python/test_infra/test_ttir_ops_tt{nn,metal}.py`, each test function used to have 3 decorators that always went together. These have been combined into a single decorator. - `python/test_infra/test_ttir_ops_tt{nn,metal}.py` have been combined into a single file, with an additional parameter `targets` being used to select which backend is tested for.
ctodTT
added a commit
that referenced
this issue
Nov 13, 2024
This change combines does two main things: - In `python/test_infra/test_ttir_ops_tt{nn,metal}.py`, each test function used to have 3 decorators that always went together. These have been combined into a single decorator. - `python/test_infra/test_ttir_ops_tt{nn,metal}.py` have been combined into a single file, with an additional parameter `targets` being used to select which backend is tested for.
ctodTT
added a commit
that referenced
this issue
Nov 13, 2024
This change combines does two main things: - In `python/test_infra/test_ttir_ops_tt{nn,metal}.py`, each test function used to have 3 decorators that always went together. These have been combined into a single decorator. - `python/test_infra/test_ttir_ops_tt{nn,metal}.py` have been combined into a single file, with an additional parameter `targets` being used to select which backend is tested for.
ctodTT
added a commit
that referenced
this issue
Nov 13, 2024
This change combines does two main things: - In `python/test_infra/test_ttir_ops_tt{nn,metal}.py`, each test function used to have 3 decorators that always went together. These have been combined into a single decorator. - `python/test_infra/test_ttir_ops_tt{nn,metal}.py` have been combined into a single file, with an additional parameter `targets` being used to select which backend is tested for.
ctodTT
added a commit
that referenced
this issue
Nov 13, 2024
This change combines does two main things: - In `python/test_infra/test_ttir_ops_tt{nn,metal}.py`, each test function used to have 3 decorators that always went together. These have been combined into a single decorator. - `python/test_infra/test_ttir_ops_tt{nn,metal}.py` have been combined into a single file, with an additional parameter `targets` being used to select which backend is tested for.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
We should combine the following test files:
python/test_infra/test_ttir_ops_ttmetal.py
python/test_infra/test_ttir_ops_ttnn.py
The tests by default should be backend agnostic and we just have kwargs on the decorator that defaults to
targets=["ttnn", "ttmetal"]
, each test can then decide if it wants to target a particular backend.The text was updated successfully, but these errors were encountered: