diff --git a/.github/workflows/package-and-release.yaml b/.github/workflows/package-and-release.yaml index 9be86920350..f6072be060c 100644 --- a/.github/workflows/package-and-release.yaml +++ b/.github/workflows/package-and-release.yaml @@ -161,7 +161,7 @@ jobs: with: name: changelog - name: Assert wheels exist - run: ls -arhl tt_metalium-*+*.whl + run: ls -arhl ttnn-*+*.whl - name: Release # A major release has not been tagged yet, so we need to do this to avoid # Node 16 deprecation warning message @@ -178,7 +178,7 @@ jobs: README.md INSTALLING.md infra/machine_setup/scripts/setup_hugepages.py - tt_metalium-*+*.whl + ttnn-*+*.whl fail_on_unmatched_files: true create-docker-release-image: needs: [ diff --git a/pyproject.toml b/pyproject.toml index b9d10e93b2a..2281efdb014 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -8,7 +8,7 @@ build-backend = "setuptools.build_meta" [project] # To change to eager, or something similar -name = "tt-metalium" +name = "ttnn" authors = [ {name = "Tenstorrent"}, {email = "info@tenstorrent.com"}, diff --git a/tests/scripts/set_up_end_to_end_tests_env.sh b/tests/scripts/set_up_end_to_end_tests_env.sh index 9e4b77d83b6..3c57afe72b1 100755 --- a/tests/scripts/set_up_end_to_end_tests_env.sh +++ b/tests/scripts/set_up_end_to_end_tests_env.sh @@ -19,7 +19,7 @@ set_up_end_to_end_tests_env() { python -m pip config set global.extra-index-url https://download.pytorch.org/whl/cpu python -m pip install -r requirements.txt - python -m pip install ../../tt_metalium-*.whl + python -m pip install ../../ttnn-*.whl cd ../../ rm -rf tt_metal tt_eager ttnn models diff --git a/ttnn/ttnn/library_tweaks.py b/ttnn/ttnn/library_tweaks.py index b9174d2f371..3b1f6f0128d 100644 --- a/ttnn/ttnn/library_tweaks.py +++ b/ttnn/ttnn/library_tweaks.py @@ -30,7 +30,7 @@ def prepare_dir_as_metal_home(ttnn_package_path, metal_home): metal_home.mkdir(exist_ok=True) version_file = metal_home / ".METAL_VERSION" - current_version = version("tt-metalium").strip() + current_version = version("ttnn").strip() runtime_src = ttnn_package_path.parent / "runtime" assert (