Go to file
Jiang Bo 7972af0697 Initial Commit for VERSION 1.1.28
Signed-off-by: Jiang Bo <bo.jiang@verisilicon.com>
2021-01-11 18:27:48 +08:00
include/tim/vx Initial Commit for VERSION 1.1.28 2021-01-11 18:27:48 +08:00
prebuilt-sdk Initial Commit for VERSION 1.1.28 2021-01-11 18:27:48 +08:00
samples/lenet Initial Commit for VERSION 1.1.28 2021-01-11 18:27:48 +08:00
src/tim/vx Initial Commit for VERSION 1.1.28 2021-01-11 18:27:48 +08:00
toolchains Initial Commit for VERSION 1.1.28 2021-01-11 18:27:48 +08:00
BUILD.bazel Initial Commit for VERSION 1.1.28 2021-01-11 18:27:48 +08:00
LICENSE Initial Commit for VERSION 1.1.28 2021-01-11 18:27:48 +08:00
README.md Initial Commit for VERSION 1.1.28 2021-01-11 18:27:48 +08:00
VERSION Initial Commit for VERSION 1.1.28 2021-01-11 18:27:48 +08:00
WORKSPACE Initial Commit for VERSION 1.1.28 2021-01-11 18:27:48 +08:00

README.md

TIM-VX - Tensor Interface Module for OpenVX

TIM-VX is a software integration module provided by VeriSilicon to facilitate deployment of Neural-Networks on OpenVX enabled ML accelerators. It serves as the backend binding for runtime frameworks such as Android NN, Tensorflow-Lite, MLIR, TVM and more.

Main Features

  • Over 130 internal operators with rich format support for both quantized and floating point
  • Simplified binding API calls to create Tensors and Operations
  • Dynamic graph construction and supports shape inferencing
  • Built-in custom layer extensions
  • A set of utility functions for debugging

Roadmap

Roadmap of TIM-VX will be updated here in the future.

Get started

Build and Run

TIM-VX uses bazel build system by default. Install bazel first to get started.

TIM-VX needs to be compiled and linked against VeriSilicon OpenVX SDK which provides related header files and pre-compiled libraries. A default linux-x86_64 SDK is provided which contains the simulation environment on PC. Platform specific SDKs can be obtained from respective SoC vendors.

To build TIM-VX

bazel build libtim-vx.so

To run sample LeNet

bazel build //samples/lenet:lenet_asymu8_cc
bazel run //samples/lenet:lenet_asymu8_cc

Get familiar with OpenVX spec

To development for TIM-VX, you first need to get familiar with OpenVX API and OpenVX NN Extension API. Please head over to Khronos to read the spec.