Skip to content

Commit fec77d0

Browse files
authored
ci: remove redundant NUM_FRAGS_Z (#345)
Do not compile `NUM_FRAGS_Z=6` to reduce wheel size. Also revert #341 as they don't make effect.
1 parent 80a376f commit fec77d0

File tree

2 files changed

+0
-7
lines changed

2 files changed

+0
-7
lines changed

include/flashinfer/utils.cuh

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -75,9 +75,6 @@
7575
if (max_frags_z >= 8) { \
7676
constexpr size_t NUM_FRAGS_Z = 8; \
7777
__VA_ARGS__ \
78-
} else if (max_frags_z >= 6) { \
79-
constexpr size_t NUM_FRAGS_Z = 6; \
80-
__VA_ARGS__ \
8178
} else if (max_frags_z >= 4) { \
8279
constexpr size_t NUM_FRAGS_Z = 4; \
8380
__VA_ARGS__ \

python/setup.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -357,10 +357,6 @@ def __init__(self, *args, **kwargs) -> None:
357357
"1",
358358
"-Xfatbin",
359359
"-compress-all",
360-
"-Xcompiler",
361-
"-mcmodel=medium",
362-
"-Xcompiler",
363-
'"-Wl,--no-relax"',
364360
],
365361
},
366362
)

0 commit comments

Comments
 (0)