Skip to content

Commit 4f951d7

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 4f951d7

File tree

6 files changed

+30
-8
lines changed

6 files changed

+30
-8
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";

0 commit comments

Comments
 (0)