Skip to content

Commit

Permalink
Merge pull request #408 from sony/feature/20190412-upgrade-onnx-version
Browse files Browse the repository at this point in the history
Upgrade onnx version to 1.4.1
  • Loading branch information
YukioOobuchi committed Apr 17, 2019
2 parents fec8da1 + 4ccbc4b commit f041106
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions docker/development/Dockerfile.build-armhf
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ RUN pip install --no-cache-dir \
cython \
mako \
numpy\<1.16 \
onnx==1.3.0 \
onnx==1.4.1 \
pillow \
protobuf \
pytest \
Expand All @@ -98,7 +98,7 @@ RUN pip3 install --no-cache-dir \
cython \
mako \
numpy\<1.16 \
onnx==1.3.0 \
onnx==1.4.1 \
pillow \
protobuf \
pytest \
Expand Down
4 changes: 2 additions & 2 deletions docker/development/Dockerfile.onnx-test
Original file line number Diff line number Diff line change
Expand Up @@ -120,8 +120,8 @@ RUN set -xe \
tqdm \
wheel \
virtualenv \
&& pip install pyyaml onnx==1.3.0 future Cython autopep8 requests \
graphviz pytablewriter \
&& pip install pyyaml onnx==1.4.1 future Cython autopep8 requests \
graphviz \
&& pip install cntk || true \
&& conda install -y -c pytorch pytorch-nightly-cpu \
&& rm -rf /opt/miniconda3/pkgs
4 changes: 2 additions & 2 deletions docker/development/Dockerfile.onnx-test-armhf
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ RUN pip install --no-cache-dir \
cython \
mako \
numpy\<1.16 \
onnx==1.3.0 \
onnx==1.4.1 \
pillow \
protobuf \
pytest \
Expand All @@ -96,7 +96,7 @@ RUN pip3 install --no-cache-dir \
cython \
mako \
numpy\<1.16 \
onnx==1.3.0 \
onnx==1.4.1 \
pillow \
protobuf \
pytest \
Expand Down
2 changes: 1 addition & 1 deletion docker/development/Dockerfile.tf-test
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ RUN set -xe \
tqdm \
wheel \
virtualenv \
&& pip install pyyaml onnx==1.3.0 future Cython autopep8 requests \
&& pip install pyyaml onnx==1.4.1 future Cython autopep8 requests \
graphviz tensorflow onnx_tf \
&& pip install cntk || true \
&& conda install -y -c pytorch pytorch-nightly-cpu \
Expand Down
2 changes: 1 addition & 1 deletion python/src/nnabla/utils/converter/onnx/utils.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
NNABLA_DOMAIN = "org.nnabla"
NNABLA_OPSET_VERSION = 1
ONNX_IR_VERSION = 3
ONNX_IR_VERSION = 4
ONNX_OPSET_VERSION = 6
PRODUCER_NAME = "nnabla-onnx"
PRODUCER_VERSION = "0.1"
Expand Down

0 comments on commit f041106

Please sign in to comment.