Skip to content

Commit

Permalink
#8579: fix SFPU failures (also related to #8618 #8619)
Browse files Browse the repository at this point in the history
  • Loading branch information
vtangTT authored and arakhmati committed May 22, 2024
1 parent be18d98 commit b2d88e4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/tt_metal/test_utils/packing.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ std::vector<PackType> pack_vector(const std::vector<ValueType>& values) {
unsigned int index = 0;
std::for_each(results.begin(), results.end(), [&](PackType& result) {
for (unsigned j = 0; j < num_values_to_pack; j++) {
result |= values[index].to_packed() << (index * ValueType::SIZEOF * CHAR_BIT);
result |= values[index].to_packed() << (j * ValueType::SIZEOF * CHAR_BIT);
index++;
}
return result;
Expand Down

0 comments on commit b2d88e4

Please sign in to comment.