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
277140f3
"examples/tutorials/quantization_quick_start_mnist.py" did not exist on "cef9babdb74b6f157fc8d684f0c352c3d1b3a49f"
Commit
277140f3
authored
Dec 07, 2023
by
Umang Yadav
Browse files
test working
parent
1b299790
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
test/simplify_qdq_test.cpp
test/simplify_qdq_test.cpp
+3
-3
No files found.
test/simplify_qdq_test.cpp
View file @
277140f3
...
...
@@ -576,11 +576,11 @@ TEST_CASE(dot_add_multiple_dq_use)
auto
dot_2
=
m2
.
add_instruction
(
migraphx
::
make_op
(
"quant_dot"
),
d3_q
,
q1
);
auto
out_scale_2
=
add_scale_mul
(
m2
,
scale
,
scale
,
1
,
1
,
dot_2
->
get_shape
().
lens
());
auto
d4
=
add_quantize_op
(
m2
,
"dequantizelinear"
,
dot_2
,
out_scale_2
);
m2
.
add_return
({
d4
});
auto
add
=
m2
.
add_instruction
(
migraphx
::
make_op
(
"add"
),
d4
,
t1
);
m2
.
add_return
({
add
});
}
run_pass
(
m1
);
//
EXPECT(m1 == m2);
EXPECT
(
m1
==
m2
);
}
TEST_CASE
(
conv
)
...
...
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