CUTLASS 2.1 (#83)
CUTLASS 2.1 contributes: - BLAS-style host-side API added to CUTLASS Library - Planar Complex GEMM kernels targeting Volta and Turing Tensor Cores - Minor enhancements and bug fixes
This commit is contained in:
@@ -30,11 +30,11 @@
|
||||
|
||||
#include <iostream>
|
||||
|
||||
#define report(x) { std::cout << "\033[31m" << __FILE__ << ":" << __LINE__ << " " << x << "\033[0m" << std::endl; }
|
||||
//#define report(x) { std::cout << "\033[31m" << __FILE__ << ":" << __LINE__ << " " << x << "\033[0m" << std::endl; }
|
||||
//#define report(x) {}
|
||||
|
||||
// Enable/Disble Profiler debug prints
|
||||
#define DEBUG_PROFILER
|
||||
//#define DEBUG_PROFILER
|
||||
|
||||
//RED 31m // profiler prints debug messages in red
|
||||
//YELLOW 33m // ir prints debug messages in yellow
|
||||
@@ -43,7 +43,7 @@
|
||||
#define debugprof(...)
|
||||
#else
|
||||
#define debugprof(...) do { \
|
||||
printf("\033[31m[DEBUG PROF] %s:%d | ", __FILE__, __LINE__); \
|
||||
printf("\033[33m[DEBUG PROF] %s:%d | ", __FILE__, __LINE__); \
|
||||
printf(__VA_ARGS__); \
|
||||
printf("\033[0m\n"); \
|
||||
} while (0)
|
||||
|
||||
Reference in New Issue
Block a user