Skip to content

Commit a79dc2b

Browse files
authored
Merge branch 'main' into raft-public-npy-helpers
2 parents 151c4e6 + 49c3037 commit a79dc2b

2 files changed

Lines changed: 7 additions & 2 deletions

File tree

.devcontainer/Dockerfile

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# SPDX-FileCopyrightText: Copyright (c) 2023-2025, NVIDIA CORPORATION. All rights reserved.
1+
# SPDX-FileCopyrightText: Copyright (c) 2023-2026, NVIDIA CORPORATION. All rights reserved.
22
# SPDX-License-Identifier: Apache-2.0
33

44
# syntax=docker/dockerfile:1.5
@@ -42,7 +42,8 @@ ENV HISTFILE="/home/coder/.cache/._bash_history"
4242
###
4343
# sccache configuration
4444
###
45-
ENV AWS_ROLE_ARN="arn:aws:iam::279114543810:role/nv-gha-token-sccache-devs"
45+
ENV AWS_IDP_URL="https://token.rapids.nvidia.com"
46+
ENV AWS_ROLE_ARN="arn:aws:iam::279114543810:role/rapids-token-sccache-devs"
4647
ENV SCCACHE_REGION="us-east-2"
4748
ENV SCCACHE_BUCKET="rapids-sccache-devs"
4849
ENV SCCACHE_S3_USE_PREPROCESSOR_CACHE_MODE=true

cpp/cmake/modules/ConfigureCUDA.cmake

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,10 @@ if(CUDA_LOG_COMPILE_TIME)
3737
list(APPEND CUVS_CUDA_FLAGS "--time=nvcc_compile_log.csv")
3838
endif()
3939

40+
# disable warpspeed scan / workaround for CCCL bug https://github.com/NVIDIA/cccl/issues/8838
41+
list(APPEND CUVS_CXX_FLAGS "-DCCCL_DISABLE_WARPSPEED_SCAN")
42+
list(APPEND CUVS_CUDA_FLAGS "-DCCCL_DISABLE_WARPSPEED_SCAN")
43+
4044
list(APPEND CUVS_CUDA_FLAGS --expt-extended-lambda --expt-relaxed-constexpr)
4145
list(APPEND CUVS_CXX_FLAGS "-DCUDA_API_PER_THREAD_DEFAULT_STREAM")
4246
list(APPEND CUVS_CUDA_FLAGS "-DCUDA_API_PER_THREAD_DEFAULT_STREAM")

0 commit comments

Comments
 (0)