TI Deep Learning Product User Guide
Dependent Software Components for TIDL

Introduction

TIDL is packaged with SDK and already installed during SDK installation. It can be found inside ${PSDKRA_PATH}/tidl_j7_08_00_01_00. Last few characters can be different depending on the version and device. User shall perform following steps to export required variables and install tools for ease of use.

Export the path of TIDL root directory as TIDL_INSTALL_PATH. All examples in this guide will use paths and filenames relative to this directory.

Linux users:
user@ubuntu-pc$ export TIDL_INSTALL_PATH=${PSDKRA_PATH}/tidl_j7_08_00_00_00
Windows users:
C:\> set TIDL_INSTALL_PATH=${PSDKRA_PATH}/tidl_j7_08_00_00_00

If you want to visualize the network after importing, it is required to build tidlModelGraphviz tool after installation. The visualization tool generates .svg files indicating the network flow. The details of the network visualization tool can be found here. Please note that this tool is only supported for Linux environment and not available on windows.

To build tidlModelGraphviz tool, install graphviz-dev package and export the variable TIDL_GRAPHVIZ_PATH

user\@ubuntu-pc\$ sudo apt install graphviz-dev
user\@ubuntu-pc\$ export TIDL_GRAPHVIZ_PATH=/usr

Build the tidlModelGraphviz tool by running make in TIDL_INSTALL_PATH.

user\@ubuntu-pc\$ cd ${TIDL_INSTALL_PATH}
user\@ubuntu-pc\$ TARGET_PLATFORM=PC make gv

External Dependent Components

All the required software componets by TIDL-RT are packaged with SDK except below external components

Software componentVersion
Google Protobuf 3.11.3
Google FlatBuffers1.12.0
Open CV 4.1.0

TIDL Build Instructions describes how to install these components to build TIDL-RT.

Note: TIDL-RT package comes with pre-built binaries and libraries, so you need to download these components only if you need to re-build the TIDL-RT software.