* \brief Returns the free memory on the device in bytes. * \return the free memory in bytes */
| 338 | * \return the free memory in bytes |
| 339 | */ |
| 340 | static size_t getFreeDeviceMemory() |
| 341 | { |
| 342 | size_t free, total; |
| 343 | CUMAT_SAFE_CALL(cudaMemGetInfo(&free, &total)); |
| 344 | return free; |
| 345 | } |
| 346 | |
| 347 | /** |
| 348 | * \brief Returns the total available memory on the device in bytes. |
nothing calls this directly
no outgoing calls
no test coverage detected