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

1 回表示 (過去 30 日間)
Ruikai
Ruikai 2023 年 10 月 7 日
回答済み: Kiran Kintali 2023 年 10 月 7 日
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