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

网站建设合同服务范围海口建站费用

网站建设合同服务范围,海口建站费用,西宁网站建设服务公司,dw入门基础教程目录 一、config.ini 二、config.json 三、stats.txt 官方教程#xff1a;gem5: Understanding gem5 statistics and output 在运行 gem5 之后#xff0c;除了仿真脚本打印的仿真信息外#xff0c;还会在根目录中名为 m5out 的目录中生成三个文件#xff1a; config.i…目录 一、config.ini 二、config.json 三、stats.txt 官方教程gem5: Understanding gem5 statistics and output 在运行 gem5 之后除了仿真脚本打印的仿真信息外还会在根目录中名为 m5out 的目录中生成三个文件 config.ini包含仿真过程中创建的每个 SimObject 及其参数值的列表。config.json与 config.ini 相同但以 JSON 格式存储。stats.txtgem5 仿真期间注册的所有统计信息的文本表示。 这些文件存储在名为 m5out 的目录中。 一、config.ini 该文件是仿真过程中所模拟内容的确切版本。它显示了每个被仿真的 SimObject 的所有参数无论这些参数是在配置脚本中设置的还是使用了默认值。 下面是从在运行 simple-config-chapter 中的 simple.py 配置文件时生成的 config.ini 文件中提取的内容。 该文件是仿真过程中所模拟内容的确切版本。它显示了每个被仿真的 SimObject 的所有参数无论这些参数是在配置脚本中设置的还是使用了默认值。 以下是我自己的配置文件时生成的 config.ini 文件中提取的内容只截取了部分。 在每个 SimObject 的描述开头首先是它在配置文件中创建时用方括号括起来的名称例如[system]。 接下来显示了每个 SimObject 的每个参数及其值在截取的部分主要看system包括在配置文件中未明确设置的参数。例如配置文件将时钟域设置为 1 GHz在此情况下为 1000 个时钟周期。然而它没有设置 cache line size在系统中为 64对象。 config.ini 文件类似于一个对照工具用来确保仿真配置和预期相同。gem5有多重设置默认值和覆盖默认值的可能所以对config.ini进行合理性检查用来确保子啊配置文件中设置的参数传递到实际的类中。 二、config.json 与 config.ini 相同但以 JSON 格式存储不作过多说明。 三、stats.txt gem5拥有一个灵活的统计信息生成系统。gem5统计信息在Statistics - gem5上有详细介绍。每个SimObject的实例化都有自己的统计信息。在仿真结束时或者当发出特殊的统计信息转储命令时所有SimObject的当前统计信息状态将被转储到一个文件中。 首先统计文件包含有关执行的一般统计信息 这里是我自己的配置文件只起示范作用 ---------- Begin Simulation Statistics ---------- simSeconds 0.000057 # Number of seconds simulated (Second) simTicks 57467000 # Number of ticks simulated (Tick) finalTick 57467000 # Number of ticks from beginning of simulation (restored from checkpoints and never reset) (Tick) simFreq 1000000000000 # The number of ticks per simulated second ((Tick/Second)) hostSeconds 0.03 # Real time elapsed on the host (Second) hostTickRate 2295882330 # The number of ticks simulated per host second (ticks/s) ((Tick/Second)) hostMemory 665792 # Number of bytes of host memory used (Byte) simInsts 6225 # Number of instructions simulated (Count) simOps 11204 # Number of ops (including micro ops) simulated (Count) hostInstRate 247382 # Simulator instruction rate (inst/s) ((Count/Second)) hostOpRate 445086 # Simulator op (including micro ops) rate (op/s) ((Count/Second))---------- Begin Simulation Statistics ---------- simSeconds 0.000490 # Number of seconds simulated (Second) simTicks 490394000 # Number of ticks simulated (Tick) finalTick 490394000 # Number of ticks from beginning of simulation (restored from checkpoints and never reset) (Tick) simFreq 1000000000000 # The number of ticks per simulated second ((Tick/Second)) hostSeconds 0.03 # Real time elapsed on the host (Second) hostTickRate 15979964060 # The number of ticks simulated per host second (ticks/s) ((Tick/Second)) hostMemory 657488 # Number of bytes of host memory used (Byte) simInsts 6225 # Number of instructions simulated (Count) simOps 11204 # Number of ops (including micro ops) simulated (Count) hostInstRate 202054 # Simulator instruction rate (inst/s) ((Count/Second)) hostOpRate 363571 # Simulator op (including micro ops) rate (op/s) ((Count/Second)) 统计信息开始于 ---------- Begin Simulation Statistics ----------。如果在gem5执行期间进行了多次统计信息转储则在单个文件中会有多个此类转储。常见于运行时间较长的应用程序或从检查点恢复时。 每个统计信息具有名称第一列、值第二列和描述前面带有#的最后一列后面是统计信息的单位。 大多数统计信息从其描述中很容易理解。其中几个重要的统计信息包括 sim_seconds它是仿真的总时间sim_insts它是CPU提交的指令数量host_inst_rate它告诉您gem5的性能。 接下来将打印SimObjects的统计信息。例如CPU统计信息包含有关系统调用数量、缓存系统和翻译缓冲区等的信息。 system.clk_domain.clock 1000 # Clock period in ticks (Tick) system.clk_domain.voltage_domain.voltage 1 # Voltage in Volts (Volt) system.cpu.numCycles 57467 # Number of cpu cycles simulated (Cycle) system.cpu.numWorkItemsStarted 0 # Number of work items this cpu started (Count) system.cpu.numWorkItemsCompleted 0 # Number of work items this cpu completed (Count) system.cpu.dcache.demandHits::cpu.data 1941 # number of demand (readwrite) hits (Count) system.cpu.dcache.demandHits::total 1941 # number of demand (readwrite) hits (Count) system.cpu.dcache.overallHits::cpu.data 1941 # number of overall hits (Count) system.cpu.dcache.overallHits::total 1941 # number of overall hits (Count) system.cpu.dcache.demandMisses::cpu.data 133 # number of demand (readwrite) misses (Count) system.cpu.dcache.demandMisses::total 133 # number of demand (readwrite) misses (Count) system.cpu.dcache.overallMisses::cpu.data 133 # number of overall misses (Count) system.cpu.dcache.overallMisses::total 133 # number of overall misses (Count) system.cpu.dcache.demandMissLatency::cpu.data 14301000 # number of demand (readwrite) miss ticks (Tick) system.cpu.dcache.demandMissLatency::total 14301000 # number of demand (readwrite) miss ticks (Tick) system.cpu.dcache.overallMissLatency::cpu.data 14301000 # number of overall miss ticks (Tick) system.cpu.dcache.overallMissLatency::total 14301000 # number of overall miss ticks (Tick) system.cpu.dcache.demandAccesses::cpu.data 2074 # number of demand (readwrite) accesses (Count) system.cpu.dcache.demandAccesses::total 2074 # number of demand (readwrite) accesses (Count) system.cpu.dcache.overallAccesses::cpu.data 2074 # number of overall (readwrite) accesses (Count) system.cpu.dcache.overallAccesses::total 2074 # number of overall (readwrite) accesses (Count) system.cpu.dcache.demandMissRate::cpu.data 0.064127 # miss rate for demand accesses (Ratio) system.cpu.dcache.demandMissRate::total 0.064127 # miss rate for demand accesses (Ratio) system.cpu.dcache.overallMissRate::cpu.data 0.064127 # miss rate for overall accesses (Ratio) system.cpu.dcache.overallMissRate::total 0.064127 # miss rate for overall accesses (Ratio) system.cpu.dcache.demandAvgMissLatency::cpu.data 107526.315789 # average overall miss latency ((Cycle/Count)) system.cpu.dcache.demandAvgMissLatency::total 107526.315789 # average overall miss latency ((Cycle/Count)) system.cpu.dcache.overallAvgMissLatency::cpu.data 107526.315789 # average overall miss latency ((Cycle/Count)) system.cpu.dcache.overallAvgMissLatency::total 107526.315789 # average overall miss latency ((Cycle/Count)) ... system.cpu.mmu.dtb.rdAccesses 1123 # TLB accesses on read requests (Count) system.cpu.mmu.dtb.wrAccesses 953 # TLB accesses on write requests (Count) system.cpu.mmu.dtb.rdMisses 11 # TLB misses on read requests (Count) system.cpu.mmu.dtb.wrMisses 9 # TLB misses on write requests (Count) system.cpu.mmu.dtb.walker.power_state.pwrStateResidencyTicks::UNDEFINED 57467000 # Cumulative time (in ticks) in various power states (Tick) system.cpu.mmu.itb.rdAccesses 0 # TLB accesses on read requests (Count) system.cpu.mmu.itb.wrAccesses 7940 # TLB accesses on write requests (Count) system.cpu.mmu.itb.rdMisses 0 # TLB misses on read requests (Count) system.cpu.mmu.itb.wrMisses 37 # TLB misses on write requests (Count) system.cpu.mmu.itb.walker.power_state.pwrStateResidencyTicks::UNDEFINED 57467000 # Cumulative time (in ticks) in various power states (Tick) system.cpu.power_state.pwrStateResidencyTicks::ON 57467000 # Cumulative time (in ticks) in various power states (Tick) system.cpu.thread_0.numInsts 0 # Number of Instructions committed (Count) system.cpu.thread_0.numOps 0 # Number of Ops committed (Count) system.cpu.thread_0.numMemRefs 0 # Number of Memory References (Count) system.cpu.workload.numSyscalls 11 # Number of system calls (Count) 文件中稍后出现的是内存控制器的统计信息。其中包含每个组件读取的字节数以及这些组件使用的平均带宽等信息。 system.mem_ctrl.bytesReadWrQ 0 # Total number of bytes read from write queue (Byte) system.mem_ctrl.bytesReadSys 23168 # Total read bytes from the system interface side (Byte) system.mem_ctrl.bytesWrittenSys 0 # Total written bytes from the system interface side (Byte) system.mem_ctrl.avgRdBWSys 403153113.96105593 # Average system read bandwidth in Byte/s ((Byte/Second)) system.mem_ctrl.avgWrBWSys 0.00000000 # Average system write bandwidth in Byte/s ((Byte/Second)) system.mem_ctrl.totGap 57336000 # Total gap between requests (Tick) system.mem_ctrl.avgGap 158386.74 # Average gap between requests ((Tick/Count)) system.mem_ctrl.requestorReadBytes::cpu.inst 14656 # Per-requestor bytes read from memory (Byte) system.mem_ctrl.requestorReadBytes::cpu.data 8512 # Per-requestor bytes read from memory (Byte) system.mem_ctrl.requestorReadRate::cpu.inst 255033323.472601681948 # Per-requestor bytes read from memory rate ((Byte/Second)) system.mem_ctrl.requestorReadRate::cpu.data 148119790.488454252481 # Per-requestor bytes read from memory rate ((Byte/Second)) system.mem_ctrl.requestorReadAccesses::cpu.inst 229 # Per-requestor read serviced memory accesses (Count) system.mem_ctrl.requestorReadAccesses::cpu.data 133 # Per-requestor read serviced memory accesses (Count) system.mem_ctrl.requestorReadTotalLat::cpu.inst 6234000 # Per-requestor read total memory access latency (Tick) system.mem_ctrl.requestorReadTotalLat::cpu.data 4141000 # Per-requestor read total memory access latency (Tick) system.mem_ctrl.requestorReadAvgLat::cpu.inst 27222.71 # Per-requestor read average memory access latency ((Tick/Count)) system.mem_ctrl.requestorReadAvgLat::cpu.data 31135.34 # Per-requestor read average memory access latency ((Tick/Count)) system.mem_ctrl.dram.bytesRead::cpu.inst 14656 # Number of bytes read from this memory (Byte) system.mem_ctrl.dram.bytesRead::cpu.data 8512 # Number of bytes read from this memory (Byte) system.mem_ctrl.dram.bytesRead::total 23168 # Number of bytes read from this memory (Byte) system.mem_ctrl.dram.bytesInstRead::cpu.inst 14656 # Number of instructions bytes read from this memory (Byte) system.mem_ctrl.dram.bytesInstRead::total 14656 # Number of instructions bytes read from this memory (Byte) system.mem_ctrl.dram.numReads::cpu.inst 229 # Number of read requests responded to by this memory (Count) system.mem_ctrl.dram.numReads::cpu.data 133 # Number of read requests responded to by this memory (Count) system.mem_ctrl.dram.numReads::total 362 # Number of read requests responded to by this memory (Count) system.mem_ctrl.dram.bwRead::cpu.inst 255033323 # Total read bandwidth from this memory ((Byte/Second)) system.mem_ctrl.dram.bwRead::cpu.data 148119790 # Total read bandwidth from this memory ((Byte/Second)) system.mem_ctrl.dram.bwRead::total 403153114 # Total read bandwidth from this memory ((Byte/Second)) system.mem_ctrl.dram.bwInstRead::cpu.inst 255033323 # Instruction read bandwidth from this memory ((Byte/Second)) system.mem_ctrl.dram.bwInstRead::total 255033323 # Instruction read bandwidth from this memory ((Byte/Second)) system.mem_ctrl.dram.bwTotal::cpu.inst 255033323 # Total bandwidth to/from this memory ((Byte/Second)) system.mem_ctrl.dram.bwTotal::cpu.data 148119790 # Total bandwidth to/from this memory ((Byte/Second)) system.mem_ctrl.dram.bwTotal::total 403153114 # Total bandwidth to/from this memory ((Byte/Second)) system.mem_ctrl.dram.readBursts 362 # Number of DRAM read bursts (Count) system.mem_ctrl.dram.writeBursts 0 # Number of DRAM write bursts (Count) 今天心情比较好更两篇~
http://www.w-s-a.com/news/31947/

