Skip to content

Commit

Permalink
#0: TESTING - all post-commit
Browse files Browse the repository at this point in the history
  • Loading branch information
vtangTT committed Apr 23, 2024
1 parent 4bb7974 commit 92abf3b
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/actions/install-python-deps/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,4 @@ runs:
shell: bash
run: |
source ${{ github.workspace }}/python_env/bin/activate
./metal_install.sh
pip install -e ttnn
5 changes: 4 additions & 1 deletion .github/workflows/build-and-unit-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,10 @@ jobs:
with:
name: TTMetal_build_${{ matrix.runner-info.arch }}
- name: Extract files
run: tar -xvf ttm_${{ matrix.runner-info.arch }}.tar
run: |
tar -xvf ttm_${{ matrix.runner-info.arch }}.tar
cmake -B build
cmake --install build --component tt_pybinds
- uses: ./.github/actions/install-python-deps
- name: Run pre/post regression tests
timeout-minutes: 15
Expand Down
2 changes: 0 additions & 2 deletions .github/workflows/build-artifact.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,9 @@ jobs:
- uses: ./.github/actions/install-python-deps
- name: Build tt-metal and libs
run: |
free -h
nproc
cmake -DCMAKE_BUILD_TYPE=ci -DCONFIG=ci -B build
cmake --build build --target tests -- -j`nproc`
ls -la build/tt_eager/tt_lib
cmake --install build --component tt_build_artifacts
- name: 'Tar files'
Expand Down
2 changes: 1 addition & 1 deletion metal_install.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
echo "Building/installing tt-metal"
pip install -e . # -> already called in ./create_venv.sh
# pip install -e . # -> already called in ./create_venv.sh
pip install -e ttnn
stubgen -m tt_lib -m tt_lib.device -m tt_lib.profiler -m tt_lib.tensor -m tt_lib.operations -m tt_lib.operations.primary -m tt_lib.operations.primary.transformers -o tt_eager
stubgen -p ttnn._ttnn -o ttnn
Expand Down

0 comments on commit 92abf3b

Please sign in to comment.