Skip to content

Commit bb01608

Browse files
author
Z Stern
committed
Forwarding issue was ixed. Update test.
1 parent c614b50 commit bb01608

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

test/correctness/device_crop.cpp

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -114,9 +114,8 @@ int main(int argc, char **argv) {
114114
Halide::Buffer<int32_t> gpu_input = make_gpu_buffer();
115115
Halide::Buffer<int32_t> gpu_output = make_gpu_buffer();
116116

117-
// TODO(steven-johnson|abadams): Why doesn't the forward forward?
118-
gpu_input.get()->crop({ { 64, 64 }, { 64, 64 } });
119-
gpu_output.get()->crop({ { 64, 64 }, { 64, 64 } });
117+
gpu_input.crop({ { 64, 64 }, { 64, 64 } });
118+
gpu_output.crop({ { 64, 64 }, { 64, 64 } });
120119

121120
in.set(gpu_input);
122121

0 commit comments

Comments
 (0)