Skip to content

Commit

Permalink
Merge pull request cupy#8940 from kmaehashi/use-c++17-jit
Browse files Browse the repository at this point in the history
Use C++17 in JIT compile
  • Loading branch information
asi1024 authored and chainer-ci committed Feb 11, 2025
1 parent 1e4a78b commit c7be16b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cupyx/jit/_compile.py
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ def __init__(self) -> None:
# whether to include cuda/barrier
self.include_cuda_barrier = False
# compiler options
self.options = ('-DCUPY_JIT_MODE', '--std=c++14',
self.options = ('-DCUPY_JIT_MODE', '--std=c++17',
# WAR: for compiling any CCCL header
'-DCUB_DISABLE_BF16_SUPPORT',)
# workaround for hipRTC: as of ROCm 4.1.0 hipRTC still does not
Expand Down

0 comments on commit c7be16b

Please sign in to comment.