Skip to content

Commit

Permalink
Disable cutlass, no longer works since .cpp renaming
Browse files Browse the repository at this point in the history
  • Loading branch information
Louis Stuber committed Mar 12, 2024
1 parent ba784a0 commit 6844c73
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/trans/gpu/algor/external/gemm/gemm_wrapper.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

#include "../growing_allocator.h"

constexpr bool use_cutlass = true;
constexpr bool use_cutlass = false;

#define CUDA_CHECK(e) \
{ \
Expand All @@ -43,8 +43,8 @@ constexpr bool use_cutlass = true;
{ \
cutlass::Status err = (e); \
if (err != cutlass::Status::kSuccess) { \
fprintf(stderr, "CUTLASS error: %s, line %d, %s: %i\n", __FILE__, \
__LINE__, #e, (int)err); \
fprintf(stderr, "CUTLASS error: %s, line %d, %s: %i %s\n", __FILE__, \
__LINE__, #e, (int)err, cutlass::cutlassGetStatusString(err)); \
exit(EXIT_FAILURE); \
} \
}
Expand Down

0 comments on commit 6844c73

Please sign in to comment.