print input

This commit is contained in:
2026-03-27 10:30:51 -07:00
parent f406f126ee
commit 8d93fc528e

View File

@@ -289,6 +289,7 @@ fn training() {
}
output_staging_buffer.unmap();
let inputs_start = inputs.len();
// discombolulate stride
for y in 0..size.y {
inputs.extend(
@@ -298,6 +299,8 @@ fn training() {
.map(|b| f32::from_le_bytes(b.try_into().unwrap())),
)
}
let inputs_end = inputs.len();
println!("inputs = {:?}", &inputs[inputs_start..inputs_end]);
texture_data.clear();
}