Skip to content

Commit

Permalink
#13707: Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
sminakov-tt committed Oct 17, 2024
1 parent c161da2 commit 913ef66
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ namespace detail {
) {
TT_ASSERT(input_tensor.get_layout() == Layout::ROW_MAJOR);
TT_ASSERT(shape.logical_shape().volume() == input_tensor.get_logical_volume(),
"Required shape volume ({}) must match old shape volume ({})", shape.logical_shape().volume(), nput_tensor.get_logical_volume());
"Required shape volume ({}) must match old shape volume ({})", shape.logical_shape().volume(), input_tensor.get_logical_volume());
auto device_buffer = input_tensor.device_buffer();
uint32_t size_in_bytes = device_buffer->size();
std::vector<uint16_t> data_vec;
Expand Down

0 comments on commit 913ef66

Please sign in to comment.