Return the cl_device_id associated with the program object. This can be the device associated with context on which the program object has been created or can be device that was specified when a progam object was created using clCreateProgramWithBinary.
| 61 | // has been created or can be device that was specified when a progam object |
| 62 | // was created using clCreateProgramWithBinary. |
| 63 | cl_device_id GetDeviceId() const { return device_id_; } |
| 64 | |
| 65 | Status GetBinary(std::vector<uint8_t>* result) const; |
| 66 |