Skip to content

Commit 6a4cd4a

Browse files
committed
Lower SLM to XeGPU - draft
Signed-off-by: dchigarev <[email protected]>
1 parent ddc3dd3 commit 6a4cd4a

File tree

6 files changed

+668
-91
lines changed

6 files changed

+668
-91
lines changed

CMakeLists.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -140,4 +140,7 @@ install(FILES
140140
${PROJECT_BINARY_DIR}/${PROJECT_NAME}ConfigVersion.cmake
141141
DESTINATION "lib/cmake/${PROJECT_NAME}"
142142
)
143+
144+
message("C++ Standard: ${CMAKE_CXX_STANDARD}")
145+
143146
################################################################################

include/gc/Utils/Log.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,7 @@ static void debug(const char *fileName, int lineNum, Args... args) {
6868
#define gcLogD(...) mlir::gc::log::debug(__FILE__, __LINE__, __VA_ARGS__)
6969
#define gcLogE(...) \
7070
mlir::gc::log::log(__FILE__, __LINE__, std::cerr, "ERROR", __VA_ARGS__)
71+
#define gcRunD(...) if (mlir::gc::log::isDebugEnabled(__FILE__)) {__VA_ARGS__;}
7172
#endif
7273
} // namespace mlir::gc::log
7374

0 commit comments

Comments
 (0)