-
Notifications
You must be signed in to change notification settings - Fork 57
RHOAIENG-7226 - Allow TestMnistRay to use GPU #176
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
RHOAIENG-7226 - Allow TestMnistRay to use GPU #176
Conversation
ed83453
to
4bb380f
Compare
"with open(outfile) as f:\n", | ||
" cluster_yaml = yaml.load(f, yaml.FullLoader)\n", | ||
"\n", | ||
"cluster_yaml[\"spec\"][\"workerGroupSpecs\"][0][\"template\"][\"spec\"][\"tolerations\"]=[{\"key\": \"nvidia.com/gpu\", \"value\": \"NONE\", \"effect\": \"NoSchedule\"}]\n", |
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.
Can you add a comment here explaining that this workaround is needed because ClusterConfiguration
cannot configure tolerations yet?
tests/odh/mnist_ray_test.go
Outdated
@@ -71,10 +80,17 @@ func TestMnistRay(t *testing.T) { | |||
|
|||
// Test configuration | |||
jupyterNotebookConfigMapFileName := "mnist_ray_mini.ipynb" | |||
notebook := ReadFile(test, "resources/mnist_ray_mini.ipynb") | |||
mnist := readMnistPy(test) | |||
if gpus_enabled == true { |
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.
if gpus_enabled == true { | |
if gpus_enabled { |
4bb380f
to
0394205
Compare
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: sutaakar The full list of commands accepted by this bot can be found here. The pull request process is described here
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
No description provided.