forked from rgiduthuri/openvx_tutorial
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvx_vendors.h
More file actions
70 lines (64 loc) · 3.14 KB
/
vx_vendors.h
File metadata and controls
70 lines (64 loc) · 3.14 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
/*
* Copyright (c) 2012-2015 The Khronos Group Inc.
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and/or associated documentation files (the
* "Materials"), to deal in the Materials without restriction, including
* without limitation the rights to use, copy, modify, merge, publish,
* distribute, sublicense, and/or sell copies of the Materials, and to
* permit persons to whom the Materials are furnished to do so, subject to
* the following conditions:
*
* The above copyright notice and this permission notice shall be included
* in all copies or substantial portions of the Materials.
*
* THE MATERIALS ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
* MERCHANTABILITY,\todo FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
* MATERIALS OR THE USE OR OTHER DEALINGS IN THE MATERIALS.
*/
#ifndef _OPENVX_VENDORS_H_
#define _OPENVX_VENDORS_H_
/*!
* \file
* \brief The Vendor ID list for OpenVX.
*/
/*! \brief The Vendor ID of the Implementation. As new vendors submit their
* implementations, this enumeration will grow.
* \ingroup group_basic_features
*/
enum vx_vendor_id_e {
VX_ID_KHRONOS = 0x000, /*!< \brief The Khronos Group */
VX_ID_TI = 0x001, /*!< \brief Texas Instruments, Inc. */
VX_ID_QUALCOMM = 0x002, /*!< \brief Qualcomm, Inc. */
VX_ID_NVIDIA = 0x003, /*!< \brief NVIDIA Corporation */
VX_ID_ARM = 0x004, /*!< \brief ARM Ltd. */
VX_ID_BDTI = 0x005, /*!< \brief Berkley Design Technology, Inc. */
VX_ID_RENESAS = 0x006, /*!< \brief Renasas Electronics */
VX_ID_VIVANTE = 0x007, /*!< \brief Vivante Corporation */
VX_ID_XILINX = 0x008, /*!< \brief Xilinx Inc. */
VX_ID_AXIS = 0x009, /*!< \brief Axis Communications */
VX_ID_MOVIDIUS = 0x00A, /*!< \brief Movidius Ltd. */
VX_ID_SAMSUNG = 0x00B, /*!< \brief Samsung Electronics */
VX_ID_FREESCALE = 0x00C, /*!< \brief Freescale Semiconductor */
VX_ID_AMD = 0x00D, /*!< \brief Advanced Micro Devices */
VX_ID_BROADCOM = 0x00E, /*!< \brief Broadcom Corporation */
VX_ID_INTEL = 0x00F, /*!< \brief Intel Corporation */
VX_ID_MARVELL = 0x010, /*!< \brief Marvell Technology Group Ltd. */
VX_ID_MEDIATEK = 0x011, /*!< \brief MediaTek, Inc. */
VX_ID_ST = 0x012, /*!< \brief STMicroelectronics */
VX_ID_CEVA = 0x013, /*!< \brief CEVA DSP */
VX_ID_ITSEEZ = 0x014, /*!< \brief Itseez, Inc. */
VX_ID_IMAGINATION=0x015, /*!< \brief Imagination Technologies */
VX_ID_COGNIVUE = 0x016, /*!< \brief CogniVue Corporation */
VX_ID_VIDEANTIS = 0x017, /*!< \brief Videantis */
VX_ID_SYNOPSYS = 0x018, /*!< \brief Synopsys */
/* Add new vendor code above this line */
VX_ID_MAX = 0xFFF,
/*! \brief For use by all Kernel authors until they can obtain an assigned ID. */
VX_ID_DEFAULT = VX_ID_MAX,
};
#endif