Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
gaoqiong
MIGraphX
Commits
01c2f5fd
Unverified
Commit
01c2f5fd
authored
Nov 01, 2023
by
Chris Austen
Committed by
GitHub
Nov 01, 2023
Browse files
Merge branch 'develop' into enable_navi_32_ci
parents
3aee0145
b249fb8a
Changes
44
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
38 additions
and
19 deletions
+38
-19
test/targets.cpp
test/targets.cpp
+0
-4
test/verify/quant_conv_1.cpp
test/verify/quant_conv_1.cpp
+1
-1
test/verify/quant_conv_2.cpp
test/verify/quant_conv_2.cpp
+1
-1
tools/accuracy/accuracy_checker.py
tools/accuracy/accuracy_checker.py
+36
-13
No files found.
test/targets.cpp
View file @
01c2f5fd
...
@@ -41,11 +41,7 @@ TEST_CASE(make_invalid_target)
...
@@ -41,11 +41,7 @@ TEST_CASE(make_invalid_target)
TEST_CASE
(
targets
)
TEST_CASE
(
targets
)
{
{
// GCC doesn't load libmigraphx_ref unless necesssary even though it is linked to the test.
// Force it to load by making ref target
#if defined(__GNUC__) && !defined(__clang__)
auto
ref_target
=
migraphx
::
make_target
(
"ref"
);
auto
ref_target
=
migraphx
::
make_target
(
"ref"
);
#endif
auto
ts
=
migraphx
::
get_targets
();
auto
ts
=
migraphx
::
get_targets
();
EXPECT
(
ts
.
size
()
>=
1
);
EXPECT
(
ts
.
size
()
>=
1
);
}
}
...
...
test/verify/quant_conv_
default_mode
.cpp
→
test/verify/quant_conv_
1
.cpp
View file @
01c2f5fd
...
@@ -27,7 +27,7 @@
...
@@ -27,7 +27,7 @@
#include <migraphx/generate.hpp>
#include <migraphx/generate.hpp>
#include <migraphx/op/quant_convolution.hpp>
#include <migraphx/op/quant_convolution.hpp>
struct
quant_conv_
default_mode
:
verify_program
<
quant_conv_
default_mode
>
struct
quant_conv_
1
:
verify_program
<
quant_conv_
1
>
{
{
migraphx
::
program
create_program
()
const
migraphx
::
program
create_program
()
const
{
{
...
...
test/verify/quant_conv_
int8x4_default
.cpp
→
test/verify/quant_conv_
2
.cpp
View file @
01c2f5fd
...
@@ -27,7 +27,7 @@
...
@@ -27,7 +27,7 @@
#include <migraphx/generate.hpp>
#include <migraphx/generate.hpp>
#include <migraphx/op/quant_convolution.hpp>
#include <migraphx/op/quant_convolution.hpp>
struct
quant_conv_
int8x4_default
:
verify_program
<
quant_conv_
int8x4_default
>
struct
quant_conv_
2
:
verify_program
<
quant_conv_
2
>
{
{
migraphx
::
program
create_program
()
const
migraphx
::
program
create_program
()
const
{
{
...
...
tools/accuracy/accuracy_checker.py
View file @
01c2f5fd
#####################################################################################
#####################################################################################
# The MIT License (MIT)
# The MIT License (MIT)
#
#
# Copyright (c) 2015-202
2
Advanced Micro Devices, Inc. All rights reserved.
# Copyright (c) 2015-202
3
Advanced Micro Devices, Inc. All rights reserved.
#
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# of this software and associated documentation files (the "Software"), to deal
...
@@ -52,6 +52,12 @@ def parse_args():
...
@@ -52,6 +52,12 @@ def parse_args():
parser
.
add_argument
(
'--fill0'
,
parser
.
add_argument
(
'--fill0'
,
action
=
'store_true'
,
action
=
'store_true'
,
help
=
'fill all arguments with a value of 0'
)
help
=
'fill all arguments with a value of 0'
)
parser
.
add_argument
(
'--fp16'
,
action
=
'store_true'
,
help
=
'quantize MIGraphX model to fp16'
)
parser
.
add_argument
(
'--argmax'
,
action
=
'store_true'
,
help
=
'use argmax for accuracy'
)
parser
.
add_argument
(
'--verbose'
,
parser
.
add_argument
(
'--verbose'
,
action
=
'store_true'
,
action
=
'store_true'
,
help
=
'show verbose information (for debugging)'
)
help
=
'show verbose information (for debugging)'
)
...
@@ -105,7 +111,7 @@ def parse_args():
...
@@ -105,7 +111,7 @@ def parse_args():
args
=
parser
.
parse_args
()
args
=
parser
.
parse_args
()
return
args
return
args
,
parser
# taken from ../test_runner.py
# taken from ../test_runner.py
...
@@ -113,6 +119,7 @@ def check_correctness(gold_outputs,
...
@@ -113,6 +119,7 @@ def check_correctness(gold_outputs,
outputs
,
outputs
,
rtol
=
1e-3
,
rtol
=
1e-3
,
atol
=
1e-3
,
atol
=
1e-3
,
use_argmax
=
False
,
verbose
=
False
):
verbose
=
False
):
if
len
(
gold_outputs
)
!=
len
(
outputs
):
if
len
(
gold_outputs
)
!=
len
(
outputs
):
print
(
'Number of outputs {} is not equal to expected number {}'
.
format
(
print
(
'Number of outputs {} is not equal to expected number {}'
.
format
(
...
@@ -121,6 +128,8 @@ def check_correctness(gold_outputs,
...
@@ -121,6 +128,8 @@ def check_correctness(gold_outputs,
out_num
=
len
(
gold_outputs
)
out_num
=
len
(
gold_outputs
)
ret
=
True
ret
=
True
if
not
use_argmax
:
for
i
in
range
(
out_num
):
for
i
in
range
(
out_num
):
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
...
@@ -132,7 +141,16 @@ def check_correctness(gold_outputs,
...
@@ -132,7 +141,16 @@ def check_correctness(gold_outputs,
else
:
else
:
print
(
'Outputs do not match'
)
print
(
'Outputs do not match'
)
break
break
else
:
golden_argmax
=
np
.
argmax
(
gold_outputs
)
actual_argmax
=
np
.
argmax
(
outputs
)
if
actual_argmax
!=
golden_argmax
:
ret
=
False
print
(
'
\n
Output argmax is incorrect ...'
)
if
verbose
:
print
(
'Expected argmax value:
\n
{}'
.
format
(
golden_argmax
))
print
(
'......'
)
print
(
'Actual argmax value:
\n
{}
\n
'
.
format
(
actual_argmax
))
return
ret
return
ret
...
@@ -155,13 +173,14 @@ def get_np_datatype(in_type):
...
@@ -155,13 +173,14 @@ def get_np_datatype(in_type):
def
main
():
def
main
():
args
=
parse_args
()
args
,
parser
=
parse_args
()
use_onnx
=
True
use_onnx
=
True
if
args
.
onnx
==
None
:
if
args
.
onnx
==
None
:
use_onnx
=
False
use_onnx
=
False
if
not
use_onnx
and
args
.
tf
==
None
:
if
not
use_onnx
and
args
.
tf
==
None
:
print
(
'Error: please specify either an onnx or tf pb file'
)
print
(
'Error: please specify either an onnx or tf pb file'
)
parser
.
print_help
()
sys
.
exit
(
-
1
)
sys
.
exit
(
-
1
)
model_name
=
args
.
onnx
model_name
=
args
.
onnx
...
@@ -194,6 +213,9 @@ def main():
...
@@ -194,6 +213,9 @@ def main():
batch_size
=
batch
,
batch_size
=
batch
,
map_input_dims
=
input_dims
)
map_input_dims
=
input_dims
)
if
(
args
.
fp16
):
migraphx
.
quantize_fp16
(
model
)
if
args
.
verbose
:
if
args
.
verbose
:
print
(
model
)
print
(
model
)
...
@@ -300,7 +322,8 @@ def main():
...
@@ -300,7 +322,8 @@ def main():
if
not
args
.
ort_run
:
if
not
args
.
ort_run
:
is_correct
=
check_correctness
(
pred_fw
,
pred_migx
,
args
.
tolerance
,
is_correct
=
check_correctness
(
pred_fw
,
pred_migx
,
args
.
tolerance
,
args
.
tolerance
,
args
.
verbose
)
args
.
tolerance
,
args
.
argmax
,
args
.
verbose
)
verbose_string
=
' Rerun with --verbose for detailed information.'
\
verbose_string
=
' Rerun with --verbose for detailed information.'
\
if
not
args
.
verbose
else
''
if
not
args
.
verbose
else
''
if
is_correct
:
if
is_correct
:
...
...
Prev
1
2
3
Next
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment