首页 > 其他分享 >Vivado生成bitstream时报错[Opt 31-67] Problem: A LUT3 cell in the design is missing a connection on input

Vivado生成bitstream时报错[Opt 31-67] Problem: A LUT3 cell in the design is missing a connection on input

时间:2023-10-20 16:15:50浏览次数:41  
标签:Opt status LUT3 LUT pin I1 端口 cell 模块

这个原因主要是因为有一个引脚没有用到,解决方法。

1、打开Schematic。
2、根据提示的模块去找,比如说我的报错。
[Opt 31-67] Problem: A LUT3 cell in the design is missing a connection on input pin I1, which is used by the LUT equation. This pin has either been left unconnected in the design or the connection was removed due to the trimming of unused logic. The LUT cell name is: fft_inst/xfft_0_inst/U0/i_synth/axi_wrapper/gen_status_channel.status_fifo/gen_non_real_time.fifo/fifo0/add_1[3]_i_2.
重点就在cell name后,可以根据这个路线一直找到出错的模块add_1[3]_i_2。
3、找到后边就会有一堆LUT,肉眼不太好找了,所以可以选择使用TCL命令查找,比如我现在在axi_wrapper中找gen_status_channel.status_fifo这个模块,那么我就可以在TCL console中输入命令:

select_objects [get_cells fft_inst/xfft_0_inst/U0/i_synth/axi_wrapper/gen_status_channel.status_fifo

然后这样vivado就可以自动把模块高亮出来。

4、最后找到出问题的模块就可以找到出问题的端口,我的出问题的端口在上面有提示on input pin I1,也就是l1端口,因此从l1端口顺着往前找顶层模块的端口即可发现问题。

标签:Opt,status,LUT3,LUT,pin,I1,端口,cell,模块
From: https://www.cnblogs.com/ZhengLijie/p/17777326.html

相关文章

  • linear optimization
    \(\begin{array}{ll}\operatorname{minimize}&f_0(x)\\\text{subjectto}&f_i(x)\leqb_i,\quadi=1,\ldots,m.\end{array}\)Asanimportantexample,theoptimizationproblem(1.1)iscalledalinearprogramiftheobjectiveandc......
  • 麒麟v10 SP3上的19c rac,optachauto安装补丁出错
    1、麒麟V10SP3上新安装的一套19cRAC,在使用opatchauto打补丁时报错,具体信息如下所示。[root@db01soft]#/u01/app/19.3.0/grid/OPatch/opatchautoapply/soft/35037840/ OPatchautosessionisinitiatedatTue0ct1011:04:452023 Systeminitializationlogfi......
  • ASP.NET Core Minimal API之optional route parameter with default value and option
    publicstaticvoidMain(string[]args){varbuilder=WebApplication.CreateBuilder(args);varapp=builder.Build();app.MapGet("/product/{name}",(stringname)=>$"Theproductis{name}").WithName("product&......
  • 5.3 Optimal Codes
    FromSection5.2,weknowthatanyprefixcodesatisfiesKraftinequality.Ourgoalistodesignprefixcodeswithminimum\(L(C)\),byKraftinequality,suchgoalisequivalenttofinding\(l_1,l_2,...,l_m\)satisfyingKraftinequalityand\(L(C)......
  • Argument for '--moduleResolution' option must be: 'node', Unknown compiler opt
    node_modules/@vue/tsconfig/tsconfig.json(12,25):errorTS6046:Argumentfor'--moduleResolution'optionmustbe:'node','classic','node16','nodenext'.node_modules/@vue/tsconfig/tsconfig.json(33,5):erro......
  • Java8新特性之Optional容器(七)
    1.Optional介绍Optional是Java8提供的一个容器对象,可以包含一个为null或者不为null的对象;使用该对象可以更方便的避免项目中的NPE,在新版的SpringDataJPA中已经实现了对该类的支持;注意该类是被final修饰的,同时没有实现任何接口;publicfinalclassOptional<T>{pri......
  • Vue报错Syntax Error:TypeError: this.getOptions is not a function的解决方法~
    前几天在vue运行项目过程中报错了,这个方法是关于Vue报错SyntaxError:TypeError:this.getOptionsisnotafunction的解决方法(1)报错一(2)报错二~1.1问题分析首先,检查代码,并没有什么错误的地方;其次,涉及到这个问题,可能就是版本原因了,安装的sass-loader版本太高,卸载安装低......
  • Backtrader - AttributeError: 'OptReturn' object has no attribute 'datas'
    1.0ErrorTraceback(mostrecentcalllast):File"D:/PycharmProjects/dbpower.backtrader.001/app/main_machine_learning.py",line191,in<module>img=cerebro.plot(style='line',plotdist=0.1,grid=True)File"D:\P......
  • 问题记录贴:vue-i18n在弹出框中$t()报错:TypeError: Cannot read property '_t' of unde
    网上有用的解决方法:vue国际化在弹出框中$t()报错:TypeError:Cannotreadproperty'_t'ofundefined大佬给出的解决方法:弹窗是一个新的Vue对象,只需要单独给弹窗重新绑定i18n即可。代码://dialog/main.jsimportcustomDialogfrom'./dialog.vue'importi18nfrom'@/i18n'......
  • 什么是Apache Access Log中的OPTIONS *的含义
    访问日志在Apache的AccessLog中会看到很多如下的访问日志:127.0.0.1--[05/May/2011:10:54:07+0800]"OPTIONS*HTTP/1.0"200-127.0.0.1--[05/May/2011:10:54:08+0800]"OPTIONS*HTTP/1.0"200-127.0.0.1--[05/May/2011:10:54:09+0800]"OPTIONS......