-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update iree packages to nightly, fix name of test, create README
Signed-off-by: aviator19941 <[email protected]>
- Loading branch information
1 parent
1547655
commit 0510450
Showing
5 changed files
with
31 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
# How to run Llama 3.1 Benchmarking Tests | ||
In order to run Llama 3.1 8B F16 Decomposed test: | ||
``` | ||
pytest sharktank/tests/models/llama/benchmark_amdgpu_test.py -v -s \ | ||
--run-quick-test --iree-hip-target=gfx942 | ||
``` | ||
|
||
In order to filter by test, use the -k option. If you | ||
wanted to only run the Llama 3.1 70B F16 Decomposed test: | ||
``` | ||
pytest sharktank/tests/models/llama/benchmark_amdgpu_test.py -v -s \ | ||
--run-nightly-llama-tests --iree-hip-target=gfx942 \ | ||
-k 'testBenchmark70B_f16_TP8_Decomposed' | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters