oclh_h_base_dev_clapi_wrappers.h 1.3 KB

1234567891011121314151617181920212223242526272829
  1. /*
  2. * oclh_h_base_dev_clapi_wrappers.h
  3. * Author: havock
  4. */
  5. #ifndef OCLH_H_BASE_DEV_CLAPI_WRAPPERS_H_
  6. #define OCLH_H_BASE_DEV_CLAPI_WRAPPERS_H_ 1
  7. #include <CL/opencl.h>
  8. cl_bool _ghf_getDevInf_bool( const cl_device_id clDev,
  9. const cl_device_info InfoVal,
  10. cl_int* const pclErr);
  11. char* _ghf_getDevInf_charptr(const cl_device_id clDev,
  12. const cl_device_info InfoVal,
  13. cl_int* const pclErr);
  14. cl_uint _ghf_getDevInf_cluint( const cl_device_id clDev,
  15. const cl_device_info InfoVal,
  16. cl_int* const pclErr);
  17. cl_ulong _ghf_getDevInf_clulong(const cl_device_id clDev,
  18. const cl_device_info InfoVal,
  19. cl_int* const pclErr);
  20. size_t _ghf_getDevInf_size( const cl_device_id clDev,
  21. const cl_device_info InfoVal,
  22. cl_int* const pclErr);
  23. uintptr_t _ghf_getDevInf_uintptr(const cl_device_id clDev,
  24. const cl_device_info InfoVal,
  25. cl_int* const pclErr);
  26. #endif /* OCLH_H_BASE_DEV_CLAPI_WRAPPERS_H_ */