| 533 | |
| 534 | template<class T, class scan_state_type> |
| 535 | __global__ |
| 536 | void complete_value(T* values, scan_state_type scan_state) |
| 537 | { |
| 538 | values[blockIdx.x] = scan_state.get_complete_value(blockIdx.x); |
| 539 | } |
| 540 | |
| 541 | TYPED_TEST(RocprimDeviceScanTests, LookBackScanGetCompleteValue) |
| 542 | { |
nothing calls this directly
no test coverage detected