相关文章:

  • 可以免费建立网站吗免费的网络营销方式
  • 天津企业设计网站建设wordpress标题字体大小
  • 上高县城乡规划建设局网站创业项目
  • 钓鱼网站在线下载广州网站设计哪里好
  • 做阿里国际网站会有成效吗wordpress微博同步
  • 西安网站建设云速网络网站运营情况怎么写
  • 免费建网站的网站微信商城分销系统方案
  • 烟台网站seo服务友情链接有哪些展现形式
  • 什么是移动网站开发免费网站开发框架
  • 做网站 创业wordpress子菜单
  • 门户网站类型有哪些权重7以上的网站
  • 政务网站建设论文android app开发教程
  • 网站开发实训h5总结个人网站注册平台要多少钱
  • 空白网站建设wordpress高亮代码过长
  • 盐城 网站开发什么叫做门户网站
  • 广东快速做网站公司哪家好本地建wordpress
  • dedecms如何做网站贵阳seo计费管理
  • 企业网站设计一般多少钱呼和浩特最好的互联网公司
  • 黄浦专业做网站海南网站策划
  • 网站开发工程师有证书考试吗织梦cms是免费的吗
  • 电子商务网站建设需要学什么门户网站推广介绍方案
  • 网站里的专题页面wordpress查询数据库结构
  • WordPress子站站群网站建设代码生成器
  • 怎么攻击织梦网站甘肃省最新消息今天
  • 赣州哪里可以做网站看装修案例的网站
  • 旅游网站专业化建设的要点php 手机网站 模板
  • wordpress百度站长主动推送长春火车站官网
  • 比较好的响应式网站wordpress博客增加音乐页面
  • 广告公司出售家具 税率江门做网站seo的
  • 网站设计建议建设商务网站作用