Skip to content

Commit

Permalink
update tf v1.12.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Neargye committed Dec 12, 2018
1 parent bb7e06b commit 7f09419
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions CMakeLists.txt
Expand Up @@ -29,7 +29,7 @@ if(UNIX AND NOT APPLE)
if (NOT EXISTS ${CMAKE_SOURCE_DIR}/tensorflow/lib/libtensorflow.so)
file(
DOWNLOAD
https://github.com/Neargye/tensorflow/releases/download/v1.11.0/libtensorflow-cpu-linux-x86_64-1.11.0.tar.gz ${CMAKE_SOURCE_DIR}/tensorflow/linux.tar.gz
https://github.com/Neargye/tensorflow/releases/download/v1.12.0/libtensorflow-cpu-linux-x86_64-1.12.0.tar.gz ${CMAKE_SOURCE_DIR}/tensorflow/linux.tar.gz
STATUS
status
LOG
Expand All @@ -54,7 +54,7 @@ elseif(APPLE)
if (NOT EXISTS ${CMAKE_SOURCE_DIR}/tensorflow/lib/libtensorflow.so)
file(
DOWNLOAD
https://github.com/Neargye/tensorflow/releases/download/v1.11.0/libtensorflow-cpu-darwin-x86_64-1.11.0.tar.gz ${CMAKE_SOURCE_DIR}/tensorflow/darwin.tar.gz
https://github.com/Neargye/tensorflow/releases/download/v1.12.0/libtensorflow-cpu-darwin-x86_64-1.12.0.tar.gz ${CMAKE_SOURCE_DIR}/tensorflow/darwin.tar.gz
STATUS
status
LOG
Expand All @@ -80,7 +80,7 @@ elseif(WIN32)
if (NOT EXISTS ${CMAKE_SOURCE_DIR}/tensorflow/lib/tensorflow.dll)
file(
DOWNLOAD
https://github.com/Neargye/tensorflow/releases/download/v1.11.0/libtensorflow-cpu-windows-x86_64-1.11.0.zip ${CMAKE_SOURCE_DIR}/tensorflow/windows.zip
https://github.com/Neargye/tensorflow/releases/download/v1.12.0/libtensorflow-cpu-windows-x86_64-1.12.0.zip ${CMAKE_SOURCE_DIR}/tensorflow/windows.zip
STATUS
status
LOG
Expand Down
2 changes: 1 addition & 1 deletion test/test.cpp
Expand Up @@ -38,5 +38,5 @@
#endif

TEST_CASE("Hello TF C API") {
REQUIRE(std::string(TF_Version()) == std::string("1.11.0"));
REQUIRE(std::string(TF_Version()) == std::string("1.12.0"));
}

0 comments on commit 7f09419

Please sign in to comment.