Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/soumith/cudnn.torch.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSoumith Chintala <soumith@gmail.com>2017-03-07 08:26:17 +0300
committerGitHub <noreply@github.com>2017-03-07 08:26:17 +0300
commit744f79b10b20a2c7561ae352f923f2b331583fcd (patch)
treeed2d040c1179508dd22f7d208596c2ceffffa456
parent18510b6482e2202efa6b594de28efd3ea8046892 (diff)
fix tarring
-rw-r--r--cmake/FindCUDNN.cmake2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmake/FindCUDNN.cmake b/cmake/FindCUDNN.cmake
index 5aa6158..37388d3 100644
--- a/cmake/FindCUDNN.cmake
+++ b/cmake/FindCUDNN.cmake
@@ -77,7 +77,7 @@ function(CUDNN_INSTALL version dest_libdir dest_incdir dest_bindir)
file(DOWNLOAD ${cudnn_url} ${cudnn_file}
SHOW_PROGRESS STATUS cudnn_status
)
- execute_process(COMMAND ${CMAKE_COMMAND} -E tar xzvf --format=${url_extension} ${cudnn_file} WORKING_DIRECTORY ${download_dir} RESULT_VARIABLE cudnn_status)
+ execute_process(COMMAND ${CMAKE_COMMAND} -E tar xzvf ${cudnn_file} WORKING_DIRECTORY ${download_dir} RESULT_VARIABLE cudnn_status)
if(NOT "${cudnn_status}" MATCHES "0")
message(STATUS "Was not able to download CUDNN from ${cudnn_url}. Please install CuDNN manually from https://developer.nvidia.com/cuDNN")