CLExt.pas 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. (*
  2. ** Copyright 1998-2002, NVIDIA Corporation.
  3. ** All Rights Reserved.
  4. **
  5. ** THE INFORMATION CONTAINED HEREIN IS PROPRIETARY AND CONFIDENTIAL TO
  6. ** NVIDIA, CORPORATION. USE, REPRODUCTION OR DISCLOSURE TO ANY THIRD PARTY
  7. ** IS SUBJECT TO WRITTEN PRE-APPROVAL BY NVIDIA, CORPORATION.
  8. **
  9. **
  10. *)
  11. (********************************************)
  12. (* *)
  13. (* OpenCL1.1 and Delphi and Windows *)
  14. (* *)
  15. (* created by : Maksym Tymkovych *)
  16. (* (niello) *)
  17. (* *)
  18. (* headers versions: 0.03 *)
  19. (* file name : clext.pas *)
  20. (* last modify : 13.02.10 *)
  21. (* license : BSD *)
  22. (* *)
  23. (* Site : www.niello.org.ua *)
  24. (* e-mail : [email protected] *)
  25. (* ICQ : 446-769-253 *)
  26. (* *)
  27. (*********Copyright (c) niello 2008-2011*****)
  28. unit CLExt;
  29. {$IFDEF FPC}
  30. {$MODE Delphi}
  31. {$ENDIF}
  32. interface
  33. const
  34. CL_NV_DEVICE_COMPUTE_CAPABILITY_MAJOR = $4000;
  35. CL_NV_DEVICE_COMPUTE_CAPABILITY_MINOR = $4001;
  36. CL_NV_DEVICE_REGISTERS_PER_BLOCK = $4002;
  37. CL_NV_DEVICE_WARP_SIZE = $4003;
  38. CL_NV_DEVICE_GPU_OVERLAP = $4004;
  39. CL_NV_DEVICE_KERNEL_EXEC_TIMEOUT = $4005;
  40. CL_NV_DEVICE_INTEGRATED_MEMORY = $4006;
  41. implementation
  42. end.