* @brief Operator implementation to make the Kernel type hashable. * @param[in] lhs First Kernel instance to compare * @param[in] rhs Second Kernel instance to compare * @return True if lhs < rhs, false otherwise */
| 481 | * @return True if lhs < rhs, false otherwise |
| 482 | */ |
| 483 | inline bool operator<(const Kernel &lhs, const Kernel &rhs) { |
| 484 | return lhs.commandBuffer < rhs.commandBuffer; |
| 485 | } |
| 486 | |
| 487 | /** |
| 488 | * @brief A pool of kernels to manage GPU resources. For simple use cases this |
nothing calls this directly
no outgoing calls
no test coverage detected