FPGA AI Suite Handbook

ID 863373
Date 11/21/2025
Public

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

Document Table of Contents

4.3.6.2.5.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=<Development Kit 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/<architecture file> $TARGET/.
    scp $COREDLA_ROOT/build_os.txt $TARGET/../app/
    where <architecture file> is one of the following files, depending on your development kit:
    • Agilex™ 5 FPGA E-Series 065B Modular Development Kit
      AGX5_Performance.arch
    • Agilex™ 7 FPGA I-Series Transceiver-SoC Development Kit
      AGX7_Performance_LayoutTransform.arch
    • Arria® 10 SX SoC FPGA Development Kit
      A10_Performance.arch
  3. [Optional] In the serial console run the sync command to ensure that the data is flushed to disk.