Calls wait() or flush() depending on the sync mode
| 114 | |
| 115 | // Calls wait() or flush() depending on the sync mode |
| 116 | void sync(SyncMode syncMode) |
| 117 | { |
| 118 | if (syncMode == SyncMode::Blocking) |
| 119 | wait(); |
| 120 | else |
| 121 | flush(); |
| 122 | } |
| 123 | |
| 124 | virtual int getMaxWorkGroupSize() const; |
| 125 | virtual int getSubgroupSize() const; |
no outgoing calls
no test coverage detected