You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
CMSIS-DSP/ComputeGraph/documentation/PythonAPI.md

721 B

Python API

When you describe a graph and generate a scheduler there are 4 mandatory steps and one optional one:

  • Describing the nodes
  • Adding the nodes to the graph
  • Computing the schedule
  • Generating the C++ and/or Python scheduler implementation
  • Optional : Generating a graphviz .dot file with the graphical representation of the graph
  1. Description of the nodes

  2. Adding nodes to the graph

  3. Schedule computation

  4. Code generation

    1. C++ Code generation

    2. Python code generation

    3. Graphviz representation

    4. Common options