| 440 | ///@see buffer |
| 441 | template<typename T> |
| 442 | buffer<T> create_bo_buffer(size_t size){ |
| 443 | assert(size > 0); |
| 444 | LOG_VERBOSE(2, "Creating buffer buffer with size: " << size); |
| 445 | return buffer<T>(*this->device, size); |
| 446 | } |
| 447 | |
| 448 | ///@brief Get the name of the xclbin |
| 449 | ///@return the name of the xclbin |
nothing calls this directly
no outgoing calls
no test coverage detected