Renesas RZ/V2L
DRP-AI
package from Renesas’ website as well. Please consult this link for the software download link. Thus, all of the files needed for the build are:
RTK0EF0045Z0024AZJ-v3.0.6.zip
RTK0EF0045Z13001ZJ-v1.2.2_EN.zip
RTK0EF0045Z15001ZJ-v1.2.2_EN.zip
oss_pkg_rzv_drpai_v7.50.7z
r11an0549ej0750-rzv2l-drpai-sp.zip
Next, you need to download the NodeJS v18 patch archive here.
Next we need to download a specific layer from Edge Impulse to properly setup/install the DRP-AI and TVM SDK. The zip file for the layer can be downloaded from here. Once downloaded, you will then place the file into the same directory as the RTK0EF0045Z15001ZJ-v1.2.2_EN.zip above.
After putting all of these files into a single directory + patch file, you will need to create and patch your V2L yocto build environment as follows (this can be exported into a script that can be run):
#!/bin/bash
DIR=pwd
export TEMPLATECONF=$DIR/meta-renesas/meta-rzv2l/docs/template/conf/
export MACHINE=smarc-rzv2l
pwd
export TEMPLATECONF=$DIR/meta-renesas/meta-rzv2l/docs/template/conf/
export MACHINE=smarc-rzv2l
source poky/oe-init-build-env
time bitbake core-image-weston
Renesas documentation here then shows you different build options + how to flash your compiled images onto your V2L board. Once your build completes, your files that will be used in those subsequent instructions called out here to flash your V2L board can be found here:
#!/bin/bash
DIR=pwd
ls -al $DIR/build/tmp/deploy/images/smarc-rzv2l
screen
screen
to the host machine and then execute the following command from Linux to access the board:
root
--clean
.
Device connected to Edge Impulse.
Selecting the target from the training page
eim
model that you can use with the above runner as follows:
Go to the deployment page and select:
EIM model for the RZ/V2L
runner
and you will see both the camera feed and the classification results.
drp-ai
library that uses our C++ Edge Impulse SDK and models headers that run on the hardware accelerator. If you would like to integrate the model source code into your applications and benefit from the drp-ai
then you need to select the drp-ai
library.
We have an example showing how to use the drp-ai
library that can be found in Deploy your model as a DRP-AI library.
DRP-AI library