2.5.2.1. Parameter Group: Global Parameters
                                                    
                                                    
                                                
                                                    
                                                    
                                                        2.5.2.2. Parameter Group: activation
                                                    
                                                    
                                                
                                                    
                                                    
                                                        2.5.2.3. Parameter Group: pe_array
                                                    
                                                    
                                                
                                                    
                                                    
                                                        2.5.2.4. Parameter Group: pool
                                                    
                                                    
                                                
                                                    
                                                    
                                                        2.5.2.5. Parameter Group: depthwise
                                                    
                                                    
                                                
                                                    
                                                    
                                                        2.5.2.6. Module: softmax
                                                    
                                                    
                                                
                                                    
                                                    
                                                        2.5.2.7. Parameter Group: dma
                                                    
                                                    
                                                
                                                    
                                                    
                                                        2.5.2.8. Parameter Group: xbar
                                                    
                                                    
                                                
                                                    
                                                    
                                                        2.5.2.9. Parameter Group: filter_scratchpad
                                                    
                                                    
                                                
                                                    
                                                    
                                                        2.5.2.10. Parameter Group: input_stream_interface
                                                    
                                                    
                                                
                                                    
                                                    
                                                        2.5.2.11. Parameter Group: output_stream_interface
                                                    
                                                    
                                                
                                                    
                                                    
                                                        2.5.2.12. Parameter Group: config_network
                                                    
                                                    
                                                
                                                    
                                                    
                                                        2.5.2.13. Parameter Group: layout_transform_params
                                                    
                                                    
                                                
                                            
                                        4.3. Running the FPGA AI Suite Ahead-of-Time (AOT) Splitter Utility
    Before you run the FPGA AI Suite AOT splitter utility, you must have the following files ready: 
    
  - A model compiled by the dla_compiler command. The model must target the HETERO:FPGA format and the output format must be open_vino_hetero. 
      For example, the following command compiles a model that targets a board with an Agilex™ 7 device to a file called RN50_Performance_b1.bin:cd $COREDLA_WORK/demo/models/public/resnet-50-tf/FP32 dla_compiler \ --march $COREDLA_ROOT/example_architectures/AGX7_Performance.arch \ --network-file ./resnet-50-tf.xml \ --foutput-format=open_vino_hetero \ --o $COREDLA_WORK/demo/RN50_Performance_b1.bin \ --batch-size=1 \ --fanalyze-performance 
- The input or inputs for model inference.
The AOT splitter utility outputs the artifacts to the current working directory. The command line options must have a compiled model, model inputs, and a path to the splitter utility plugins XML file.
To run the AOT splitter utility:
- Change directories to where you want the output files from the AOT splitter utility to go.
- Run the splitter utility command as follows:
    $COREDLA_WORK/runtime/build_Release/dla_aot_splitter/dla_aot_splitter \ -cm <full_path_to_compiled_model_file> \ -i < XXX-delimited list of inference input files> \ -plugins <full_path_to_plugins_aot_splitter.xml> \ [-bgr] The optional -bgr command option tells the AOT splitter to reverse the R, G, and B input channels for images before the channels are passed to the model. For example:$COREDLA_WORK/runtime/build_Release/dla_aot_splitter/dla_aot_splitter \ -cm $COREDLA_WORK/demo/RN50_Performance_b1.bin \ -i $COREDLA_WORK/demo/sample_images/val_00000000.bmp \ -plugins \ runtime/dla_aot_splitter/dla_aot_splitter_plugin/plugins_aot_splitter.xml -bgr 
   Running the splitter generates the following files: 
   
 - arch_build.mem and arch_build.bin 
- config.mem and config.bin 
- filter.mem and filter.bin 
- input.mem and input.bin 
- inter_size.mem 
- output_size.mem - For a description of the files, refer to Files Generated by the FPGA AI Suite Ahead-of-Time (AOT) Splitter Utility.