| 574 | } |
| 575 | |
| 576 | cl_int FFTBinaryLookup::buildFromLoadedBinary(const void * data, |
| 577 | size_t len) |
| 578 | { |
| 579 | cl_int err; |
| 580 | this->m_program = FFTBinaryLookup::buildProgramFromBinary((char*) data, |
| 581 | len, |
| 582 | this->m_context, |
| 583 | this->m_device, |
| 584 | err); |
| 585 | |
| 586 | return err; |
| 587 | } |
| 588 | |
| 589 | cl_int FFTBinaryLookup::buildFromBinary(const void * data, |
| 590 | size_t len) |
nothing calls this directly
no outgoing calls
no test coverage detected