Skip to content

Commit bdd77c9

Browse files
authored
Merge pull request #214 from FloopCZ/release-download
Archive release download, no clone
2 parents c1520a0 + 0e08cd8 commit bdd77c9

3 files changed

Lines changed: 4 additions & 5 deletions

File tree

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://ash.floop.cz:8080/buildStatus/icon?job=tensorflow_cc)](http://ash.floop.cz:8080/job/tensorflow_cc/)
3-
[![TF version](https://img.shields.io/badge/TF%20version-2.2.0%20rc1-brightgreen.svg)]()
3+
[![TF version](https://img.shields.io/badge/TF%20version-2.2.0%20rc2-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 & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +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 "v2.2.0-rc1" CACHE STRING "The tensorflow release tag to be checked out (default v2.2.0-rc1).")
12-
# TODO use ${version} when not -rc1
11+
set(TENSORFLOW_TAG "v2.2.0-rc2" CACHE STRING "The tensorflow release tag to be checked out (default v2.2.0-rc2).")
12+
# TODO use ${version} when not -rc2
1313
set(TARGET_CXX_STANDARD "cxx_std_11" CACHE STRING "C++ standard to be enforced when linking to TensorflowCC targets (e.g., cxx_std_11).")
1414

1515
# -------------

tensorflow_cc/cmake/TensorflowBase.cmake

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,7 @@ include(ExternalProject)
33

44
ExternalProject_Add(
55
tensorflow_base
6-
GIT_REPOSITORY https://github.com/tensorflow/tensorflow.git
7-
GIT_TAG "${TENSORFLOW_TAG}"
6+
URL https://github.com/tensorflow/tensorflow/archive/${TENSORFLOW_TAG}.tar.gz
87
TMP_DIR "/tmp"
98
STAMP_DIR "tensorflow-stamp"
109
DOWNLOAD_DIR "tensorflow"

0 commit comments

Comments
 (0)