Merge commit '45be7415864b839cc27b0455bc6eae177b4832cf' into develop

This commit is contained in:
assistant-librarian[bot]
2025-11-01 20:11:51 +00:00
parent 420486464a
commit c09de8fa6f
3 changed files with 230 additions and 1 deletions

View File

@@ -1076,7 +1076,7 @@ struct tile_window_with_static_lengths
using ThreadBuf = thread_buffer<DataType, 2>;
auto buf = tensor_view.template get_vectorized_elements<ThreadBuf>(coord, 0);
auto value = buf.at(number<0>{}); // Extract first element from thread buffer
printf(" %s[%d,%d] = %f", label, i, j, static_cast<float>(value));
printf(" %s[%d,%d] = %f", label, i, j, type_convert<float>(value));
}
printf("\n");
}