Skip to content

Commit 8f1c167

Browse files
committed
Added simple Intel support for tests
Added -g flag to the compile options to include debug information Some tests are not fixed yet, more changes are coming However, this version should be usable okay-ish
1 parent 62c93e6 commit 8f1c167

9 files changed

+59
-11
lines changed

src/CMakeLists.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -141,10 +141,10 @@ elseif( CMAKE_COMPILER_IS_GNUCC )
141141
message( STATUS "Detected GNU compiler collection" )
142142

143143
if( clSPARSE_BUILD64 )
144-
set( CMAKE_CXX_FLAGS "-m64 ${CMAKE_CXX_FLAGS}" )
144+
set( CMAKE_CXX_FLAGS "-g -m64 ${CMAKE_CXX_FLAGS}" )
145145
set( CMAKE_C_FLAGS "-m64 ${CMAKE_C_FLAGS}" )
146146
else( )
147-
set( CMAKE_CXX_FLAGS "-m32 ${CMAKE_CXX_FLAGS}" )
147+
set( CMAKE_CXX_FLAGS "-g -m32 ${CMAKE_CXX_FLAGS}" )
148148
set( CMAKE_C_FLAGS "-m32 ${CMAKE_C_FLAGS}" )
149149
endif( )
150150
else( )

src/tests/resources/opencl_utils.cpp

+10-2
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ cl::Device getDevice( cl_platform_type pID, cl_uint dID )
8282

8383
std::map<std::string, int> pNames;
8484

