Skip to content

Commit 27a5d63

Browse files
committed
Update to TF v1.13.0
1 parent 9479f45 commit 27a5d63

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

Dockerfiles/ubuntu-shared-cuda

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM nvidia/cuda:9.2-cudnn7-devel-ubuntu18.04
1+
FROM nvidia/cuda:10.0-cudnn7-devel-ubuntu18.04
22

33
# copy the contents of this repository to the container
44
COPY . tensorflow_cc

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-1.12.0-brightgreen.svg)]()
3+
[![TF version](https://img.shields.io/badge/TF%20version-1.13.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 & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
cmake_minimum_required(VERSION 3.3 FATAL_ERROR)
22
project(
33
"tensorflow_cc"
4-
VERSION 1.12.0
4+
VERSION 1.13.0
55
)
66

77
# Static library with no GPU support is built by default.
@@ -10,7 +10,7 @@ project(
1010
option(TENSORFLOW_SHARED "Build shared library (required for GPU support)." OFF)
1111
option(ALLOW_CUDA "When building the shared library, try to find and use CUDA." ON)
1212
option(TENSORFLOW_STATIC "Build static library." ON)
13-
set(TENSORFLOW_TAG "c985bd0dce0f8a7ccf334c9782d051c81ad00f1d" CACHE STRING "The tensorflow release tag to be checked out (default v1.12.0).")
13+
set(TENSORFLOW_TAG "v1.13.0-rc1" CACHE STRING "The tensorflow release tag to be checked out (default v1.13.0).")
1414
option(SYSTEM_PROTOBUF "Use system protobuf instead of static protobuf from contrib/makefile." OFF)
1515

1616
# -------------

0 commit comments

Comments
 (0)