Interface with the Deep Learning Processor IP Core (Execution Modes)
조회 수: 5 (최근 30일)
이전 댓글 표시
I want to try the streaming mode of execution like what is said in this article, but I don't know and can't set signals like StreamingMode register. Is there an example on how to perform these steps
댓글 수: 0
채택된 답변
Kiran Kintali
2025년 6월 18일
편집: Kiran Kintali
2025년 6월 18일
System Integration of Deep Learning Processor IP Core
This page shows lists the relevant examples
YOLOv2 deployment example specifically uses streaming mode of operation https://www.mathworks.com/help/visionhdl/ug/yolov2-vehicle-detector.html
%Configure deep learning IP core
%Set data processing mode to continuous streaming mode by setting StreamingMode register to true and FrameCount register to 0.
writePort(hFPGA, "StreamingMode", 1);
writePort(hFPGA, "FrameCount", 0);
%Pulse the inputStart signal to indicate to the deep learning IP core to start processing the data.
writePort(hFPGA, "inputStart", 0);
writePort(hFPGA, "inputStart", 1);
writePort(hFPGA, "inputStart", 0);
%Assert DUTProcStart to signal preprocess DUT to start writing the preprocessed data to the DDR.
writePort(hFPGA, "DUTProcStart", 1);
댓글 수: 0
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 System Integration of Deep Learning Processor IP Core에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!