Skip to content

Commit 72ced76

Browse files
authored
Merge pull request #159 from FloopCZ/v1.13.0
V1.13.0
2 parents 9479f45 + 8ccc0c4 commit 72ced76

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

Dockerfiles/install-ubuntu.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ if $shared; then
5151
fi
5252
if $cuda; then
5353
# install libcupti
54-
apt-get -y install cuda-command-line-tools-9-2
54+
apt-get -y install cuda-command-line-tools-10-0
5555
fi
5656

5757
apt-get -y clean

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)