필터 지우기
필터 지우기

Estimate the resource utilization for custom board that has the Kintex7 chip family

조회 수: 2 (최근 30일)
I‘m using Matlab 2023a,Deep learning HDL Toolbox 1.5.
to estimate the resource utilization for custom board that has the Kintex7 chip family.
However, I encountered an error that 'Unable to extract total resource count from tool. Verify that the tool version/device information is correct.'
I used the dlhdl_device_registration.m file to register a custom device family.
hFPGADeviceFamily = { ...
kintex();...
kintex_ultrascale();...
arria10soc();...
zynq_ultrascale();...
zynq7000()
};
end
function hFPGADeviceFamily = kintex()
hFPGADeviceFamily = hdlcoder.FPGADeviceInfo('Name', 'Kintex7');
hFPGADeviceFamily.Vendor = 'Xilinx';
hFPGADeviceFamily.DSPWidth = [25, 18];
hFPGADeviceFamily.RAMWidth = 36;
hFPGADeviceFamily.SplitRAMWidth = 18;
hFPGADeviceFamily.RAMDepth = 1024;
end
%Use the command
>> hPC = dlhdl.ProcessorConfig;
>> hPC.TargetPlatform = 'Generic Deep Learning Processor';
>> hPC.SynthesisToolChipFamily = 'Kintex7';
>> hPC.SynthesisToolDeviceName = 'xc7k325tffg900-2';
>> hPC.estimateResources
It given the error:
Warning:: Device family "Kintex7" is not supported for LUT Estimation. Supported families are Zynq, Zynq UltraScale+ and Arria 10.
> :dnnfpga.estimate.getLUTCount
: dnnfpga.estimate/EstimatorNetworkArea/estimateArea
: dnnfpga.config/ProcessorConfigBase/estimateArea
: dnnfpga.config/ProcessorConfigBase/estimateResources
Unable to extract total resource count from tool. Verify that the tool version/device information is correct.

답변 (1개)

Kiran Kintali
Kiran Kintali 2023년 10월 7일
This is a known issue and is being actively resolved.
It is due to a bug in the format of the device list for Kintex7 family related package and speed specification.
Please reach out to tech support for the workaround related to resolving this issue.

제품


릴리스

R2023a

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by