-
Notifications
You must be signed in to change notification settings - Fork 59
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updates from ArrayFire's 3.6 Release
* Bump up crate version to 3.6.0 * Update crate dependencies * Update build.rs to reflect 3.6 release * Update the submodule arrayfire to 3.6 branch * Update crate with new fns from 3.6 release * Improve build config format * Add get_last_error utility helper * Update README for 3.6 and fix style
- Loading branch information
Showing
12 changed files
with
438 additions
and
300 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,27 +1,28 @@ | ||
{ | ||
"use_lib": true, | ||
|
||
"build_type": "Release", | ||
"build_threads": "4", | ||
"build_examples": "OFF", | ||
"build_test": "OFF", | ||
"build_graphics": "ON", | ||
"build_type" : "Release", | ||
"build_threads" : 3, | ||
"build_cpu" : "ON", | ||
"build_cuda" : "ON", | ||
"build_opencl" : "ON", | ||
"build_nonfree" : "ON", | ||
"build_examples" : "OFF", | ||
"build_test" : "OFF", | ||
|
||
"glew_static": "OFF", | ||
"freeimage_type": "DYNAMIC", | ||
"cpu_fft_type": "FFTW", | ||
"cpu_blas_type": "LAPACKE", | ||
"cpu_lapack_type": "LAPACKE", | ||
"with_intelmkl" : "OFF", | ||
"with_imageio" : "ON", | ||
"with_graphics" : "ON", | ||
"with_opencl_blas_lib" : "clblast", | ||
|
||
"freeimage_dir": "E:\\Libraries\\FreeImage\\Dist", | ||
"fftw_dir": "E:\\Libraries\\fftw-3.3.4", | ||
"acml_dir": "", | ||
"mkl_dir": "", | ||
"lapacke_dir": "E:\\Libraries\\lapack", | ||
"glew_dir": "E:\\Libraries\\GLEW", | ||
"glfw_dir": "E:\\Libraries\\glfw3", | ||
"boost_dir": "E:\\Libraries\\boost_1_56_0", | ||
"vcpkg_toolchain_file" : "C:/vcpkg/scripts/buildsystems/vcpkg.cmake", | ||
|
||
"cuda_sdk": "/usr/local/cuda", | ||
"opencl_sdk": "/usr" | ||
"lnx_cuda_sdk": "/opt/cuda", | ||
"lnx_opencl_sdk": "/usr", | ||
"lnx_cuda_host_compiler": "/usr/bin/gcc-6", | ||
|
||
"win_cuda_sdk": "C:\\Program Files\\NVIDIA GPU Computing Toolkit\\CUDA\\v9.2", | ||
"win_opencl_sdk": "C:\\Program Files\\NVIDIA GPU Computing Toolkit\\CUDA\\v9.2", | ||
"win_cmake_generator": "Visual Studio 15 2017 Win64", | ||
"win_vs_toolset": "v140" | ||
} |
Oops, something went wrong.