-
Notifications
You must be signed in to change notification settings - Fork 311
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
Use GCC 13 in CUDA 12 conda builds. #4861
Use GCC 13 in CUDA 12 conda builds. #4861
Conversation
Auto-sync is disabled for draft pull requests in this repository. Workflows must be run manually. Contributors can view more details about this message here. |
Seeing test failures like this on CI: self = <cugraph_dgl.dataloading.sampler.HomogeneousSampleReader object at 0x7f773c4e6ef0>
def __next__(self) -> DGLSamplerOutput:
if self.__num_samples_remaining == 0:
# raw_sample_data is already a dict of tensors
self.__raw_sample_data, start_inclusive, end_inclusive = next(
self.__base_reader
)
self.__decoded_samples = self._decode_all(self.__raw_sample_data)
self.__num_samples_remaining = end_inclusive - start_inclusive + 1
self.__index = 0
> out = self.__decoded_samples[self.__index]
E IndexError: list index out of range Edit: Not seeing a clear relationship between the changes here and this error. So may be caused by something else? |
Appears restarting CI resolved the issue. No longer seeing the failure above. Perhaps it was something flaky. All CI jobs are passing |
/merge |
Description
conda-forge is using GCC 13 for CUDA 12 builds. This PR updates CUDA 12 conda builds to use GCC 13, for alignment.
These PRs should be merged in a specific order, see rapidsai/build-planning#129 for details.