Skip to content

Commit 58bd624

Browse files
committed
Merge pull request #1339 from shehzan10/hotfix-3.3.1
Update clBLAS/clFFT Build Tags
2 parents 32965ef + 27c8bfb commit 58bd624

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

CMakeModules/build_clBLAS.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ ENDIF()
1414
ExternalProject_Add(
1515
clBLAS-ext
1616
GIT_REPOSITORY https://github.com/arrayfire/clBLAS.git
17-
GIT_TAG af3.3.0
17+
GIT_TAG af3.3.1
1818
PREFIX "${prefix}"
1919
INSTALL_DIR "${prefix}"
2020
UPDATE_COMMAND ""

CMakeModules/build_clFFT.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ ENDIF()
1414
ExternalProject_Add(
1515
clFFT-ext
1616
GIT_REPOSITORY https://github.com/arrayfire/clFFT.git
17-
GIT_TAG af3.3.0
17+
GIT_TAG af3.3.1
1818
PREFIX "${prefix}"
1919
INSTALL_DIR "${prefix}"
2020
UPDATE_COMMAND ""

src/backend/opencl/fft.cpp

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,11 +47,17 @@ class clFFTPlanner
4747
}
4848

4949
~clFFTPlanner() {
50+
//TODO: FIXME:
51+
// clfftTeardown() cause a "Pure Virtual Function Called" crash on
52+
// Window only when Intel devices are called. This causes tests to
53+
// fail.
54+
#ifndef OS_WIN
5055
static bool flag = true;
5156
if(flag) {
5257
CLFFT_CHECK(clfftTeardown());
5358
flag = false;
5459
}
60+
#endif
5561
}
5662

5763
private:

0 commit comments

Comments
 (0)