CoreFlow 1.0.0
A modern orchestration and execution runtime
Loading...
Searching...
No Matches
Kernel: Tensor Table Lookup

Functions

VX_API_ENTRY vx_node VX_API_CALL vxTensorTableLookupNode (vx_graph graph, vx_tensor input1, vx_lut lut, vx_tensor output)
 [Graph] Performs LUT on element values in the input tensor data.
 
VX_API_ENTRY vx_status VX_API_CALL vxuTensorTableLookup (vx_context context, vx_tensor input1, vx_lut lut, vx_tensor output)
 [Immediate] Performs LUT on element values in the input tensor data.
 

Detailed Description

Function Documentation

◆ vxTensorTableLookupNode()

VX_API_ENTRY vx_node VX_API_CALL vxTensorTableLookupNode ( vx_graph graph,
vx_tensor input1,
vx_lut lut,
vx_tensor output )

#include <vx_nodes.h>

[Graph] Performs LUT on element values in the input tensor data.

Parameters
[in]graphThe handle to the graph.
[in]input1Input tensor data. Implementations must support input tensor data type VX_TYPE_INT16 with fixed_point_position 8, and tensor data types VX_TYPE_UINT8, with fixed_point_position 0.
[in]lutThe look-up table to use, of type vx_lut. The elements of input1 are treated as unsigned integers to determine an index into the look-up table. The data type of the items in the look-up table must match that of the output tensor.
[out]outputThe output tensor data with the same dimensions as the input tensor data.
Returns
vx_node.
A node reference vx_node. Any possible errors preventing a successful creation should be checked using vxGetStatus.

◆ vxuTensorTableLookup()

VX_API_ENTRY vx_status VX_API_CALL vxuTensorTableLookup ( vx_context context,
vx_tensor input1,
vx_lut lut,
vx_tensor output )

#include <vxu.h>

[Immediate] Performs LUT on element values in the input tensor data.

Parameters
[in]contextThe reference to the overall context.
[in]input1Input tensor data. Implementations must support input tensor data type VX_TYPE_INT16 with fixed_point_position 8, and tensor data types VX_TYPE_UINT8, with fixed_point_position 0.
[in]lutThe look-up table to use, of type vx_lut. The elements of input1 are treated as unsigned integers to determine an index into the look-up table. The data type of the items in the look-up table must match that of the output tensor.
[out]outputThe output tensor data with the same dimensions as the input tensor data.
Returns
A vx_status_e enumeration.
Return values
VX_SUCCESSSuccess
*An error occurred. See vx_status_e.