85-
//search for AMD or NVIDIA
85+
//search for AMD, NVIDIA or INTEL
8686
cl_int pIndex = -1;
8787
for( const auto& p : platforms )
8888
{
@@ -96,13 +96,21 @@ cl::Device getDevice( cl_platform_type pID, cl_uint dID )
9696

9797
//get index of desired platform;
9898
std::string desired_platform_name;
99+
int device_type;
99100
if( pID == AMD )
100101
{
101102
desired_platform_name = amd_platform_str;
103+
device_type = CL_DEVICE_TYPE_GPU;
102104
}
103105
else if( pID == NVIDIA )
104106
{
105107
desired_platform_name = nvidia_platform_str;
108+
device_type = CL_DEVICE_TYPE_GPU;
109+
}
110+
else if( pID == INTEL )
111+
{
112+
desired_platform_name = intel_platform_str;
113+
device_type = CL_DEVICE_TYPE_CPU;
106114
}
107115
else
108116
{
@@ -122,7 +130,7 @@ cl::Device getDevice( cl_platform_type pID, cl_uint dID )
122130
}
123131

124132
std::vector<cl::Device> devices;
125-
platforms[ pIndex ].getDevices( CL_DEVICE_TYPE_GPU, &devices );
133+
platforms[ pIndex ].getDevices( device_type, &devices );
126134

127135
assert( dID < devices.size( ) );
128136

src/tests/resources/opencl_utils.h

+3-1
Original file line numberDiff line numberDiff line change
@@ -30,11 +30,13 @@
3030

3131
typedef enum _platform {
3232
AMD = 0,
33-
NVIDIA
33+
NVIDIA = 1,
34+
INTEL = 2,
3435
} cl_platform_type;
3536

3637
const static std::string amd_platform_str = "AMD";
3738
const static std::string nvidia_platform_str = "NVIDIA";
39+
const static std::string intel_platform_str = "Intel(R)";
3840

3941
cl_int getPlatforms( cl_platform_id **platforms, cl_uint* num_platforms );
4042

src/tests/test-blas1.cpp

+5-1
Original file line numberDiff line numberDiff line change
@@ -623,7 +623,7 @@ int main (int argc, char* argv[])
623623
desc.add_options()
624624
("help,h", "Produce this message.")
625625
("platform,l", po::value(&platform)->default_value("AMD"),
626-
"OpenCL platform: AMD or NVIDIA.")
626+
"OpenCL platform: AMD, NVIDIA or INTEL.")
627627
("device,d", po::value(&dID)->default_value(0),
628628
"Device id within platform.")
629629
("size,s",po::value(&size)->default_value(1024),
@@ -669,6 +669,10 @@ int main (int argc, char* argv[])
669669
{
670670
pID = NVIDIA;
671671
}
672+
else if ("INTEL" == platform)
673+
{
674+
pID = INTEL;
675+
}
672676
else
673677
{
674678

src/tests/test-blas2.cpp

+5-1
Original file line numberDiff line numberDiff line change
@@ -392,7 +392,7 @@ int main (int argc, char* argv[])
392392
("help,h", "Produce this message.")
393393
("path,p", po::value(&path)->required(), "Path to matrix in mtx format.")
394394
("platform,l", po::value(&platform)->default_value("AMD"),
395-
"OpenCL platform: AMD or NVIDIA.")
395+
"OpenCL platform: AMD, NVIDIA or INTEL.")
396396
("device,d", po::value(&dID)->default_value(0),
397397
"Device id within platform.")
398398
("alpha,a", po::value(&alpha)->default_value(1.0),
@@ -439,6 +439,10 @@ int main (int argc, char* argv[])
439439
{
440440
pID = NVIDIA;
441441
}
442+
else if ("INTEL" == platform)
443+
{
444+
pID = INTEL;
445+
}
442446
else
443447
{
444448

src/tests/test-blas3.cpp

+5-1
Original file line numberDiff line numberDiff line change
@@ -657,7 +657,7 @@ int main (int argc, char* argv[])
657657
("path,p", po::value(&path)->required(), "Path to matrix in mtx format.")
658658
("function,f", po::value<std::string>(&function)->default_value("SpMdM"), "Sparse functions to test. Options: SpMdM, SpMSpM, All")
659659
("platform,l", po::value(&platform)->default_value("AMD"),
660-
"OpenCL platform: AMD or NVIDIA.")
660+
"OpenCL platform: AMD, NVIDIA or INTEL.")
661661
("device,d", po::value(&dID)->default_value(0),
662662
"Device id within platform.")
663663
("alpha,a", po::value(&alpha)->default_value(1.0),
@@ -707,6 +707,10 @@ int main (int argc, char* argv[])
707707
{
708708
pID = NVIDIA;
709709
}
710+
else if ("INTEL" == platform)
711+
{
712+
pID = INTEL;
713+
}
710714
else
711715
{
712716
std::cout << "The platform option is missing or is ill defined!\n";

src/tests/test-clsparse-utils.cpp

+19-1
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ TEST( clsparseInit, control )
9797

9898
}
9999

100-
TEST( clsparseInit, cpp_interface )
100+
TEST( pID, clsparseInit, cpp_interface )
101101
{
102102
// Init OpenCL environment;
103103
cl_int cl_status;
@@ -128,6 +128,24 @@ TEST( clsparseInit, cpp_interface )
128128

129129
// Get device from platform
130130
std::vector<cl::Device> devices;
131+
132+
int device_type;
133+
if( pID == AMD )
134+
{
135+
device_type = CL_DEVICE_TYPE_GPU;
136+
}
137+
else if( pID == NVIDIA )
138+
{
139+
device_type = CL_DEVICE_TYPE_GPU;
140+
}
141+
else if( pID == INTEL )
142+
{
143+
device_type = CL_DEVICE_TYPE_CPU;
144+
}
145+
else
146+
{
147+
throw std::string( "No such platform pID: " + std::to_string( pID ) );
148+
}
131149
cl_status = platform.getDevices( CL_DEVICE_TYPE_GPU, &devices );
132150

133151
if( cl_status != CL_SUCCESS )

src/tests/test-conversion.cpp

+5-1
Original file line numberDiff line numberDiff line change
@@ -740,7 +740,7 @@ int main (int argc, char* argv[])
740740
("help,h", "Produce this message.")
741741
("path,p", po::value(&path)->required(), "Path to matrix in mtx format.")
742742
("platform,l", po::value(&platform)->default_value("AMD"),
743-
"OpenCL platform: AMD or NVIDIA.")
743+
"OpenCL platform: AMD, NVIDIA or INTEL.")
744744
("device,d", po::value(&dID)->default_value(0),
745745
"Device id within platform.")
746746
("no_zeroes,z", po::bool_switch()->default_value(false),
@@ -781,6 +781,10 @@ int main (int argc, char* argv[])
781781
{
782782
pID = NVIDIA;
783783
}
784+
else if ("INTEL" == platform)
785+
{
786+
pID = INTEL;
787+
}
784788
else
785789
{
786790

src/tests/test-solvers.cpp

+5-1
Original file line numberDiff line numberDiff line change
@@ -261,7 +261,7 @@ int main (int argc, char* argv[])
261261
("help,h", "Produce this message.")
262262
("path,p", po::value(&path)->required(), "Path to matrix in mtx format.")
263263
("platform,l", po::value(&platform)->default_value("AMD"),
264-
"OpenCL platform: AMD or NVIDIA.")
264+
"OpenCL platform: AMD, NVIDIA or INTEL.")
265265
("device,d", po::value(&dID)->default_value(0),
266266
"Device id within platform.")
267267
("relative,r", po::value(&relativeTolerance)->default_value(1e-2),
@@ -317,6 +317,10 @@ int main (int argc, char* argv[])
317317
{
318318
pID = NVIDIA;
319319
}
320+
else if ("INTEL" == platform)
321+
{
322+
pID = INTEL;
323+
}
320324
else
321325
{
322326

0 commit comments

Comments
 (0)