Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
CodeVault
hpc-kernels
dense_linear_algebra
Commits
efd5b34f
Commit
efd5b34f
authored
Jan 29, 2016
by
Valeriu Codreanu
Browse files
fixed some paths for the compilation tests to pass. all tests pass now
parent
d33bf880
Changes
11
Hide whitespace changes
Inline
Side-by-side
CMakeLists.txt
View file @
efd5b34f
...
...
@@ -11,7 +11,7 @@
# CMake project
cmake_minimum_required
(
VERSION 2.8.10 FATAL_ERROR
)
project
(
"1_dense"
)
include
(
${
CMAKE_CURRENT_SOURCE_DIR
}
/../
../
cmake/common.cmake
)
include
(
${
CMAKE_CURRENT_SOURCE_DIR
}
/../cmake/common.cmake
)
# ==================================================================================================
...
...
gemm/clblas/CMakeLists.txt
View file @
efd5b34f
...
...
@@ -9,7 +9,7 @@
# ==================================================================================================
cmake_minimum_required
(
VERSION 2.8.7 FATAL_ERROR
)
include
(
${
CMAKE_CURRENT_SOURCE_DIR
}
/../../../
../
cmake/common.cmake
)
include
(
${
CMAKE_CURRENT_SOURCE_DIR
}
/../../../cmake/common.cmake
)
# ==================================================================================================
if
(
"
${
DWARF_PREFIX
}
"
STREQUAL
""
)
...
...
gemm/cublas/CMakeLists.txt
View file @
efd5b34f
...
...
@@ -13,7 +13,7 @@ find_package(OpenMP) # Built-in in CMake
find_package
(
MPI
)
# Built-in in CMake
find_package
(
CUDA
)
# Built-in in CMake
find_package
(
OpenCL
)
# Included as ${CMAKE_MODULE_PATH}/FindOpenCL.cmake
include
(
${
CMAKE_CURRENT_SOURCE_DIR
}
/../../../
../
cmake/common.cmake
)
include
(
${
CMAKE_CURRENT_SOURCE_DIR
}
/../../../cmake/common.cmake
)
# ==================================================================================================
if
(
"
${
DWARF_PREFIX
}
"
STREQUAL
""
)
set
(
DWARF_PREFIX 1_dense
)
...
...
kmeans/kmeans_cuda/CMakeLists.txt
View file @
efd5b34f
...
...
@@ -14,7 +14,7 @@ find_package(OpenMP) # Built-in in CMake
find_package
(
MPI
)
# Built-in in CMake
find_package
(
CUDA
)
# Built-in in CMake
include
(
${
CMAKE_CURRENT_SOURCE_DIR
}
/../../../
../
cmake/common.cmake
)
include
(
${
CMAKE_CURRENT_SOURCE_DIR
}
/../../../cmake/common.cmake
)
# ==================================================================================================
...
...
kmeans/kmeans_openmp/CMakeLists.txt
View file @
efd5b34f
...
...
@@ -13,7 +13,7 @@ cmake_minimum_required(VERSION 2.8.10 FATAL_ERROR)
find_package
(
OpenMP
)
# Built-in in CMake
find_package
(
MPI
)
# Built-in in CMake
include
(
${
CMAKE_CURRENT_SOURCE_DIR
}
/../../../
../
cmake/common.cmake
)
include
(
${
CMAKE_CURRENT_SOURCE_DIR
}
/../../../cmake/common.cmake
)
# ==================================================================================================
...
...
kmeans/kmeans_rodinia_opencl/CMakeLists.txt
View file @
efd5b34f
...
...
@@ -8,7 +8,7 @@
#
# ==================================================================================================
cmake_minimum_required
(
VERSION 2.8.10 FATAL_ERROR
)
list
(
APPEND CMAKE_MODULE_PATH
"
${
CMAKE_CURRENT_SOURCE_DIR
}
/../../../
../
cmake/Modules"
)
list
(
APPEND CMAKE_MODULE_PATH
"
${
CMAKE_CURRENT_SOURCE_DIR
}
/../../../cmake/Modules"
)
# Packages are optional: if they are not present, certain code samples are not compiled
find_package
(
OpenMP
)
# Built-in in CMake
find_package
(
MPI
)
# Built-in in CMake
...
...
@@ -16,7 +16,7 @@ find_package(CUDA) # Built-in in CMake
find_package
(
OpenCL
)
include
(
${
CMAKE_CURRENT_SOURCE_DIR
}
/../../../
../
cmake/common.cmake
)
include
(
${
CMAKE_CURRENT_SOURCE_DIR
}
/../../../cmake/common.cmake
)
# ==================================================================================================
...
...
lud/cublas/CMakeLists.txt
View file @
efd5b34f
...
...
@@ -14,7 +14,7 @@ find_package(OpenMP) # Built-in in CMake
find_package
(
MPI
)
# Built-in in CMake
find_package
(
CUDA
)
# Built-in in CMake
include
(
${
CMAKE_CURRENT_SOURCE_DIR
}
/../../../
../
cmake/common.cmake
)
include
(
${
CMAKE_CURRENT_SOURCE_DIR
}
/../../../cmake/common.cmake
)
# ==================================================================================================
...
...
lud/cublas_mkl/CMakeLists.txt
View file @
efd5b34f
...
...
@@ -8,14 +8,14 @@
#
# ==================================================================================================
cmake_minimum_required
(
VERSION 2.8.10 FATAL_ERROR
)
list
(
APPEND CMAKE_MODULE_PATH
"
${
CMAKE_CURRENT_SOURCE_DIR
}
/../../../
../
cmake/Modules"
)
list
(
APPEND CMAKE_MODULE_PATH
"
${
CMAKE_CURRENT_SOURCE_DIR
}
/../../../cmake/Modules"
)
# Packages are optional: if they are not present, certain code samples are not compiled
find_package
(
OpenMP
)
# Built-in in CMake
find_package
(
MPI
)
# Built-in in CMake
find_package
(
CUDA
)
# Built-in in CMake
find_package
(
MKL
)
include
(
${
CMAKE_CURRENT_SOURCE_DIR
}
/../../../
../
cmake/common.cmake
)
include
(
${
CMAKE_CURRENT_SOURCE_DIR
}
/../../../cmake/common.cmake
)
# ==================================================================================================
...
...
lud/cusolver/CMakeLists.txt
View file @
efd5b34f
...
...
@@ -14,7 +14,7 @@ find_package(OpenMP) # Built-in in CMake
find_package
(
MPI
)
# Built-in in CMake
find_package
(
CUDA
)
# Built-in in CMake
include
(
${
CMAKE_CURRENT_SOURCE_DIR
}
/../../../
../
cmake/common.cmake
)
include
(
${
CMAKE_CURRENT_SOURCE_DIR
}
/../../../cmake/common.cmake
)
# ==================================================================================================
...
...
lud/cusolver_mkl/CMakeLists.txt
View file @
efd5b34f
...
...
@@ -8,14 +8,14 @@
#
# ==================================================================================================
cmake_minimum_required
(
VERSION 2.8.10 FATAL_ERROR
)
list
(
APPEND CMAKE_MODULE_PATH
"
${
CMAKE_CURRENT_SOURCE_DIR
}
/../../../
../
cmake/Modules"
)
list
(
APPEND CMAKE_MODULE_PATH
"
${
CMAKE_CURRENT_SOURCE_DIR
}
/../../../cmake/Modules"
)
# Packages are optional: if they are not present, certain code samples are not compiled
find_package
(
OpenMP
)
# Built-in in CMake
find_package
(
MPI
)
# Built-in in CMake
find_package
(
CUDA
)
# Built-in in CMake
find_package
(
MKL
)
include
(
${
CMAKE_CURRENT_SOURCE_DIR
}
/../../../
../
cmake/common.cmake
)
include
(
${
CMAKE_CURRENT_SOURCE_DIR
}
/../../../cmake/common.cmake
)
# ==================================================================================================
...
...
lud/mkl/CMakeLists.txt
View file @
efd5b34f
...
...
@@ -8,13 +8,13 @@
#
# ==================================================================================================
cmake_minimum_required
(
VERSION 2.8.10 FATAL_ERROR
)
list
(
APPEND CMAKE_MODULE_PATH
"
${
CMAKE_CURRENT_SOURCE_DIR
}
/../../../
../
cmake/Modules"
)
list
(
APPEND CMAKE_MODULE_PATH
"
${
CMAKE_CURRENT_SOURCE_DIR
}
/../../../cmake/Modules"
)
# Packages are optional: if they are not present, certain code samples are not compiled
find_package
(
OpenMP
)
# Built-in in CMake
find_package
(
MPI
)
# Built-in in CMake
find_package
(
MKL
)
include
(
${
CMAKE_CURRENT_SOURCE_DIR
}
/../../../
../
cmake/common.cmake
)
include
(
${
CMAKE_CURRENT_SOURCE_DIR
}
/../../../cmake/common.cmake
)
# ==================================================================================================
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment