aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSaoirse Stewart <saoirse.stewart@arm.com>2023-07-17 12:24:36 +0100
committerSaoirse Stewart <saoirse.stewart@arm.com>2023-07-31 12:20:58 +0100
commitf0fb6d473c7a46264e19649e0c909b4b44f11e26 (patch)
tree044076e3374fc8a4b21bad900259fbae55dfb644
parent998d361d2c2c232ff4d1c2a92abccef329a4c260 (diff)
downloadtosa_checker-f0fb6d473c7a46264e19649e0c909b4b44f11e26.tar.gz
Update tensorflow version to 2.13.0
Change-Id: Ib068539ffb56b74691e1534ee8e0d6c221e1f6b0
-rw-r--r--.bazelversion2
-rw-r--r--docker/CI.Dockerfile4
-rw-r--r--docker/Dockerfile4
-rw-r--r--setup.py4
-rw-r--r--tests/requirements.txt2
-rw-r--r--tosa_checker/__init__.py2
6 files changed, 9 insertions, 9 deletions
diff --git a/.bazelversion b/.bazelversion
index 10803dc..406f546 100644
--- a/.bazelversion
+++ b/.bazelversion
@@ -1,2 +1,2 @@
-5.1.1
+5.3.0
# The version must be the same as the one in the TensorFlow version we build against
diff --git a/docker/CI.Dockerfile b/docker/CI.Dockerfile
index 4e0ef0a..7994cb8 100644
--- a/docker/CI.Dockerfile
+++ b/docker/CI.Dockerfile
@@ -3,8 +3,8 @@
FROM ubuntu:22.04
ARG PYTHON_VERSION=3.9
-ARG BAZEL_VERSION=5.1.1
-ARG TENSORFLOW_VERSION=2.11.0
+ARG BAZEL_VERSION=5.3.0
+ARG TENSORFLOW_VERSION=2.13.0
RUN apt-get update
RUN apt-get install -y build-essential software-properties-common clang curl unzip git libc++-dev libc++abi-dev
diff --git a/docker/Dockerfile b/docker/Dockerfile
index 1b2976d..0add693 100644
--- a/docker/Dockerfile
+++ b/docker/Dockerfile
@@ -3,8 +3,8 @@
FROM quay.io/pypa/manylinux2014_x86_64
ARG PYTHON_VERSION=3.9
-ARG TENSORFLOW_VERSION=2.11.0
-ARG BAZEL_VERSION=5.1.1
+ARG TENSORFLOW_VERSION=2.13.0
+ARG BAZEL_VERSION=5.3.0
RUN ln -s /opt/_internal/cpython-$PYTHON_VERSION*/bin/python3 /usr/local/bin/python3 && \
ln -s /opt/_internal/cpython-$PYTHON_VERSION*/bin/python /usr/local/bin/python && \
diff --git a/setup.py b/setup.py
index 0f2424a..6aadd48 100644
--- a/setup.py
+++ b/setup.py
@@ -11,8 +11,8 @@ import sys
import time
-TOSA_CHECKER_VERSION = "0.2.0a2"
-DEFAULT_TENSORFLOW_VERSION = "2.11.0"
+TOSA_CHECKER_VERSION = "0.2.0a3"
+DEFAULT_TENSORFLOW_VERSION = "2.13.0"
# Get the TensorFlowâ„¢ source directory passed to the command line (if any).
# If none is given the sources are pulled from the official TF repository.
diff --git a/tests/requirements.txt b/tests/requirements.txt
index 1e17ff6..a2a03f8 100644
--- a/tests/requirements.txt
+++ b/tests/requirements.txt
@@ -1,4 +1,4 @@
# SPDX-FileCopyrightText: Copyright 2022, Arm Limited and/or its affiliates.
# SPDX-License-Identifier: Apache-2.0
-tensorflow==2.11.0
+tensorflow==2.13.0
pytest==7.1.2
diff --git a/tosa_checker/__init__.py b/tosa_checker/__init__.py
index 39fa5b6..b0ba260 100644
--- a/tosa_checker/__init__.py
+++ b/tosa_checker/__init__.py
@@ -5,4 +5,4 @@
from _tosa_checker_wrapper import *
-__version__ = "0.2.0a2"
+__version__ = "0.2.0a3"