Package: dlhdl
Configure interface to target board for workflow deployment
Use the dlhdl.Target
object to create the interface to deploy the
dlhdl.Workflow
object to your target hardware.
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.
hTarget = dlhdl.Target('Xilinx','Interface','JTAG') hTarget = Target with properties: Vendor: 'Xilinx' Interface: JTAG
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