hdlcoder.runWorkflow

Run HDL code generation and deployment workflow

Syntax

  • hdlcoder.runWorkflow(DUT)
    example
  • hdlcoder.runWorkflow(DUT,workflow_config)
    example

Description

example

hdlcoder.runWorkflow(DUT) runs the HDL code generation and deployment workflow with default workflow configuration settings.

example

hdlcoder.runWorkflow(DUT,workflow_config) runs the HDL code generation and deployment workflow according to the specified workflow configuration, workflow_config.

A best practice is to use the HDL Workflow Advisor to configure the workflow, then export a workflow script. The commands in the workflow script create and configure a workflow configuration object that matches the settings in the HDL Workflow Advisor. The script includes the hdlcoder.runWorkflow command. To learn more, see Run HDL Workflow with a Script.

Examples

collapse all

To run the HDL workflow with default settings for a DUT subsystem, modelname/DUT, at the command line, enter:

hdlcoder.runWorkflow('modelname/DUT');

To run the HDL workflow with a workflow configuration object, hWC, for a DUT subsystem, modelname/DUT, at the command line, enter:

hdlcoder.runWorkflow('modelname/DUT', hWC);

Related Examples

Input Arguments

collapse all

Full path to the DUT, specified as a character vector.

Example: 'hdlcoder_led_blinking/led_counter'

HDL code generation and deployment workflow configuration, specified as an hdlcoder.WorkflowConfig object.

Introduced in R2015b

Was this topic helpful?