summaryrefslogtreecommitdiff
path: root/csrc
diff options
context:
space:
mode:
authorTim Dettmers <TimDettmers@users.noreply.github.com>2022-09-05 16:29:25 -0700
committerGitHub <noreply@github.com>2022-09-05 16:29:25 -0700
commitaca55881b9815a462142f42f3ff0dc917830d85c (patch)
tree75477acfbce2da2a753ee21d4cf0da64f3f50ea5 /csrc
parent92a3363096e10ad6a5c4e944af898bd1186d806a (diff)
parenteab4d8232d558f2e6bd7f7cc3d00e2e6e94f4e80 (diff)
Merge branch 'main' into remove_unused_code
Diffstat (limited to 'csrc')
-rw-r--r--csrc/ops.cu6
1 files changed, 5 insertions, 1 deletions
diff --git a/csrc/ops.cu b/csrc/ops.cu
index c0ec3cb..e49c94b 100644
--- a/csrc/ops.cu
+++ b/csrc/ops.cu
@@ -371,7 +371,11 @@ template void transform<int32_t, COL32, ROW, false, 32>(cublasLtHandle_t ltHandl
template <int FORMATB, int DTYPE_OUT, int SCALE_ROWS> int igemmlt(cublasLtHandle_t ltHandle, int m, int n, int k, const int8_t *A, const int8_t *B, void *C, float *row_scale, int lda, int ldb, int ldc)
{
#ifdef NO_CUBLASLT
- printf("ERROR: Your GPU does not support Int8 Matmul!");
+ cout << "" << endl;
+ cout << "=============================================" << endl;
+ cout << "ERROR: Your GPU does not support Int8 Matmul!" << endl;
+ cout << "=============================================" << endl;
+ cout << "" << endl;
assert(false);
return 0;