"python/vscode:/vscode.git/clone" did not exist on "65f091310ca63b96384c9fcf24c0c5aa0c1e4f39"
Unverified Commit c4cee345 authored by Umang Yadav's avatar Umang Yadav Committed by GitHub
Browse files

Merge branch 'develop' into rocblas_fp8

parents c40a39c3 eafd55de
...@@ -134,10 +134,11 @@ def check_correctness(gold_outputs, ...@@ -134,10 +134,11 @@ def check_correctness(gold_outputs,
if not np.allclose(gold_outputs[i], outputs[i], rtol, atol): if not np.allclose(gold_outputs[i], outputs[i], rtol, atol):
ret = False ret = False
if verbose: if verbose:
print('\nOutput {} is incorrect ...'.format(i)) with np.printoptions(threshold=np.inf):
print('Expected value: \n{}'.format(gold_outputs[i])) print('\nOutput {} is incorrect ...'.format(i))
print('......') print('Expected value: \n{}\n'.format(gold_outputs[i]))
print('Actual value: \n{}\n'.format(outputs[i])) print('\n......\n')
print('Actual value: \n{}\n'.format(outputs[i]))
else: else:
print('Outputs do not match') print('Outputs do not match')
break break
......
...@@ -22,4 +22,4 @@ ...@@ -22,4 +22,4 @@
# THE SOFTWARE. # THE SOFTWARE.
##################################################################################### #####################################################################################
numpy==1.21.6 numpy==1.21.6
onnxruntime==1.16.2 onnxruntime==1.16.3
...@@ -53,7 +53,8 @@ else ...@@ -53,7 +53,8 @@ else
python3-pip \ python3-pip \
python3-venv \ python3-venv \
rocblas-dev \ rocblas-dev \
rocm-cmake rocm-cmake \
libtbb-dev
fi fi
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment