Skip to content

Commit 0617037

Browse files
committed
Update Tensorflow to v2.4.0
1 parent 11a1b59 commit 0617037

File tree

4 files changed

+4
-5
lines changed

4 files changed

+4
-5
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# tensorflow_cc
22
[![Build Status](http://elm.floop.cz:8080/buildStatus/icon?job=tensorflow_cc)](http://elm.floop.cz:8080/job/tensorflow_cc/)
3-
[![TF version](https://img.shields.io/badge/TF%20version-2.3.1-brightgreen.svg)]()
3+
[![TF version](https://img.shields.io/badge/TF%20version-2.4.0-brightgreen.svg)]()
44

55
This repository makes possible the usage of the [TensorFlow C++](https://www.tensorflow.org/api_docs/cc/) API from the outside of the TensorFlow source code folders and without the use of the [Bazel](https://bazel.build/) build system.
66

tensorflow_cc/CMakeLists.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@ project(
88
# If enabled, bazel has to be installed.
99
option(ALLOW_CUDA "Try to find and use CUDA." ON)
1010
option(REQUIRE_CUDA "Make sure to find and use CUDA (implies ALLOW_CUDA)." OFF)
11-
set(TENSORFLOW_TAG "v${version}" CACHE STRING "The tensorflow release tag to be checked out (default v${version}).")
11+
set(TENSORFLOW_TAG "v${version}-rc1" CACHE STRING "The tensorflow release tag to be checked out (default v${version}).")
12+
# TODO REMOVE THE -rc1 prefix
1213
set(TARGET_CXX_STANDARD "cxx_std_11" CACHE STRING "C++ standard to be enforced when linking to TensorflowCC targets (e.g., cxx_std_11).")
1314

1415
# -------------

tensorflow_cc/PROJECT_VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.3.1
1+
2.4.0

tensorflow_cc/cmake/build_tensorflow.sh.in

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,15 +11,13 @@ export CC_OPT_FLAGS=${CC_OPT_FLAGS:-"-march=ivybridge"}
1111
export TF_NEED_GCP=${TF_NEED_GCP:-0}
1212
export TF_NEED_HDFS=${TF_NEED_HDFS:-0}
1313
export TF_NEED_OPENCL=${TF_NEED_OPENCL:-0}
14-
export TF_NEED_OPENCL_SYCL=${TF_NEED_OPENCL_SYCL:-0}
1514
export TF_NEED_TENSORRT=${TF_NEED_TENSORRT:-0}
1615
export TF_NEED_NGRAPH=${TF_NEED_NGRAPH:-0}
1716
export TF_NEED_JEMALLOC=${TF_NEED_JEMALLOC:-1}
1817
export TF_NEED_VERBS=${TF_NEED_VERBS:-0}
1918
export TF_NEED_MKL=${TF_NEED_MKL:-1}
2019
export TF_DOWNLOAD_MKL=${TF_DOWNLOAD_MKL:-1}
2120
export TF_NEED_MPI=${TF_NEED_MPI:-0}
22-
export TF_ENABLE_XLA=${TF_ENABLE_XLA:-1}
2321
export TF_NEED_AWS=${TF_NEED_AWS:-0}
2422
export TF_NEED_GDR=${TF_NEED_GDR:-0}
2523
export TF_CUDA_CLANG=${TF_CUDA_CLANG:-0}

0 commit comments

Comments
 (0)