Skip to content

Commit

Permalink
#15803: Rename tt-metalium project to ttnn.
Browse files Browse the repository at this point in the history
  • Loading branch information
dimitri-tenstorrent committed Dec 11, 2024
1 parent b7b5949 commit e62d7f4
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/package-and-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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: [
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 = "[email protected]"},
Expand Down
2 changes: 1 addition & 1 deletion tests/scripts/set_up_end_to_end_tests_env.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion ttnn/ttnn/library_tweaks.py
Original file line number Diff line number Diff line change
Expand Up @@ -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 (
Expand Down

0 comments on commit e62d7f4

Please sign in to comment.