Skip to content

Commit

Permalink
added new github processor (#46)
Browse files Browse the repository at this point in the history
* added new github processor

* updated vhost ratio of new github processor
  • Loading branch information
dan-mm authored Nov 17, 2023
1 parent 37461fc commit 4aa956e
Showing 1 changed file with 14 additions and 1 deletion.
15 changes: 14 additions & 1 deletion scripts/vars.sh
Original file line number Diff line number Diff line change
Expand Up @@ -119,8 +119,21 @@ function cpu_vars_fill {
add_var "CPU_CHIPS" 1;
add_var "VHOST_RATIO" $(echo "2/52" | bc -l);

elif [[ "$model_name" == *"AMD EPYC 7763"* ]]; then
echo "Found EPYC 7763 model";
add_var "MODEL_NAME" "EPYC_7763";

add_var "TDP" 280;
add_var "CPU_THREADS" 128;
add_var "CPU_CORES" 64;
add_var "CPU_MAKE" "amd";
add_var "RELEASE_YEAR" 2021;
add_var "RAM" 512;
add_var "CPU_FREQ" 2450;
add_var "CPU_CHIPS" 1;
add_var "VHOST_RATIO" $(echo "4/128" | bc -l);

# gitlab uses this one
# double check these values with someone
elif [[ "$model_name" == *"AMD EPYC 7B12"* ]]; then
echo "Found EPYC 7B12 model"
add_var "MODEL_NAME" "EPYC_7B12";
Expand Down

0 comments on commit 4aa956e

Please sign in to comment.