-
Notifications
You must be signed in to change notification settings - Fork 109
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[iluvatar] add TG200 llama3_8B test case #780
Conversation
@@ -1,7 +1,7 @@ | |||
'''Cluster configs''' | |||
|
|||
# Hosts to run the benchmark. Each item is an IP address or a hostname. | |||
HOSTS = ["10.1.2.2", "10.1.2.3", "10.1.2.4"] | |||
HOSTS = ["localhost"] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
请不要修改示例 hosts
@@ -3,7 +3,7 @@ | |||
|
|||
# Set accelerator's vendor name, e.g. iluvatar, cambricon, kunlunxin, ascend, mthreads, metax and dcu. | |||
# We will run benchmarks in training/<vendor> | |||
VENDOR = "nvidia" | |||
VENDOR = "iluvatar" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
请不要修改示例 vendor
@@ -25,7 +25,8 @@ | |||
# " --device=/dev/infiniband --device=/dev/dri --device=/dev/mxcd --group-add video" | |||
# dcu: | |||
# "-v /opt/hyhal/:/opt/hyhal/ --device=/dev/kfd --device=/dev/dri/ --group-add video" | |||
ACCE_CONTAINER_OPT = " --gpus all" | |||
ACCE_CONTAINER_OPT = " --privileged --pid=host --ipc=host --cap-add=ALL -v /dev:/dev -v /lib/modules:/lib/modules -v /mnt:/mnt -v /usr/src:/usr/src -v /home:/home " |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
同上
@@ -42,7 +43,8 @@ | |||
# The path that flagperf deploy in the cluster. | |||
# Users must set FLAGPERF_PATH to where flagperf deploy | |||
# You can assume the preset "/home/FlagPerf/training" points to Null | |||
FLAGPERF_PATH = "/home/FlagPerf/training" | |||
FLAGPERF_PATH = "/home/zhiyuan/FlagPerf/training" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
同上
[iluvatar] add TG200 llama3_8B test case