Skip to content

Commit

Permalink
Fix the performance sample count from 8312 to 8313
Browse files Browse the repository at this point in the history
  • Loading branch information
nvzhihanj committed Dec 13, 2024
1 parent 36212a5 commit 4162d85
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 10 deletions.
8 changes: 4 additions & 4 deletions language/llama3-405b/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ python -u main.py --scenario Offline \
--batch-size 16 \
--dtype float16 \
--user-conf user.conf \
--total-sample-count 8312 \
--total-sample-count 8313 \
--dataset-path ${DATASET_PATH} \
--output-log-dir output \
--tensor-parallel-size ${GPU_COUNT} \
Expand All @@ -160,7 +160,7 @@ python -u main.py --scenario Server \
--batch-size 16 \
--dtype float16 \
--user-conf user.conf \
--total-sample-count 8312 \
--total-sample-count 8313 \
--dataset-path ${DATASET_PATH} \
--output-log-dir output \
--tensor-parallel-size ${GPU_COUNT} \
Expand All @@ -184,7 +184,7 @@ python -u main.py --scenario Offline \
--accuracy \
--dtype float16 \
--user-conf user.conf \
--total-sample-count 8312 \
--total-sample-count 8313 \
--dataset-path ${DATASET_PATH} \
--output-log-dir output \
--tensor-parallel-size ${GPU_COUNT} \
Expand Down Expand Up @@ -212,7 +212,7 @@ python -u main.py --scenario Server \
--accuracy \
--dtype float16 \
--user-conf user.conf \
--total-sample-count 8312 \
--total-sample-count 8313 \
--dataset-path ${DATASET_PATH} \
--output-log-dir output \
--tensor-parallel-size ${GPU_COUNT} \
Expand Down
2 changes: 1 addition & 1 deletion language/llama3-405b/run_accuracy.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ python3 -u main.py --scenario Offline \
--accuracy \
--mlperf-conf mlperf.conf \
--user-conf user.conf \
--total-sample-count 8312 \
--total-sample-count 8313 \
--dataset-path ${DATASET_PATH} \
--output-log-dir offline_accuracy_loadgen_logs \
--dtype float32 | tee offline_accuracy_log.log
Expand Down
2 changes: 1 addition & 1 deletion language/llama3-405b/run_offline.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ python -u main.py --scenario Offline \
--batch-size 16 \
--dtype float16 \
--user-conf user.conf \
--total-sample-count 8312 \
--total-sample-count 8313 \
--dataset-path ${DATASET_PATH} \
--output-log-dir output \
--tensor-parallel-size ${GPU_COUNT} \
Expand Down
2 changes: 1 addition & 1 deletion language/llama3-405b/run_server.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ python -u main.py --scenario Server \
--batch-size 16 \
--dtype float16 \
--user-conf user.conf \
--total-sample-count 8312 \
--total-sample-count 8313 \
--dataset-path ${DATASET_PATH} \
--output-log-dir output \
--tensor-parallel-size ${GPU_COUNT} \
Expand Down
5 changes: 2 additions & 3 deletions tools/submission/submission_checker.py
Original file line number Diff line number Diff line change
Expand Up @@ -429,7 +429,7 @@
"llama2-70b-99.9": 24576,
"stable-diffusion-xl": 5000,
"mixtral-8x7b": 15000,
"llama3-405b": 8312,
"llama3-405b": 8313,
"rgat": 788379

},
Expand Down Expand Up @@ -579,8 +579,7 @@
"llama2-70b-99.9": 24576,
"stable-diffusion-xl": 5000,
"mixtral-8x7b": 15000,
"llama3-405b": 8312,
"llama2-405b-99.9": 8312,
"llama3-405b": 8313,
"rgat": 788379,
}

Expand Down

0 comments on commit 4162d85

Please sign in to comment.