当前位置: 首页 > wzjs >正文

外卖网站怎么做销量更换网站备案

外卖网站怎么做销量,更换网站备案,wordpress 主题 对比,物业公司名字免费起名大全相关阅读 SDC命令详解https://blog.csdn.net/weixin_45791458/category_12931432.html?spm1001.2014.3001.5482 在使用get_cells等命令访问设计对象时,需要指定设计对象的名字,这个名字是一个相对路径,本文就将对此进行讨论。 相对路径 使…

相关阅读

SDC命令详解https://blog.csdn.net/weixin_45791458/category_12931432.html?spm=1001.2014.3001.5482


        在使用get_cells等命令访问设计对象时,需要指定设计对象的名字,这个名字是一个相对路径,本文就将对此进行讨论。

相对路径

        使用相对路径来访问设计对象时,该对象必须位于当前设计(Current Design)中,且路径相对当前实例(Current Instance)指定,当前实例是当前设计中的一个层次单元,默认情况下当前实例就是当前设计,可以使用current_instance命令设置当前实例。

图1 一个简单的层次设计

        以图1为例,如果想在当前设计中Multiplier_Booth_STG_0中设置单元M1/C150的dont_touch属性,可以使用下面两种方法:

// 方法一
prompt> current_design      // 确认当前设计
Current design is 'Multiplier_Booth_STG_O'.
(Multiplier_Booth_STG_0}
prompt> set_dont_touch [get_cells M1/C150]
// 方法二
prompt> current_design      // 确认当前设计
Current design is 'Multiplier_Booth_STG_O'.
(Multiplier_Booth_STG_0}
prompt> current_instance .  // 确认当前实例,注意点的添加
Current instance is the top-level of design 'Multiplier_Booth_STG_0'.
prompt> current_instance M1 // 设置当前实例
Current instance is '/Multiplier_Booth_STG_0/M1'.
/Multiplier_Booth_STG_0/M1
prompt> set_dont_touch [get_cells C150]

        在方法一中,路径相对当前设计(即顶层设计)指定;在方法二中,路径相对实例M1指定。若想将当前实例重置为当前设计,只需要使用不带参数或使用/作为参数的current_instance命令即可,如下所示。

prompt> current_instance
Current instance is the top-level of design 'Multiplier_Booth_STG_0'.
prompt> current_instance /
Current instance is the top-level of design 'Multiplier_Booth_STG_0'.

        需要注意的是,如果使用current_design重新设置了当前设计,则当前实例也会被重置为当前设计,如下所示。

prompt> current_design            // 确认当前设计
Current design is 'Multiplier_Booth_STG_O'.
(Multiplier_Booth_STG_0}
prompt> current_design Datapath  // 设置当前设计
Current design is 'Datapath'.
{Datapath}
Current design is 'Datapath'.
prompt> current_instance .      // 确认当前实例,注意点的添加
Current instance is the top-level of design 'Datapath'.

        顺带一提,除了使用current_instance命令设置当前实例,current_instance变量也可以设置和查询当前实例,如下所示。

prompt> current_design            // 确认当前设计
Current design is 'Multiplier_Booth_STG_O'.
(Multiplier_Booth_STG_0}
prompt> current_instance .        // 确认当前实例,注意点的添加
Current instance is the top-level of design 'Multiplier_Booth_STG_0'.
prompt> set current_instance M1   // 设置当前实例
Current instance is '/Multiplier_Booth_STG_0/M1'.
/Multiplier_Booth_STG_0/M1
prompt> printvar current_instance // 直接查看变量值
current_instance = "/Multiplier_Booth_STG_0/M1"

        当使用report_cell等命令时,如果不指定对象作为参数,默认以当前实例为参数,如下所示。 

