| 458 | } |
| 459 | |
| 460 | void set_input_precallback() |
| 461 | { |
| 462 | //precallback user data |
| 463 | buffer<T> userdata( input.number_of_dimensions(), |
| 464 | input.lengths(), |
| 465 | input.strides(), |
| 466 | input.batch_size(), |
| 467 | input.distance(), |
| 468 | layout::real , |
| 469 | CLFFT_INPLACE |
| 470 | ); |
| 471 | |
| 472 | userdata.set_all_to_random_data(_lengths[0], 10); |
| 473 | |
| 474 | input *= userdata; |
| 475 | } |
| 476 | |
| 477 | void set_input_precallback_special() |
| 478 | { |
nothing calls this directly
no test coverage detected