Skip to content

Commit

Permalink
Update jit.cpp
Browse files Browse the repository at this point in the history
  • Loading branch information
richagadgil authored Jan 9, 2025
1 parent 1628c06 commit ae5c0a5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/gpu/jit.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -449,7 +449,7 @@ TEST_CASE(assert_type_min_max)
t))
continue;
auto name = migraphx::shape::cpp_type(t);
if((t == migraphx::shape::half_type) or (t == migraphx::shape::bf16_type))
if(contains({migraphx::shape::half_type, migraphx::shape::bf16_type}, t))
name.insert(0, "migraphx::");
migraphx::shape::visit(t, [&](auto as) {
std::string min = "";
Expand Down

0 comments on commit ae5c0a5

Please sign in to comment.