prompt> current_design            // 确认当前设计
Current design is 'Multiplier_Booth_STG_O'.
(Multiplier_Booth_STG_0}
prompt> current_instance .        // 确认当前实例,注意点的添加
Current instance is the top-level of design 'Multiplier_Booth_STG_0'.
prompt> report_cell               // 报告当前实例内的单元
****************************************
Report : cell
Design : Multiplier_Booth_STG_0
Version: W-2024.09-SP2
Date   : Sat Apr 12 13:17:57 2025
****************************************Attributes:b - black box (unknown)h - hierarchicaln - noncombinationalr - removableu - contains unmapped logicCell                      Reference       Library             Area  Attributes
--------------------------------------------------------------------------------
M1                        Datapath                        0.000000  h, n, u
M2                        Controller                      0.000000  h, n, u
--------------------------------------------------------------------------------
Total 2 cells                                             0.000000
prompt> set current_instance M1   // 设置当前实例
Current instance is '/Multiplier_Booth_STG_0/M1'.
/Multiplier_Booth_STG_0/M1
prompt> report_cell               // 报告当前实例内的单元
****************************************
Report : cell
Design : Multiplier_Booth_STG_0/M1 (Datapath)
Version: W-2024.09-SP2
Date   : Sat Apr 12 13:21:17 2025
****************************************Attributes:b - black box (unknown)c - control logich - hierarchicaln - noncombinationalr - removables - synthetic operatoru - contains unmapped logicCell                      Reference       Library             Area  Attributes
--------------------------------------------------------------------------------
B_0                       GTECH_BUF       gtech           0.000000  c, u
B_1                       GTECH_BUF       gtech           0.000000  c, u
C128                      *SELECT_OP_5.1_5.1_1            0.000000  s, u
C129                      *SELECT_OP_2.8_2.1_8            0.000000  s, u
C130                      *SELECT_OP_2.4_2.1_4            0.000000  s, u
C131                      *SELECT_OP_5.1_5.1_1            0.000000  s, u
C132                      *SELECT_OP_3.8_3.1_8            0.000000  s, u
C142                      GTECH_OR2       gtech           0.000000  c, u
C143                      GTECH_OR2       gtech           0.000000  c, u
C144                      GTECH_OR2       gtech           0.000000  c, u
C147                      GTECH_AND2      gtech           0.000000  c, u
C148                      GTECH_AND2      gtech           0.000000  c, u
C150                      GTECH_AND2      gtech           0.000000  c, u
C152                      GTECH_AND2      gtech           0.000000  c, u
C153                      GTECH_AND2      gtech           0.000000  c, u
C154                      GTECH_AND2      gtech           0.000000  c, u
C156                      GTECH_AND2      gtech           0.000000  c, u
C157                      GTECH_AND2      gtech           0.000000  c, u
C158                      GTECH_AND2      gtech           0.000000  c, u
I_0                       GTECH_NOT       gtech           0.000000  u
I_1                       GTECH_NOT       gtech           0.000000  c, u
I_2                       GTECH_NOT       gtech           0.000000  c, u
I_3                       GTECH_NOT       gtech           0.000000  c, u
I_4                       GTECH_NOT       gtech           0.000000  c, u
add_28_S2                 *ADD_UNS_OP_8_8_8               0.000000  s, u
multiplicand_reg[0]       **SEQGEN**                      0.000000  n, u
multiplicand_reg[1]       **SEQGEN**                      0.000000  n, u
multiplicand_reg[2]       **SEQGEN**                      0.000000  n, u
multiplicand_reg[3]       **SEQGEN**                      0.000000  n, u
multiplicand_reg[4]       **SEQGEN**                      0.000000  n, u
multiplicand_reg[5]       **SEQGEN**                      0.000000  n, u
multiplicand_reg[6]       **SEQGEN**                      0.000000  n, u
multiplicand_reg[7]       **SEQGEN**                      0.000000  n, u
multiplier_reg[0]         **SEQGEN**                      0.000000  n, u
multiplier_reg[1]         **SEQGEN**                      0.000000  n, u
multiplier_reg[2]         **SEQGEN**                      0.000000  n, u
multiplier_reg[3]         **SEQGEN**                      0.000000  n, u
product_reg[0]            **SEQGEN**                      0.000000  n, u
product_reg[1]            **SEQGEN**                      0.000000  n, u
product_reg[2]            **SEQGEN**                      0.000000  n, u
product_reg[3]            **SEQGEN**                      0.000000  n, u
product_reg[4]            **SEQGEN**                      0.000000  n, u
product_reg[5]            **SEQGEN**                      0.000000  n, u
product_reg[6]            **SEQGEN**                      0.000000  n, u
product_reg[7]            **SEQGEN**                      0.000000  n, u
sub_31_S2                 *SUB_UNS_OP_8_8_8               0.000000  s, u
--------------------------------------------------------------------------------
Total 46 cells                                            0.000000

current_instance命令

        除了不带参数和使用当前实例下的层次单元作为参数,current_instance命令还可以接受其他类型的参数,就像Linux中的相对路径那样,可以接受.以表示当前实例和..表示上层实例,如下所示。

