Skip to content

Commit 162e779

Browse files
author
Kent Knox
committed
Merge pull request #264 from kknox/fix-warnings
Fix issue affecting AMD & Intel CPU devices; lower warnings :shipit:
2 parents 7911b0e + 96cae21 commit 162e779

File tree

70 files changed

+290
-260
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

70 files changed

+290
-260
lines changed

.gitignore

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,5 @@
2424
# vim temp files
2525
.*.swp
2626

27-
src/build/
28-
2927
# python compiled files
3028
*.pyc
31-

src/CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -266,7 +266,7 @@ if( BUILD_TEST )
266266
endif( )
267267

268268
# This will define OPENCL_FOUND
269-
find_package( OpenCL )
269+
find_package( OpenCL ${OPENCL_VERSION} )
270270

271271
# Find Boost on the system, and configure the type of boost build we want
272272
set( Boost_USE_MULTITHREADED ON )
@@ -288,7 +288,7 @@ endif()
288288

289289
# Turn on maximum compiler verbosity
290290
if(CMAKE_COMPILER_IS_GNUCXX)
291-
add_definitions(-pedantic -Wall -Wextra
291+
add_definitions(# -pedantic -Wall -Wextra
292292
-D_POSIX_C_SOURCE=199309L -D_XOPEN_SOURCE=500
293293
)
294294
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -std=c99 -Wstrict-prototypes" CACHE STRING

src/FindOpenCL.cmake

Lines changed: 102 additions & 41 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# ########################################################################
2-
# Copyright 2013 Advanced Micro Devices, Inc.
2+
# Copyright 2015 Advanced Micro Devices, Inc.
33
#
44
# Licensed under the Apache License, Version 2.0 (the "License");
55
# you may not use this file except in compliance with the License.
@@ -14,7 +14,6 @@
1414
# limitations under the License.
1515
# ########################################################################
1616

17-
1817
# Locate an OpenCL implementation.
1918
# Currently supports AMD APP SDK (http://developer.amd.com/sdks/AMDAPPSDK/Pages/default.aspx/)
2019
#
@@ -46,60 +45,122 @@
4645
# target_link_libraries(foo ${OPENCL_LIBRARIES})
4746
#
4847
#-----------------------
48+
include( CheckSymbolExists )
49+
include( CMakePushCheckState )
50+
51+
if( DEFINED OPENCL_ROOT OR DEFINED ENV{OPENCL_ROOT})
52+
message( STATUS "Defined OPENCL_ROOT: ${OPENCL_ROOT}, ENV{OPENCL_ROOT}: $ENV{OPENCL_ROOT}" )
53+
endif( )
4954

5055
find_path(OPENCL_INCLUDE_DIRS
51-
NAMES OpenCL/cl.h CL/cl.h
52-
HINTS
53-
${OPENCL_ROOT}/include
54-
$ENV{AMDAPPSDKROOT}/include
55-
$ENV{CUDA_PATH}/include
56-
PATHS
57-
/usr/include
58-
/usr/local/include
59-
/usr/local/cuda/include
60-
/opt/cuda/include
61-
DOC "OpenCL header file path"
56+
NAMES OpenCL/cl.h CL/cl.h
57+
HINTS
58+
${OPENCL_ROOT}/include
59+
$ENV{OPENCL_ROOT}/include
60+
$ENV{AMDAPPSDKROOT}/include
61+
$ENV{CUDA_PATH}/include
62+
PATHS
63+
/usr/include
64+
/usr/local/include
65+
/usr/local/cuda/include
66+
DOC "OpenCL header file path"
6267
)
6368
mark_as_advanced( OPENCL_INCLUDE_DIRS )
69+
message( STATUS "OPENCL_INCLUDE_DIRS: ${OPENCL_INCLUDE_DIRS}" )
70+
71+
set( OpenCL_VERSION "0.0" )
72+
73+
cmake_push_check_state( RESET )
74+
set( CMAKE_REQUIRED_INCLUDES "${OPENCL_INCLUDE_DIRS}" )
75+
76+
# Bug in check_symbol_exists prevents us from specifying a list of files, so we loop
77+
# Only 1 of these files will exist on a system, so the other file will not clobber the output variable
78+
if( APPLE )
79+
set( CL_HEADER_FILE "OpenCL/cl.h" )
80+
else( )
81+
set( CL_HEADER_FILE "CL/cl.h" )
82+
endif( )
83+
84+
check_symbol_exists( CL_VERSION_2_0 ${CL_HEADER_FILE} HAVE_CL_2_0 )
85+
check_symbol_exists( CL_VERSION_1_2 ${CL_HEADER_FILE} HAVE_CL_1_2 )
86+
check_symbol_exists( CL_VERSION_1_1 ${CL_HEADER_FILE} HAVE_CL_1_1 )
87+
# message( STATUS "HAVE_CL_2_0: ${HAVE_CL_2_0}" )
88+
# message( STATUS "HAVE_CL_1_2: ${HAVE_CL_1_2}" )
89+
# message( STATUS "HAVE_CL_1_1: ${HAVE_CL_1_1}" )
90+
91+
# set OpenCL_VERSION to the highest detected version
92+
if( HAVE_CL_2_0 )
93+
set( OpenCL_VERSION "2.0" )
94+
elseif( HAVE_CL_1_2 )
95+
set( OpenCL_VERSION "1.2" )
96+
elseif( HAVE_CL_1_1 )
97+
set( OpenCL_VERSION "1.1" )
98+
endif( )
99+
100+
cmake_pop_check_state( )
64101

65102
# Search for 64bit libs if FIND_LIBRARY_USE_LIB64_PATHS is set to true in the global environment, 32bit libs else
66103
get_property( LIB64 GLOBAL PROPERTY FIND_LIBRARY_USE_LIB64_PATHS )
104+
if( LIB64 )
105+
message( STATUS "FindOpenCL searching for 64-bit libraries" )
106+
else( )
107+
message( STATUS "FindOpenCL searching for 32-bit libraries" )
108+
endif( )
67109

68110
if( LIB64 )
69-
find_library( OPENCL_LIBRARIES
70-
NAMES OpenCL
71-
HINTS
72-
${OPENCL_ROOT}/lib
73-
$ENV{AMDAPPSDKROOT}/lib
74-
$ENV{CUDA_PATH}/lib
75-
DOC "OpenCL dynamic library path"
76-
PATH_SUFFIXES x86_64 x64 x86_64/sdk
77-
PATHS
78-
/usr/lib
79-
/usr/local/cuda/lib
80-
/opt/cuda/lib
81-
)
111+
find_library( OPENCL_LIBRARIES
112+
NAMES OpenCL
113+
HINTS
114+
${OPENCL_ROOT}/lib
115+
$ENV{OPENCL_ROOT}/lib
116+
$ENV{AMDAPPSDKROOT}/lib
117+
$ENV{CUDA_PATH}/lib
118+
DOC "OpenCL dynamic library path"
119+
PATH_SUFFIXES x86_64 x64 x86_64/sdk
120+
PATHS
121+
/usr/lib
122+
/usr/local/cuda/lib
123+
)
82124
else( )
83-
find_library( OPENCL_LIBRARIES
84-
NAMES OpenCL
85-
HINTS
86-
${OPENCL_ROOT}/lib
87-
$ENV{AMDAPPSDKROOT}/lib
88-
$ENV{CUDA_PATH}/lib
89-
DOC "OpenCL dynamic library path"
90-
PATH_SUFFIXES x86 Win32
91-
92-
PATHS
93-
/usr/lib
94-
/usr/local/cuda/lib
95-
/opt/cuda/lib
96-
)
125+
find_library( OPENCL_LIBRARIES
126+
NAMES OpenCL
127+
HINTS
128+
${OPENCL_ROOT}/lib
129+
$ENV{OPENCL_ROOT}/lib
130+
$ENV{AMDAPPSDKROOT}/lib
131+
$ENV{CUDA_PATH}/lib
132+
DOC "OpenCL dynamic library path"
133+
PATH_SUFFIXES x86 Win32
134+
PATHS
135+
/usr/lib
136+
/usr/local/cuda/lib
137+
)
97138
endif( )
98139
mark_as_advanced( OPENCL_LIBRARIES )
99140

141+
# message( STATUS "OpenCL_FIND_VERSION: ${OpenCL_FIND_VERSION}" )
142+
if( OpenCL_VERSION VERSION_LESS OpenCL_FIND_VERSION )
143+
message( FATAL_ERROR "Requested OpenCL version: ${OpenCL_FIND_VERSION}, Found OpenCL version: ${OpenCL_VERSION}" )
144+
endif( )
145+
146+
# If we asked for OpenCL 1.2, and we found a version installed greater than that, pass the 'use deprecated' flag
147+
if( (OpenCL_FIND_VERSION VERSION_LESS "2.0") AND (OpenCL_VERSION VERSION_GREATER OpenCL_FIND_VERSION) )
148+
add_definitions( -DCL_USE_DEPRECATED_OPENCL_2_0_APIS )
149+
150+
# If we asked for OpenCL 1.1, and we found a version installed greater than that, pass the 'use deprecated' flag
151+
if( (OpenCL_FIND_VERSION VERSION_LESS "1.2") AND (OpenCL_VERSION VERSION_GREATER OpenCL_FIND_VERSION) )
152+
add_definitions( -DCL_USE_DEPRECATED_OPENCL_1_1_APIS )
153+
endif( )
154+
endif( )
155+
100156
include( FindPackageHandleStandardArgs )
101-
FIND_PACKAGE_HANDLE_STANDARD_ARGS( OPENCL DEFAULT_MSG OPENCL_LIBRARIES OPENCL_INCLUDE_DIRS )
157+
FIND_PACKAGE_HANDLE_STANDARD_ARGS( OPENCL
158+
REQUIRED_VARS OPENCL_LIBRARIES OPENCL_INCLUDE_DIRS
159+
VERSION_VAR OpenCL_VERSION
160+
)
102161

103162
if( NOT OPENCL_FOUND )
104163
message( STATUS "FindOpenCL looked for libraries named: OpenCL" )
164+
else( )
165+
message(STATUS "FindOpenCL ${OPENCL_LIBRARIES}, ${OPENCL_INCLUDE_DIRS}")
105166
endif()

src/library/CMakeLists.txt

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
# ########################################################################
22
# Copyright 2013 Advanced Micro Devices, Inc.
3-
#
3+
#
44
# Licensed under the Apache License, Version 2.0 (the "License");
55
# you may not use this file except in compliance with the License.
66
# You may obtain a copy of the License at
7-
#
7+
#
88
# http://www.apache.org/licenses/LICENSE-2.0
9-
#
9+
#
1010
# Unless required by applicable law or agreed to in writing, software
1111
# distributed under the License is distributed on an "AS IS" BASIS,
1212
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
@@ -101,7 +101,7 @@ set_property( CACHE AUTOGEMM_ARCHITECTURE PROPERTY STRINGS "Hawaii" "Fiji" )
101101
# opencl compiler version
102102
#set( PRECOMPILE_GEMM_OPENCL_VERSION "2.0" CACHE STRING "OpenCL compiler version supported by device driver." )
103103
#set_property( CACHE PRECOMPILE_GEMM_OPENCL_VERSION PROPERTY STRINGS 2.0 1.2 1.1 )
104-
#message( STATUS "AutoGemm PreCompiler will use OpenCL ${PRECOMPILE_GEMM_OPENCL_VERSION} compiler." )
104+
#message( STATUS "AutoGemm PreCompiler will use OpenCL ${PRECOMPILE_GEMM_OPENCL_VERSION} compiler." )
105105

106106
# PreCompile precision selected?
107107
set( PRECOMPILE_GEMM_PRECISION_SELECTED OFF)
@@ -556,8 +556,8 @@ set(SRC_CL_TEMPLATES_GEN
556556
dtrsm_gpu192.clHawaii_64.bin.cl
557557
dgemm_hawaiiChannelConfilct.clHawaii_64.bin.cl
558558
dgemm_hawaiiSplitKernel.clHawaii_64.bin.cl
559-
sgemm_hawaiiSplitKernel.clHawaii_64.bin.cl
560-
sgemm_hawaiiSplitKernel.clBonaire_64.bin.cl
559+
sgemm_hawaiiSplitKernel.clHawaii_64.bin.cl
560+
sgemm_hawaiiSplitKernel.clBonaire_64.bin.cl
561561
dgemm_hawai.clTahiti_64.bin.cl
562562
dtrsm_gpu.clTahiti_64.bin.cl
563563
dgemm_gcn_SmallMatrices.clHawaii_64.bin.cl
@@ -630,7 +630,7 @@ set(CLBLAS_SOURCES
630630
)
631631
set(GLOBAL_HEADERS
632632
${clBLAS_SOURCE_DIR}/clBLAS.h
633-
${clBLAS_SOURCE_DIR}/clBLAS-complex.h
633+
${clBLAS_SOURCE_DIR}/clBLAS-complex.h
634634
${clBLAS_SOURCE_DIR}/include/clkern.h
635635
${clBLAS_SOURCE_DIR}/include/cltypes.h
636636
${clBLAS_SOURCE_DIR}/include/dblock_kgen.h
@@ -675,7 +675,7 @@ if( BLAS_DUMP_CLBLAS_KERNELS )
675675
add_definitions( -DDUMP_CLBLAS_KERNELS )
676676
endif()
677677

678-
option( BLAS_KEEP_KERNEL_SOURCES "Prevent the library from stripping source from kernels" OFF )
678+
option( BLAS_KEEP_KERNEL_SOURCES "Prevent the library from stripping source from kernels" ON )
679679
if( BLAS_KEEP_KERNEL_SOURCES )
680680
add_definitions( -DKEEP_CLBLAS_KERNEL_SOURCES )
681681
endif()
@@ -725,7 +725,7 @@ add_custom_command(TARGET OCLBinaryGenerator_GEN
725725
PRE_BUILD
726726
COMMAND ${CMAKE_COMMAND} -DOCLBinaryGeneratorBinaryDir=${OCLBinaryGeneratorBinaryDir} -DSOURCE_DIR=${CMAKE_SOURCE_DIR} -DBINARY_DIR=${CMAKE_BINARY_DIR} -DOCL_COMPILER_FLAGS=${OCL_COMPILER_FLAGS}
727727
-P "${CMAKE_SOURCE_DIR}/library/OCLBinaryGenerator.cmake"
728-
)
728+
)
729729
add_dependencies( OCLBinaryGenerator_GEN OCLBinaryGenerator )
730730

731731
endif()
@@ -761,7 +761,7 @@ message(STATUS "OPENCL_VERSION = ${OPENCL_VERSION}")
761761
# list(GET OPENCL_FLAGS_REPLACED 1 OPENCL_FLAGS_REPLACED_1)#flags for TAHITI
762762
# list(GET OPENCL_FLAGS_REPLACED 3 OPENCL_FLAGS_REPLACED_3)#flags for HAWAII 1
763763
# list(GET OPENCL_FLAGS_REPLACED 5 OPENCL_FLAGS_REPLACED_5)#flags for HAWAII 2
764-
# list(GET OPENCL_FLAGS_REPLACED 7 OPENCL_FLAGS_REPLACED_7)#flags for BONAIRE
764+
# list(GET OPENCL_FLAGS_REPLACED 7 OPENCL_FLAGS_REPLACED_7)#flags for BONAIRE
765765
# else()
766766
# MESSAGE(STATUS "flags.txt not found. will use the default flags.")
767767
# set (LOAD_CL_FLAGS FALSE)
@@ -789,19 +789,19 @@ if (LOAD_CL_FLAGS)
789789
add_custom_target( GEN_CLBIN )
790790
add_custom_command(TARGET GEN_CLBIN
791791
PRE_BUILD
792-
COMMAND ${CMAKE_COMMAND} -DbingenBinaryDir=${bingenBinaryDir} -DCLTEMPLATE_PATH="${CMAKE_SOURCE_DIR}/library/blas/gens/clTemplates"
793-
-DLOAD_CL_FLAGS=${LOAD_CL_FLAGS} -DTAHITI_FLAG=${OPENCL_FLAGS_REPLACED_1} -DHAWAII1_FLAG=${OPENCL_FLAGS_REPLACED_3} -DHAWAII2_FLAG=${OPENCL_FLAGS_REPLACED_5} -DBONAIRE_FLAG=${OPENCL_FLAGS_REPLACED_7}
794-
-DENV_PATH=${ENV_PATH} -DOPENCL_OFFLINE_BUILD_HAWAII_KERNEL=${OPENCL_OFFLINE_BUILD_HAWAII_KERNEL} -DOPENCL_OFFLINE_BUILD_BONAIRE_KERNEL=${OPENCL_OFFLINE_BUILD_BONAIRE_KERNEL}
792+
COMMAND ${CMAKE_COMMAND} -DbingenBinaryDir=${bingenBinaryDir} -DCLTEMPLATE_PATH="${CMAKE_SOURCE_DIR}/library/blas/gens/clTemplates"
793+
-DLOAD_CL_FLAGS=${LOAD_CL_FLAGS} -DTAHITI_FLAG=${OPENCL_FLAGS_REPLACED_1} -DHAWAII1_FLAG=${OPENCL_FLAGS_REPLACED_3} -DHAWAII2_FLAG=${OPENCL_FLAGS_REPLACED_5} -DBONAIRE_FLAG=${OPENCL_FLAGS_REPLACED_7}
794+
-DENV_PATH=${ENV_PATH} -DOPENCL_OFFLINE_BUILD_HAWAII_KERNEL=${OPENCL_OFFLINE_BUILD_HAWAII_KERNEL} -DOPENCL_OFFLINE_BUILD_BONAIRE_KERNEL=${OPENCL_OFFLINE_BUILD_BONAIRE_KERNEL}
795795
-DOPENCL_OFFLINE_BUILD_TAHITI_KERNEL=${OPENCL_OFFLINE_BUILD_TAHITI_KERNEL}
796796
-P "${CMAKE_SOURCE_DIR}/library/bingen.cmake"
797-
)
797+
)
798798
add_dependencies( GEN_CLBIN bingen )
799799
else()
800800
add_custom_target( GEN_CLBIN )
801801
add_custom_command(TARGET GEN_CLBIN
802802
PRE_BUILD
803-
COMMAND ${CMAKE_COMMAND} -DbingenBinaryDir=${bingenBinaryDir} -DCLTEMPLATE_PATH="${CMAKE_SOURCE_DIR}/library/blas/gens/clTemplates"
804-
-DOPENCL_OFFLINE_BUILD_HAWAII_KERNEL=${OPENCL_OFFLINE_BUILD_HAWAII_KERNEL} -DOPENCL_OFFLINE_BUILD_BONAIRE_KERNEL=${OPENCL_OFFLINE_BUILD_BONAIRE_KERNEL}
803+
COMMAND ${CMAKE_COMMAND} -DbingenBinaryDir=${bingenBinaryDir} -DCLTEMPLATE_PATH="${CMAKE_SOURCE_DIR}/library/blas/gens/clTemplates"
804+
-DOPENCL_OFFLINE_BUILD_HAWAII_KERNEL=${OPENCL_OFFLINE_BUILD_HAWAII_KERNEL} -DOPENCL_OFFLINE_BUILD_BONAIRE_KERNEL=${OPENCL_OFFLINE_BUILD_BONAIRE_KERNEL}
805805
-DOPENCL_OFFLINE_BUILD_TAHITI_KERNEL=${OPENCL_OFFLINE_BUILD_TAHITI_KERNEL}
806806
-P "${CMAKE_SOURCE_DIR}/library/bingen.cmake"
807807
)

src/library/blas/AutoGemm/Includes.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ def addKernel(self, kernel):
113113
self.cppStr += "unsigned char *%s_bin = 0;\n" % kernelName
114114
self.cppStr += " size_t %s_binSize = 0;\n" % kernelName
115115
self.cppStr += "#else\n"
116-
self.cppStr += "#pragma message(\"AutoGemmKernelBinaries.cpp: %s was pre-compiled.\")\n" % kernelName
116+
# self.cppStr += "#pragma message(\"AutoGemmKernelBinaries.cpp: %s was pre-compiled.\")\n" % kernelName
117117
self.cppStr += "#endif\n"
118118

119119
kernelName = kernel.getRowName()
@@ -123,7 +123,7 @@ def addKernel(self, kernel):
123123
self.cppStr += "unsigned char *%s_bin = 0;\n" % kernelName
124124
self.cppStr += " size_t %s_binSize = 0;\n" % kernelName
125125
self.cppStr += "#else\n"
126-
self.cppStr += "#pragma message(\"AutoGemmKernelBinaries.cpp: %s was pre-compiled.\")\n" % kernelName
126+
# self.cppStr += "#pragma message(\"AutoGemmKernelBinaries.cpp: %s was pre-compiled.\")\n" % kernelName
127127
self.cppStr += "#endif\n"
128128

129129
kernelName = kernel.getColName()
@@ -133,7 +133,7 @@ def addKernel(self, kernel):
133133
self.cppStr += "unsigned char *%s_bin = 0;\n" % kernelName
134134
self.cppStr += " size_t %s_binSize = 0;\n" % kernelName
135135
self.cppStr += "#else\n"
136-
self.cppStr += "#pragma message(\"AutoGemmKernelBinaries.cpp: %s was pre-compiled.\")\n" % kernelName
136+
# self.cppStr += "#pragma message(\"AutoGemmKernelBinaries.cpp: %s was pre-compiled.\")\n" % kernelName
137137
self.cppStr += "#endif\n"
138138

139139
kernelName = kernel.getCornerName()
@@ -143,7 +143,7 @@ def addKernel(self, kernel):
143143
self.cppStr += "unsigned char *%s_bin = 0;\n" % kernelName
144144
self.cppStr += " size_t %s_binSize = 0;\n" % kernelName
145145
self.cppStr += "#else\n"
146-
self.cppStr += "#pragma message(\"AutoGemmKernelBinaries.cpp: %s was pre-compiled.\")\n" % kernelName
146+
# self.cppStr += "#pragma message(\"AutoGemmKernelBinaries.cpp: %s was pre-compiled.\")\n" % kernelName
147147
self.cppStr += "#endif\n"
148148

149149
self.incFile.write( self.incStr )

src/library/blas/AutoGemm/KernelOpenCL.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -482,7 +482,7 @@ def writeOpenCLKernelToFile(kernel):
482482
kernelFile.write("\";\n")
483483
kernelFile.write("\n")
484484
kernelFile.write("#else\n")
485-
kernelFile.write("#pragma message(\"AutoGemmKernelSources.cpp: %s was overriden by user kernel.\")\n" % kernel.getName() )
485+
# kernelFile.write("#pragma message(\"AutoGemmKernelSources.cpp: %s was overriden by user kernel.\")\n" % kernel.getName() )
486486
kernelFile.write("#endif\n")
487487
kernelFile.close()
488488

src/library/blas/AutoGemm/UserGemmKernelSources/dgemm_Col_NN_B0_MX048_NX048_KX08_src.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
#ifndef KERNEL_DGEMM_COL_NN_B0_MX048_NX048_KX08_SRC_H
66
#define KERNEL_DGEMM_COL_NN_B0_MX048_NX048_KX08_SRC_H
7-
#pragma message("AutoGemm's dgemm_Col_NN_B0_MX048_NX048_KX08_src overriden by user.")
7+
// #pragma message("AutoGemm's dgemm_Col_NN_B0_MX048_NX048_KX08_src overriden by user.")
88

99
#ifndef STRINGIFY
1010
#define STRINGIFY(S) STRINGIFY2(S)

src/library/blas/AutoGemm/UserGemmKernelSources/dgemm_Col_NN_B1_MX048_NX048_KX08_src.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
#ifndef KERNEL_DGEMM_COL_NN_B1_MX048_NX048_KX08_SRC_H
66
#define KERNEL_DGEMM_COL_NN_B1_MX048_NX048_KX08_SRC_H
7-
#pragma message("AutoGemm's dgemm_Col_NN_B1_MX048_NX048_KX08_src overriden by user.")
7+
// #pragma message("AutoGemm's dgemm_Col_NN_B1_MX048_NX048_KX08_src overriden by user.")
88

99
#ifndef STRINGIFY
1010
#define STRINGIFY(S) STRINGIFY2(S)

src/library/blas/AutoGemm/UserGemmKernelSources/dgemm_Col_NT_B0_MX048_NX048_KX08_src.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
#ifndef KERNEL_DGEMM_COL_NT_B0_MX048_NX048_KX08_SRC_H
66
#define KERNEL_DGEMM_COL_NT_B0_MX048_NX048_KX08_SRC_H
7-
#pragma message("AutoGemm's dgemm_Col_NT_B0_MX048_NX048_KX08_src overriden by user.")
7+
// #pragma message("AutoGemm's dgemm_Col_NT_B0_MX048_NX048_KX08_src overriden by user.")
88

99
#ifndef STRINGIFY
1010
#define STRINGIFY(S) STRINGIFY2(S)

src/library/blas/AutoGemm/UserGemmKernelSources/dgemm_Col_NT_B1_MX048_NX048_KX08_src.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
#ifndef KERNEL_DGEMM_COL_NT_B1_MX048_NX048_KX08_SRC_H
66
#define KERNEL_DGEMM_COL_NT_B1_MX048_NX048_KX08_SRC_H
7-
#pragma message("AutoGemm's dgemm_Col_NT_B1_MX048_NX048_KX08_src overriden by user.")
7+
// #pragma message("AutoGemm's dgemm_Col_NT_B1_MX048_NX048_KX08_src overriden by user.")
88

99
#ifndef STRINGIFY
1010
#define STRINGIFY(S) STRINGIFY2(S)

0 commit comments

Comments
 (0)