Skip to content

Commit 03c643a

Browse files
authored
tf-2.6.0 -> tf-2.6.1 to avoid build issues (#1759)
* tf-2.6.0 -> tf-2.6.1 to avoid build issues Signed-off-by: Guenther Schmuelling <[email protected]> * disable test for tfjs Signed-off-by: Guenther Schmuelling <[email protected]>
1 parent 32b9cfc commit 03c643a

File tree

6 files changed

+8
-7
lines changed

6 files changed

+8
-7
lines changed

ci_build/azure_pipelines/onnxruntime_nightly_test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ stages:
8080
parameters:
8181
platforms: ['linux']
8282
python_versions: ['3.9']
83-
tf_versions: ['2.6.0']
83+
tf_versions: ['2.6.1']
8484
onnx_opsets: ['']
8585
onnx_backends: {onnxruntime: ['nightly']}
8686
job:

ci_build/azure_pipelines/pretrained_model_test-matrix.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
parameters:
4242
platforms: ['linux', 'windows']
4343
python_versions: ['3.9']
44-
tf_versions: ['2.6.0']
44+
tf_versions: ['2.6.1']
4545
job:
4646
steps:
4747
- template: 'pretrained_model_test.yml'

ci_build/azure_pipelines/pretrained_model_test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
- template: 'templates/job_generator.yml'
1616
parameters:
1717
python_versions: ['3.7']
18-
tf_versions: ['1.15.5','2.6.0']
18+
tf_versions: ['1.15.5','2.6.1']
1919
job:
2020
steps:
2121
- template: 'pretrained_model_test.yml'

ci_build/azure_pipelines/unit_test-matrix.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ stages:
5151
parameters:
5252
platforms: ['linux', 'windows']
5353
python_versions: ['3.8']
54-
tf_versions: ['2.6.0']
54+
tf_versions: ['2.6.1']
5555
onnx_opsets: ['']
5656
job:
5757
steps:

ci_build/azure_pipelines/unit_test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ stages:
77
parameters:
88
# TFJS tf 2.6
99
python_versions: ['3.9']
10-
tf_versions: ['2.6.0']
10+
tf_versions: ['2.6.1']
1111
onnx_opsets: ['']
1212
skip_tfjs_tests: 'False'
1313
skip_tf_tests: 'True'
@@ -20,7 +20,7 @@ stages:
2020
parameters:
2121
# TFLite tf 2.6
2222
python_versions: ['3.8']
23-
tf_versions: ['2.6.0']
23+
tf_versions: ['2.6.1']
2424
onnx_opsets: ['']
2525
skip_tflite_tests: 'False'
2626
skip_tf_tests: 'True'
@@ -33,7 +33,7 @@ stages:
3333
parameters:
3434
# tf 2.6
3535
python_versions: ['3.8']
36-
tf_versions: ['2.6.0']
36+
tf_versions: ['2.6.1']
3737
onnx_opsets: ['']
3838
job:
3939
steps:

tests/test_backend.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2681,6 +2681,7 @@ def func(x, y, z):
26812681
self._run_test_case(func, [_OUTPUT], {_INPUT: x_val, _INPUT1: y_val, _INPUT2: z_val})
26822682

26832683
@check_opset_min_version(10, "Slice")
2684+
@skip_tfjs("TFJS executes model incorrectly")
26842685
def test_new_axis_mask(self):
26852686
def func(x, y):
26862687
x_ = x[tf.newaxis, 0:y, y::2, tf.newaxis, :, tf.newaxis, :y, tf.newaxis, ..., 9]

0 commit comments

Comments
 (0)