Skip to content

Commit

Permalink
CI CD fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
maheshambule committed Mar 12, 2020
1 parent 21a5b29 commit ff25948
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ def test_bias_add():
for dtype in ['float16', 'float32']:
xshape = (10, 2, 3, 4)
bshape = (2,)
rtol = 1e-2 if dtype is 'float16' else 1e-5
rtol = 1e-2 if dtype == 'float16' else 1e-5
x = relay.var("x", shape=xshape, dtype=dtype)
bias = relay.var("bias", dtype=dtype)
z = relay.nn.bias_add(x, bias)
Expand Down
2 changes: 1 addition & 1 deletion tests/scripts/task_python_converter.sh
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,6 @@ find . -type f -path "*.pyc" | xargs rm -f
make cython3

echo "Running relay to ONNX converter..."
python3 -m pytest -v tests/python/relay/converter/
python3 -m pytest -v tests/python/converter/


0 comments on commit ff25948

Please sign in to comment.