diff options
| author | ruki <[email protected]> | 2022-02-07 07:11:25 +0800 |
|---|---|---|
| committer | GitHub <[email protected]> | 2022-02-07 07:11:25 +0800 |
| commit | e5739724f0bade30cb6c4afafd772c0ddea152d2 (patch) | |
| tree | ec3702017952e196c1362e2f50af29fb76e662c2 | |
| parent | ad4f55f7eb9c2e09c8900be24de530a0dede20bb (diff) | |
| parent | 2024305b6bb7c17738b800267ba54a6990e0f918 (diff) | |
Merge pull request #2028 from Shan-Zhou/patch-1
Update xmake.lua
| -rw-r--r-- | xmake/rules/cuda/gencodes/xmake.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/xmake/rules/cuda/gencodes/xmake.lua b/xmake/rules/cuda/gencodes/xmake.lua index f83ce4740..f4f51c06d 100644 --- a/xmake/rules/cuda/gencodes/xmake.lua +++ b/xmake/rules/cuda/gencodes/xmake.lua @@ -43,8 +43,8 @@ rule("cuda.gencodes") -- sm_20 and compute_20 is supported until CUDA 8 -- sm_30 and compute_30 is supported until CUDA 10 - local known_v_archs = hashset.of(20, 30, 32, 35, 37, 50, 52, 53, 60, 61, 62, 70, 72, 75, 80) - local known_r_archs = hashset.of(20, 30, 32, 35, 37, 50, 52, 53, 60, 61, 62, 70, 72, 75, 80) + local known_v_archs = hashset.of(20, 30, 32, 35, 37, 50, 52, 53, 60, 61, 62, 70, 72, 75, 80, 86, 87) + local known_r_archs = hashset.of(20, 30, 32, 35, 37, 50, 52, 53, 60, 61, 62, 70, 72, 75, 80, 86, 87) local function nf_cugencode(archs) if type(archs) ~= "string" then |
