We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a0e99a3 commit 4e8eb18Copy full SHA for 4e8eb18
csrc/activation.cu
@@ -15,7 +15,7 @@
15
*/
16
#include <flashinfer/activation.cuh>
17
18
-#include "aot_extension_utils.h"
+#include "pytorch_extension_utils.h"
19
20
using namespace flashinfer;
21
include/flashinfer/gemm/bmm_fp8.cuh
@@ -45,7 +45,7 @@
45
#else
46
#define FLASHINFER_CUBLAS_CALL(EXPR) \
47
{ \
48
- cudaError_t e = (EXPR); \
+ cublasStatus_t e = (EXPR); \
49
if (e != CUBLAS_STATUS_SUCCESS) { \
50
return e; \
51
} \
0 commit comments