Main Content
dlhdl.Target Class
Namespace: dlhdl
Description
Use the dlhdl.Target
object to create the interface to deploy the
dlhdl.Workflow
object to your target hardware.
Creation
creates a target object that you pass on to hTarget
= dlhdl.Target(Vendor
)dlhdl.Workflow
to deploy your
deep learning network to your target device.
creates a target object that you pass on to hTarget
= dlhdl.Target(Vendor
,Name,Value
) dlhdl.Workflow
, with additional
properties specified by one or more Name,Value
pair arguments.
Input Arguments
Properties
Methods
Examples
Create Target Object That Has a JTAG interface
hTarget = dlhdl.Target("Xilinx",Interface="JTAG") hTarget = Target with properties: Vendor: 'Xilinx' Interface: JTAG
Create Target Object That Has an Ethernet Interface and Set IP Address
hTarget = dlhdl.Target("Xilinx",Interface="Ethernet",IPAddress="192.168.1.101") hTarget = Target with properties: Vendor: 'Xilinx' Interface: Ethernet IPAddress: '192.168.1.101' Username: 'root' Port: 22
Create Target Object That has a File Interface
hTarget = dlhdl.Target("Xilinx",Interface = "File", Filename = "zcu102socinit")
hTarget = TargetFile with properties: Interface: File Path: './' FileHandle: -1 CR: '←↵' Filename: 'zcu102socinit' IsConnected: 0 hConn: [] Vendor: 'Xilinx'
Version History
Introduced in R2020b