Skip to content

Commit

Permalink
Force slow code path to test in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
joelsmithTT committed Nov 4, 2024
1 parent 6b0bca3 commit 8790170
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tt_metal/common/bfloat4.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ constexpr int log2(int n) {
return log;
}

#if defined(__x86_64__)
#if 0
inline std::vector<float> unpack_bfp4_tiles_into_float_vec(const std::vector<uint32_t> &bfp_tiles, bool row_major_output, bool is_exp_a) {
ZoneScoped;

Expand Down
2 changes: 1 addition & 1 deletion tt_metal/common/bfloat8.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ inline std::vector<uint32_t> pack_fp32_vec_as_bfp8_tiles(const std::vector<float
return packed_result;
}

#if defined(__x86_64__)
#if 0
inline std::vector<float> unpack_bfp8_tiles_into_float_vec(const std::vector<uint32_t> &bfp8_tiles, bool row_major_output, bool is_exp_a) {
ZoneScoped;

Expand Down

0 comments on commit 8790170

Please sign in to comment.