| 587 | } |
| 588 | |
| 589 | cl_int FFTBinaryLookup::buildFromBinary(const void * data, |
| 590 | size_t len) |
| 591 | { |
| 592 | cl_int err = buildFromLoadedBinary(data, len); |
| 593 | if (err != CL_SUCCESS) |
| 594 | return err; |
| 595 | |
| 596 | // write to the cache |
| 597 | this->populateCache(); |
| 598 | |
| 599 | return CL_SUCCESS; |
| 600 | } |
| 601 | |
| 602 | cl_program FFTBinaryLookup::buildProgramFromSource(const char * source, |
| 603 | cl_context context, |
nothing calls this directly
no test coverage detected