-
-
Notifications
You must be signed in to change notification settings - Fork 6k
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
[CI] check size of the wheels #4319
Conversation
@@ -3,7 +3,7 @@ | |||
|
|||
#################### BASE BUILD IMAGE #################### | |||
# prepare basic build environment | |||
FROM nvidia/cuda:12.1.0-devel-ubuntu22.04 AS dev | |||
FROM nvidia/cuda:12.4.1-devel-ubuntu22.04 AS dev |
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.
12.1.0 is EOL
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.
I think cuda has backward compatibility, compiling for 12.1 should work for 12.4 during runtime. But the reverse might not hold. If we compile the wheel with cuda 12.4, not sure if it works for 12.1 during runtime.
.buildkite/check-wheel-size.py
Outdated
f"Wheel {wheel_path} is too large ({wheel_size} bytes) " | ||
f"compare to the allowed size ({MAX_SIZE} bytes).") |
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.
print the value in MB, so that it looks more human-friendly?
Already catching it 🤦
|
To catch #4304 early.