Skip to content

Commit 07e8086

Browse files
committed
Merge branch 'develop'
2 parents 13c4940 + 68f1520 commit 07e8086

29 files changed

+328
-107
lines changed

CMakeLists.txt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -113,6 +113,9 @@ option( BUILD_VERBOSE "Output additional build information" OFF )
113113
# BUILD_SHARED_LIBS is a cmake built-in; we make it an explicit option such that it shows in cmake-gui
114114
option( BUILD_SHARED_LIBS "Build rocFFT as a shared library" ON )
115115

116+
# force library install path to lib (CentOS 7 defaults to lib64)
117+
set(CMAKE_INSTALL_LIBDIR "lib" CACHE INTERNAL "Installation directory for libraries" FORCE)
118+
116119
# Find HCC/HIP dependencies
117120
if( CMAKE_CXX_COMPILER MATCHES ".*/hcc$|.*/hipcc$" )
118121
message( STATUS "Building with ROCm tools" )
@@ -133,12 +136,9 @@ add_subdirectory( library )
133136

134137
include( clients/cmake/build-options.cmake )
135138

139+
136140
# Build clients of the library
137141
if( BUILD_CLIENTS_SAMPLES OR BUILD_CLIENTS_TESTS OR BUILD_CLIENTS_BENCHMARKS OR BUILD_CLIENTS_SELFTEST OR BUILD_CLIENTS_SAMPLES )
138142
add_subdirectory( clients )
139143
endif( )
140144

141-
# This should always be last, and is necessary to fix an issue with using rocm-cmake
142-
# Cmake parses add_subdirectory in a breadth first style, instead of depth first. This causes confusion in the cmake installer
143-
# where
144-
add_subdirectory( cmake )

clients/rider/misc.cpp

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

66
#include <stdexcept>
77

8-
#include "rocfft/rocfft.h"
8+
#include "rocfft.h"
99
#include "./misc.h"
1010

1111
void setupBuffers( std::vector< int > devices,

clients/rider/rider.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
#include <valarray>
1111

1212
#include <boost/program_options.hpp>
13-
#include "rocfft/rocfft.h"
13+
#include "rocfft.h"
1414
#include "./rider.h"
1515

1616

clients/samples/fixed-16/fixed-16-double.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
#include <math.h>
1111
#include <hip/hip_runtime_api.h>
1212
#include <hip/hip_vector_types.h>
13-
#include "rocfft/rocfft.h"
13+
#include "rocfft.h"
1414

1515

1616
int main()

clients/samples/fixed-16/fixed-16-float.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
#include <math.h>
1111
#include <hip/hip_runtime_api.h>
1212
#include <hip/hip_vector_types.h>
13-
#include "rocfft/rocfft.h"
13+
#include "rocfft.h"
1414

1515

1616
int main()

clients/samples/fixed-large/fixed-large-double.cpp

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

1212
#include <hip/hip_runtime_api.h>
1313
#include <hip/hip_vector_types.h>
14-
#include "rocfft/rocfft.h"
14+
#include "rocfft.h"
1515

1616

1717
int main()

clients/samples/fixed-large/fixed-large-float.cpp

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

1212
#include <hip/hip_runtime_api.h>
1313
#include <hip/hip_vector_types.h>
14-
#include "rocfft/rocfft.h"
14+
#include "rocfft.h"
1515

1616

1717
int main()

clients/selftest/test_complex.cpp

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

55
#include <gtest/gtest.h>
66
#include <stdlib.h>
7-
#include "rocfft/rocfft.h"
7+
#include "rocfft.h"
88
#include "./basis_vector.h"
99

1010
typedef float complex_single[2];

clients/tests/accuracy_test_1D.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
#include <stdexcept>
1010
#include <vector>
1111

12-
#include "rocfft/rocfft.h"
12+
#include "rocfft.h"
1313
#include "test_constants.h"
1414
#include "rocfft_against_fftw.h"
1515
#include "fftw_transform.h"

clients/tests/accuracy_test_2D.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
#include <stdexcept>
1010
#include <vector>
1111

12-
#include "rocfft/rocfft.h"
12+
#include "rocfft.h"
1313
#include "test_constants.h"
1414
#include "rocfft_against_fftw.h"
1515
#include "fftw_transform.h"

0 commit comments

Comments
 (0)