prompt> current_design        // 确认当前设计
Current design is 'Multiplier_Booth_STG_O'.
(Multiplier_Booth_STG_0}
prompt> current_instance .    // 确认当前实例,注意点的添加
Current instance is the top-level of design 'Multiplier_Booth_STG_0'.
prompt> current_instance ./M1 // 设置当前实例,与current_instance M1等价
Current instance is '/Multiplier_Booth_STG_0/M1'.
/Multiplier_Booth_STG_0/M1
prompt> current_instance ..   // 设置当前实例
Current instance is the top-level of design 'Multiplier_Booth_STG_0'.
prompt> current_instance ../../../M1   // 设置当前实例
Current instance is '/Multiplier_Booth_STG_0/M1'.

        上例还有两点细节可以注意:1、参数末尾加不加/效果相同,这与Linux中作为参数的目录类似;2、如果索引超出了当前设计,则视为当前设计。

类似概念

        在低功耗设计(UPF)中也存在类似当前实例的概念,叫做当前范围(Current Scope),使用set_scope命令可以设置当前范围,实际上使用本文的current_instance命令和current_instance变量也可以设置当前范围,它们之间的差别很小。


文章转载自:

http://sZsHHqYl.jfbgn.cn
http://i4POJD8m.jfbgn.cn
http://P8L2AGaj.jfbgn.cn
http://gulxU70o.jfbgn.cn
http://pvari3Ob.jfbgn.cn
http://W6hJhIIR.jfbgn.cn
http://dHKewmRm.jfbgn.cn
http://slF8xhTg.jfbgn.cn
http://Bif883Wt.jfbgn.cn
http://8JNt3q26.jfbgn.cn
http://ExmLWjTz.jfbgn.cn
http://kUDSGWmU.jfbgn.cn
http://taSC1W3Y.jfbgn.cn
http://6sDrN2Hr.jfbgn.cn
http://o5JdmpRO.jfbgn.cn
http://fRYTpAK0.jfbgn.cn
http://k72bzkPR.jfbgn.cn
http://VySHjd1o.jfbgn.cn
http://plH3Mg15.jfbgn.cn
http://uvOCw1RH.jfbgn.cn
http://a23yS62y.jfbgn.cn
http://2PQCdVjy.jfbgn.cn
http://oHZ2smmy.jfbgn.cn
http://UfnK6bPF.jfbgn.cn
http://2QxelBcQ.jfbgn.cn
http://fsnVsU2N.jfbgn.cn
http://behfBAeT.jfbgn.cn
http://C8wbQm3i.jfbgn.cn
http://xKnvngde.jfbgn.cn
http://fbkKhOsy.jfbgn.cn
http://www.dtcms.com/wzjs/606841.html

相关文章:

  • 精美的商城网站介绍十大跨境电商排名
  • 网站做301重定向网站如何设置广告
  • 浦江网站建设公司年会策划
  • 如何把网站做跳转浏览器链接茶叶网站建设公司
  • 做服务器的网站都有哪些视频 wordpress 主题
  • app网站建设方案国外好的电商网站有哪些
  • 医院网站源码 asp百度公司推广
  • 成都建网站的公司成品网站1688入口的功能介绍
  • 北滘网站建设公司自适应h5网站
  • 51制作视频mv网站北京网站建设中企云达
  • 什么网站可以做设计兼职中铁建设集团有限公司总部在哪
  • 网站的功能和作用是什么做警员编号网站
  • 东莞网站建设网站建设多少钱网站备案信息管理
  • 电子商务网站建设怎么做国外服务器做网站
  • 国外网站国内做二维码阿柳云wordpress
  • 域名解析网站打不开公司建一个网站多少费用
  • 五屏网站建设品牌wordpress的api
  • 如何建立一个网站卖货济源网站建设价格
  • 可以写代码的网站wordpress文章带描述的工具
  • 自己如何建一个网站网站的建设及维护报告
  • wordpress储存成都百度推广账户优化
  • 做网站的模版想自己做网站需要会什么软件
  • 服务器网站怎么用一元购物app
  • 如何仿做网站网站营销是什么
  • 网站推广方法渠道wordpress数据库忘记了
  • 北京商地网站建设公司网页制作培训价格
  • 网站的百度地图怎么做进入百度一下官网
  • 兰州网站开发企业网页认证怎么认证
  • 湛江建设工程交易中心网站wordpress 4.4.1 中文
  • 规划一个电子商务网站百度推广开户电话