Intel® FPGA AI Suite: SoC Design Example User Guide

ID 768979
Date 12/01/2023
Public

A newer version of this document is available. Customers should click here to go to the newest version.

Document Table of Contents

3.6.4. Copying the Compiled Graphs to the SD card

To copy the required demonstration files to the /home/root/resnet-50-tf folder on the SD card:

  1. In the serial console, create directories to receive the model data and sample images:
    mkdir ~/resnet-50-tf
  2. On the development host, use the secure copy (scp) command to copy the data to the board:
    TARGET_IP=<arria10 Hostname>.local
    TARGET=”root@$TARGET_IP:~/resnet-50-tf”
    demodir=$COREDLA_WORK/demo
    scp $demodir/*.bin $TARGET/.
    scp -r $demodir/sample_images/ $TARGET/.
    scp $COREDLA_ROOT/example_architectures/A10_Performance.arch $TARGET/.
  3. [Optional] In the serial console run the sync command to ensure that the data is flushed to disk.