MCPcopy Create free account
hub / github.com/ROCm/rocPRIM / invoke_exclusive_scan

Function invoke_exclusive_scan

test/rocprim/test_device_scan.cpp:115–125  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

113
114template<bool Deterministic, typename Config = rocprim::default_config, typename... Args>
115constexpr hipError_t invoke_exclusive_scan(Args&&... args)
116{
117 if(Deterministic)
118 {
119 return rocprim::deterministic_exclusive_scan<Config>(std::forward<Args>(args)...);
120 }
121 else
122 {
123 return rocprim::exclusive_scan<Config>(std::forward<Args>(args)...);
124 }
125}
126
127// ---------------------------------------------------------
128// Test for scan ops taking single input value

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected