File tree 2 files changed +7
-7
lines changed 2 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -705,7 +705,7 @@ function(prune_pybind_h)
705
705
list (APPEND op_list "fusion_seqconv_eltadd_relu" )
706
706
list (APPEND op_list "fusion_seqpool_cvm_concat" )
707
707
list (APPEND op_list "fusion_gru" )
708
- list (APPEND op_list "fusion_seqexpand_concat_fc" )
708
+ # list(APPEND op_list "fusion_seqexpand_concat_fc")
709
709
list (APPEND op_list "fusion_repeated_fc_relu" )
710
710
list (APPEND op_list "fusion_squared_mat_sub" )
711
711
Original file line number Diff line number Diff line change @@ -658,25 +658,25 @@ if(WITH_GPU
658
658
AND NOT APPLE )
659
659
if (${CMAKE_CUDA_COMPILER_VERSION} GREATER_EQUAL 12.3)
660
660
foreach (arch ${NVCC_ARCH_BIN} )
661
- if (${arch} GREATER_EQUAL 90 )
662
- set (WITH_FLASHATTN_V3 OFF )
661
+ if (${arch} GREATER_EQUAL 900 )
662
+ set (WITH_FLASHATTN_V3 ON )
663
663
break ()
664
664
endif ()
665
665
endforeach ()
666
666
foreach (arch ${NVCC_ARCH_BIN} )
667
- if (${arch} GREATER_EQUAL 80 )
667
+ if (${arch} GREATER_EQUAL 800 )
668
668
include (external/flashattn)
669
669
list (APPEND third_party_deps extern_flashattn)
670
- set (WITH_FLASHATTN OFF )
670
+ set (WITH_FLASHATTN ON )
671
671
break ()
672
672
endif ()
673
673
endforeach ()
674
674
elseif (${CMAKE_CUDA_COMPILER_VERSION} GREATER_EQUAL 11.4)
675
675
foreach (arch ${NVCC_ARCH_BIN} )
676
- if (${arch} GREATER_EQUAL 80 )
676
+ if (${arch} GREATER_EQUAL 800 )
677
677
include (external/flashattn)
678
678
list (APPEND third_party_deps extern_flashattn)
679
- set (WITH_FLASHATTN OFF )
679
+ set (WITH_FLASHATTN ON )
680
680
break ()
681
681
endif ()
682
682
endforeach ()
You can’t perform that action at this time.
0 commit comments