Skip to content

Commit

Permalink
#9406: Remove create env from profiler build script
Browse files Browse the repository at this point in the history
  • Loading branch information
mo-tenstorrent committed Jun 25, 2024
1 parent 53aa7c8 commit f9d4f30
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 2 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/metal-run-microbenchmarks.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,9 @@ jobs:
run: |
echo "TT_METAL_HOME=$(pwd)" >> $GITHUB_ENV
- name: Build tt-metal and libs
run: ./scripts/build_scripts/build_with_profiler_opt.sh
run: |
./scripts/build_scripts/build_with_profiler_opt.sh
./create_venv.sh
- name: Build tests
run: cmake --build build --target tests -- -j`nproc`
- name: Run microbenchmark tests
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/perf-device-models.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ jobs:
- name: Build tt-metal and libs
run: |
./scripts/build_scripts/build_with_profiler_opt.sh
./create_venv.sh
- name: Run device performance regressions
timeout-minutes: ${{ matrix.test-info.timeout }}
run: |
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/run-profiler-regression.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ jobs:
- name: Build tt-metal and libs
run: |
./scripts/build_scripts/build_with_profiler_opt.sh
./create_venv.sh
- name: Run profiler regression tests
timeout-minutes: 30
run: |
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/t3000-profiler-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ jobs:
- name: Build tt-metal and libs
run: |
./scripts/build_scripts/build_with_profiler_opt.sh
./create_venv.sh
- name: Run profiler regression tests
timeout-minutes: 30
run: |
Expand Down
1 change: 0 additions & 1 deletion scripts/build_scripts/build_with_profiler_opt.sh
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,3 @@ fi

cmake --build build --target install
cmake --build build --target programming_examples
./create_venv.sh

0 comments on commit f9d4f30

Please sign in to comment.