| 196 | } |
| 197 | |
| 198 | static void internalDeviceErrorFunc( |
| 199 | void *, const OSPError code, const char *str) |
| 200 | { |
| 201 | postStatusMsg() << "#OSPRay MPI InternalDevice: internal error " << code |
| 202 | << " : " << str; |
| 203 | throw std::runtime_error( |
| 204 | "OSPRay MPIInternalDevice internal error '" + std::string(str) + "'"); |
| 205 | } |
| 206 | |
| 207 | void MPIDistributedDevice::commit() |
| 208 | { |
nothing calls this directly
no test coverage detected