vx_vendors.h 2.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. /*
  2. * Copyright (c) 2012-2017 The Khronos Group Inc.
  3. *
  4. * Licensed under the Apache License, Version 2.0 (the "License");
  5. * you may not use this file except in compliance with the License.
  6. * You may obtain a copy of the License at
  7. *
  8. * http://www.apache.org/licenses/LICENSE-2.0
  9. *
  10. * Unless required by applicable law or agreed to in writing, software
  11. * distributed under the License is distributed on an "AS IS" BASIS,
  12. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. * See the License for the specific language governing permissions and
  14. * limitations under the License.
  15. */
  16. #ifndef _OPENVX_VENDORS_H_
  17. #define _OPENVX_VENDORS_H_
  18. /*!
  19. * \file
  20. * \brief The Vendor ID list for OpenVX.
  21. */
  22. /*! \brief The Vendor ID of the Implementation. As new vendors submit their
  23. * implementations, this enumeration will grow.
  24. * \ingroup group_basic_features
  25. */
  26. enum vx_vendor_id_e {
  27. VX_ID_KHRONOS = 0x000, /*!< \brief The Khronos Group */
  28. VX_ID_TI = 0x001, /*!< \brief Texas Instruments, Inc. */
  29. VX_ID_QUALCOMM = 0x002, /*!< \brief Qualcomm, Inc. */
  30. VX_ID_NVIDIA = 0x003, /*!< \brief NVIDIA Corporation */
  31. VX_ID_ARM = 0x004, /*!< \brief ARM Ltd. */
  32. VX_ID_BDTI = 0x005, /*!< \brief Berkley Design Technology, Inc. */
  33. VX_ID_RENESAS = 0x006, /*!< \brief Renasas Electronics */
  34. VX_ID_VIVANTE = 0x007, /*!< \brief Vivante Corporation */
  35. VX_ID_XILINX = 0x008, /*!< \brief Xilinx Inc. */
  36. VX_ID_AXIS = 0x009, /*!< \brief Axis Communications */
  37. VX_ID_MOVIDIUS = 0x00A, /*!< \brief Movidius Ltd. */
  38. VX_ID_SAMSUNG = 0x00B, /*!< \brief Samsung Electronics */
  39. VX_ID_FREESCALE = 0x00C, /*!< \brief Freescale Semiconductor */
  40. VX_ID_AMD = 0x00D, /*!< \brief Advanced Micro Devices */
  41. VX_ID_BROADCOM = 0x00E, /*!< \brief Broadcom Corporation */
  42. VX_ID_INTEL = 0x00F, /*!< \brief Intel Corporation */
  43. VX_ID_MARVELL = 0x010, /*!< \brief Marvell Technology Group Ltd. */
  44. VX_ID_MEDIATEK = 0x011, /*!< \brief MediaTek, Inc. */
  45. VX_ID_ST = 0x012, /*!< \brief STMicroelectronics */
  46. VX_ID_CEVA = 0x013, /*!< \brief CEVA DSP */
  47. VX_ID_ITSEEZ = 0x014, /*!< \brief Itseez, Inc. */
  48. VX_ID_IMAGINATION=0x015, /*!< \brief Imagination Technologies */
  49. VX_ID_NXP = 0x016, /*!< \brief NXP Semiconductors */
  50. VX_ID_VIDEANTIS = 0x017, /*!< \brief Videantis */
  51. VX_ID_SYNOPSYS = 0x018, /*!< \brief Synopsys */
  52. VX_ID_CADENCE = 0x019, /*!< \brief Cadence */
  53. VX_ID_HUAWEI = 0x01A, /*!< \brief Huawei */
  54. VX_ID_SOCIONEXT = 0x01B, /*!< \brief Socionext */
  55. /* Add new vendor code above this line */
  56. VX_ID_USER = 0xFFE, /*!< \brief For use by vxAllocateUserKernelId and vxAllocateUserKernelLibraryId */
  57. VX_ID_MAX = 0xFFF,
  58. /*! \brief For use by all Kernel authors until they can obtain an assigned ID. */
  59. VX_ID_DEFAULT = VX_ID_MAX,
  60. };
  61. #endif