Xeon.xml revision 10152
1<?xml version="1.0" ?>
2<component id="root" name="root">
3	<component id="system" name="system">
4		<!--McPAT will skip the components if number is set to 0 -->
5		<param name="number_of_cores" value="2"/>
6		<param name="number_of_L1Directories" value="0"/>
7		<param name="number_of_L2Directories" value="0"/>
8		<param name="number_of_L2s" value="1"/> <!-- This number means how many L2 clusters in each cluster there can be multiple banks/ports -->
9		<param name="Private_L2" value="1"/><!--1 Private, 0 shared/coherent -->
10		<param name="number_of_L3s" value="1"/> <!-- This number means how many L3 clusters -->
11		<param name="number_of_NoCs" value="1"/>
12		<param name="homogeneous_cores" value="1"/><!--1 means homo -->
13		<param name="homogeneous_L2s" value="1"/>
14		<param name="homogeneous_L1Directorys" value="1"/>
15		<param name="homogeneous_L2Directorys" value="1"/>
16		<param name="homogeneous_L3s" value="1"/>
17		<param name="homogeneous_ccs" value="1"/><!--cache coherece hardware -->
18		<param name="homogeneous_NoCs" value="1"/>
19		<param name="core_tech_node" value="65"/><!-- nm -->
20		<param name="target_core_clockrate" value="3400"/><!--MHz -->
21		<param name="temperature" value="380"/> <!-- Kelvin -->
22		<param name="number_cache_levels" value="3"/>
23		<param name="interconnect_projection_type" value="0"/><!--0: agressive wire technology; 1: conservative wire technology -->
24		<param name="device_type" value="0"/><!--0: HP(High Performance Type); 1: LSTP(Low standby power) 2: LOP (Low Operating Power)  -->
25		<param name="longer_channel_device" value="1"/><!-- 0 no use; 1 use when approperiate -->
26		<param name="machine_bits" value="64"/>
27		<param name="virtual_address_width" value="64"/>
28		<param name="physical_address_width" value="52"/>
29		<param name="virtual_memory_page_size" value="4096"/>
30		<!-- address width determins the tag_width in Cache, LSQ and buffers in cache controller 
31			default value is machine_bits, if not set --> 
32		<stat name="total_cycles" value="100000"/>
33		<stat name="idle_cycles" value="0"/>
34		<stat name="busy_cycles"  value="100000"/>
35			<!--This page size(B) is complete different from the page size in Main memo secction. this page size is the size of 
36			virtual memory from OS/Archi perspective; the page size in Main memo secction is the actuall physical line in a DRAM bank  -->
37		<!-- *********************** cores ******************* -->
38		<component id="system.core0" name="core0">
39			<!-- Core property -->
40			<param name="clock_rate" value="3400"/>
41			<!-- for cores with unknow timing, set to 0 to force off the opt flag -->
42			<param name="opt_local" value="0"/>
43			<param name="instruction_length" value="32"/>
44			<param name="opcode_width" value="16"/>
45			<param name="x86" value="1"/>
46			<param name="micro_opcode_width" value="8"/>
47			<param name="machine_type" value="0"/>
48			<!-- inorder/OoO; 1 inorder; 0 OOO-->
49			<param name="number_hardware_threads" value="2"/>
50			<!-- number_instruction_fetch_ports(icache ports) is always 1 in single-thread processor,
51			it only may be more than one in SMT processors. BTB ports always equals to fetch ports since 
52			branch information in consective branch instructions in the same fetch group can be read out from BTB once.--> 
53			<param name="fetch_width" value="4"/>
54			<!-- fetch_width determins the size of cachelines of L1 cache block -->
55			<param name="number_instruction_fetch_ports" value="1"/>
56			<param name="decode_width" value="4"/>
57			<!-- decode_width determins the number of ports of the 
58			renaming table (both RAM and CAM) scheme -->
59			<param name="issue_width" value="4"/>
60			<param name="peak_issue_width" value="6"/>
61			<!-- issue_width determins the number of ports of Issue window and other logic 
62			as in the complexity effective proccessors paper; issue_width==dispatch_width -->
63			<param name="commit_width" value="4"/>
64			<!-- commit_width determins the number of ports of register files -->
65			<param name="fp_issue_width" value="2"/>
66			<param name="prediction_width" value="1"/> 
67			<!-- number of branch instructions can be predicted simultannouesl-->
68			<!-- Current version of McPAT does not distinguish int and floating point pipelines 
69			Theses parameters are reserved for future use.--> 
70			<param name="pipelines_per_core" value="1,1"/>
71			<!--integer_pipeline and floating_pipelines, if the floating_pipelines is 0, then the pipeline is shared-->
72			<param name="pipeline_depth" value="31,31"/>
73			<!-- pipeline depth of int and fp, if pipeline is shared, the second number is the average cycles of fp ops -->
74			<!-- issue and exe unit-->
75			<param name="ALU_per_core" value="6"/>
76			<!-- contains an adder, a shifter, and a logical unit -->
77			<param name="MUL_per_core" value="1"/>
78			<!-- For MUL and Div -->
79			<param name="FPU_per_core" value="2"/>		
80			<!-- buffer between IF and ID stage -->
81			<param name="instruction_buffer_size" value="32"/>
82			<!-- buffer between ID and sche/exe stage -->
83			<param name="decoded_stream_buffer_size" value="16"/>
84			<param name="instruction_window_scheme" value="0"/><!-- 0 PHYREG based, 1 RSBASED-->
85			<!-- McPAT support 2 types of OoO cores, RS based and physical reg based-->
86			<param name="instruction_window_size" value="64"/>
87			<param name="fp_instruction_window_size" value="64"/>
88			<!-- the instruction issue Q as in Alpha 21264; The RS as in Intel P6 -->
89			<param name="ROB_size" value="128"/>
90			<!-- each in-flight instruction has an entry in ROB -->
91			<!-- registers -->
92			<param name="archi_Regs_IRF_size" value="16"/><!-- X86-64 has 16GPR -->			
93			<param name="archi_Regs_FRF_size" value="32"/><!-- MMX + XMM -->
94			<!--  if OoO processor, phy_reg number is needed for renaming logic, 
95			renaming logic is for both integer and floating point insts.  -->
96			<param name="phy_Regs_IRF_size" value="256"/>
97			<param name="phy_Regs_FRF_size" value="256"/>
98			<!-- rename logic -->
99			<param name="rename_scheme" value="0"/>
100			<!-- can be RAM based(0) or CAM based(1) rename scheme 
101			RAM-based scheme will have free list, status table;
102			CAM-based scheme have the valid bit in the data field of the CAM 
103			both RAM and CAM need RAM-based checkpoint table, checkpoint_depth=# of in_flight instructions;
104			Detailed RAT Implementation see TR -->
105			<param name="register_windows_size" value="0"/>
106			<!-- how many windows in the windowed register file, sun processors;
107			no register windowing is used when this number is 0 -->
108			<!-- In OoO cores, loads and stores can be issued whether inorder(Pentium Pro) or (OoO)out-of-order(Alpha),
109			They will always try to exeute out-of-order though. -->
110			<param name="LSU_order" value="inorder"/>
111			<param name="store_buffer_size" value="96"/>
112			<!-- By default, in-order cores do not have load buffers -->
113			<param name="load_buffer_size" value="48"/>	
114			<!-- number of ports refer to sustainable concurrent memory accesses --> 
115			<param name="memory_ports" value="2"/>	
116			<!-- max_allowed_in_flight_memo_instructions determins the # of ports of load and store buffer
117			as well as the ports of Dcache which is connected to LSU -->	
118			<!-- dual-pumped Dcache can be used to save the extra read/write ports -->
119			<param name="RAS_size" value="64"/>						
120			<!-- general stats, defines simulation periods;require total, idle, and busy cycles for senity check  -->
121			<!-- please note: if target architecture is X86, then all the instrucions refer to (fused) micro-ops -->
122			<stat name="total_instructions" value="400000"/>
123			<stat name="int_instructions" value="200000"/>
124			<stat name="fp_instructions" value="100000"/>
125			<stat name="branch_instructions" value="100000"/>
126			<stat name="branch_mispredictions" value="0"/>
127			<stat name="load_instructions" value="0"/>
128			<stat name="store_instructions" value="50000"/>
129			<stat name="committed_instructions" value="400000"/>
130			<stat name="committed_int_instructions" value="200000"/>
131			<stat name="committed_fp_instructions" value="100000"/>
132			<stat name="pipeline_duty_cycle" value="1"/><!--<=1, runtime_ipc/peak_ipc; averaged for all cores if homogenous -->
133			<!-- the following cycle stats are used for heterogeneouse cores only, 
134				please ignore them if homogeneouse cores -->
135			<stat name="total_cycles" value="100000"/>
136		    <stat name="idle_cycles" value="0"/>
137		    <stat name="busy_cycles"  value="100000"/>
138			<!-- instruction buffer stats -->
139			<!-- ROB stats, both RS and Phy based OoOs have ROB
140			performance simulator should capture the difference on accesses,
141			otherwise, McPAT has to guess based on number of commited instructions. -->
142			<stat name="ROB_reads" value="400000"/>
143			<stat name="ROB_writes" value="400000"/>
144			<!-- RAT accesses -->
145			<stat name="rename_reads" value="800000"/> <!--lookup in renaming logic -->
146			<stat name="rename_writes" value="400000"/><!--update dest regs. renaming logic -->
147			<stat name="fp_rename_reads" value="200000"/>
148			<stat name="fp_rename_writes" value="100000"/>
149			<!-- decode and rename stage use this, should be total ic - nop -->
150			<!-- Inst window stats -->
151			<stat name="inst_window_reads" value="400000"/>
152			<stat name="inst_window_writes" value="400000"/>
153			<stat name="inst_window_wakeup_accesses" value="800000"/>
154			<stat name="fp_inst_window_reads" value="200000"/>
155			<stat name="fp_inst_window_writes" value="200000"/>
156			<stat name="fp_inst_window_wakeup_accesses" value="400000"/>
157			<!--  RF accesses -->
158			<stat name="int_regfile_reads" value="600000"/>
159			<stat name="float_regfile_reads" value="100000"/>
160			<stat name="int_regfile_writes" value="300000"/>
161			<stat name="float_regfile_writes" value="50000"/>
162			<!-- accesses to the working reg -->
163			<stat name="function_calls" value="5"/>
164			<stat name="context_switches" value="260343"/>
165			<!-- Number of Windowes switches (number of function calls and returns)-->
166			<!-- Alu stats by default, the processor has one FPU that includes the divider and 
167			 multiplier. The fpu accesses should include accesses to multiplier and divider  -->
168			<stat name="ialu_accesses" value="300000"/>			
169			<stat name="fpu_accesses" value="100000"/>
170			<stat name="mul_accesses" value="200000"/>
171			<stat name="cdb_alu_accesses" value="300000"/>
172			<stat name="cdb_mul_accesses" value="200000"/>
173			<stat name="cdb_fpu_accesses" value="100000"/>
174			<!-- multiple cycle accesses should be counted multiple times, 
175			otherwise, McPAT can use internal counter for different floating point instructions 
176			to get final accesses. But that needs detailed info for floating point inst mix -->
177			<!--  currently the performance simulator should 
178			make sure all the numbers are final numbers, 
179			including the explicit read/write accesses, 
180			and the implicite accesses such as replacements and etc.
181			Future versions of McPAT may be able to reason the implicite access
182			based on param and stats of last level cache
183			The same rule applies to all cache access stats too!  -->
184			<!-- following is AF for max power computation. 
185				Do not change them, unless you understand them-->
186			<stat name="IFU_duty_cycle" value="1"/>			
187			<stat name="LSU_duty_cycle" value="0.5"/>
188			<stat name="MemManU_I_duty_cycle" value="1"/>
189			<stat name="MemManU_D_duty_cycle" value="0.5"/>
190			<stat name="ALU_duty_cycle" value="1"/>
191			<stat name="MUL_duty_cycle" value="0.3"/>
192			<stat name="FPU_duty_cycle" value="0.3"/>
193			<stat name="ALU_cdb_duty_cycle" value="1"/>
194			<stat name="MUL_cdb_duty_cycle" value="0.3"/>
195			<stat name="FPU_cdb_duty_cycle" value="0.3"/>
196			<param name="number_of_BPT" value="2"/>
197			<component id="system.core0.predictor" name="PBT">
198				<!-- branch predictor; tournament predictor see Alpha implementation -->
199				<param name="local_predictor_size" value="10,3"/>
200				<param name="local_predictor_entries" value="1024"/>
201				<param name="global_predictor_entries" value="4096"/>
202				<param name="global_predictor_bits" value="2"/>
203				<param name="chooser_predictor_entries" value="4096"/>
204				<param name="chooser_predictor_bits" value="2"/>
205				<!-- These parameters can be combined like below in next version
206				<param name="load_predictor" value="10,3,1024"/>
207				<param name="global_predictor" value="4096,2"/>
208				<param name="predictor_chooser" value="4096,2"/>
209				-->
210			</component>
211			<component id="system.core0.itlb" name="itlb">
212				<param name="number_entries" value="128"/>
213				<stat name="total_accesses" value="200000"/>
214				<stat name="total_misses" value="4"/>
215				<stat name="conflicts" value="0"/>	
216				<!-- there is no write requests to itlb although writes happen to itlb after miss, 
217				which is actually a replacement -->
218			</component>
219			<component id="system.core0.icache" name="icache">
220				<!-- there is no write requests to itlb although writes happen to it after miss, 
221				which is actually a replacement -->
222				<param name="icache_config" value="131072,32,8,1,8,3,32,0"/>
223				<!-- the parameters are capacity,block_width, associativity, bank, throughput w.r.t. core clock, latency w.r.t. core clock,output_width, cache policy,  -->
224				<!-- cache_policy;//0 no write or write-though with non-write allocate;1 write-back with write-allocate -->
225				<param name="buffer_sizes" value="16, 16, 16,0"/>
226				<!-- cache controller buffer sizes: miss_buffer_size(MSHR),fill_buffer_size,prefetch_buffer_size,wb_buffer_size--> 
227				<stat name="read_accesses" value="200000"/>
228				<stat name="read_misses" value="0"/>
229				<stat name="conflicts" value="0"/>				
230			</component>
231			<component id="system.core0.dtlb" name="dtlb">
232				<param name="number_entries" value="128"/><!--dual threads-->
233				<stat name="total_accesses" value="400000"/>
234				<stat name="total_misses" value="4"/>
235				<stat name="conflicts" value="0"/>	
236			</component>
237			<component id="system.core0.dcache" name="dcache">
238			        <!-- all the buffer related are optional -->
239				<param name="dcache_config" value="16384,16,4,1, 3,3, 16,1 "/>
240				<param name="buffer_sizes" value="16, 16, 16, 16"/>
241				<!-- cache controller buffer sizes: miss_buffer_size(MSHR),fill_buffer_size,prefetch_buffer_size,wb_buffer_size-->	
242				<stat name="read_accesses" value="800000"/>
243				<stat name="write_accesses" value="27276"/>
244				<stat name="read_misses" value="1632"/>
245				<stat name="write_misses" value="183"/>
246				<stat name="conflicts" value="0"/>	
247			</component>
248			<param name="number_of_BTB" value="2"/>
249			<component id="system.core0.BTB" name="BTB">
250			        <!-- all the buffer related are optional -->
251				<param name="BTB_config" value="5120,4,2,1, 1,3"/> <!--should be 4096 + 1024 -->
252				<!-- the parameters are capacity,block_width,associativity,bank, throughput w.r.t. core clock, latency w.r.t. core clock,-->
253				<stat name="read_accesses" value="400000"/> <!--See IFU code for guideline -->
254				<stat name="write_accesses" value="0"/>
255			</component>
256	</component>
257		<component id="system.L1Directory0" name="L1Directory0">
258				<param name="Directory_type" value="0"/>
259			    <!--0 cam based shadowed tag. 1 directory cache -->	
260				<param name="Dir_config" value="4096,2,0,1,100,100, 8"/>
261				<!-- the parameters are capacity,block_width, associativity,bank, throughput w.r.t. core clock, latency w.r.t. core clock,-->
262			    <param name="buffer_sizes" value="8, 8, 8, 8"/>	
263				<!-- all the buffer related are optional -->
264			    <param name="clockrate" value="3400"/>
265				<param name="ports" value="1,1,1"/>
266				<!-- number of r, w, and rw search ports -->
267				<param name="device_type" value="0"/>
268				<!-- altough there are multiple access types, 
269				Performance simulator needs to cast them into reads or writes
270				e.g. the invalidates can be considered as writes -->
271				<stat name="read_accesses" value="800000"/>
272				<stat name="write_accesses" value="27276"/>
273				<stat name="read_misses" value="1632"/>
274				<stat name="write_misses" value="183"/>
275				<stat name="conflicts" value="20"/>	
276		</component>
277		<component id="system.L2Directory0" name="L2Directory0">
278				<param name="Directory_type" value="1"/>
279			    <!--0 cam based shadowed tag. 1 directory cache -->	
280				<param name="Dir_config" value="1048576,16,16,1,2, 100"/>
281				<!-- the parameters are capacity,block_width, associativity,bank, throughput w.r.t. core clock, latency w.r.t. core clock,-->
282			    <param name="buffer_sizes" value="8, 8, 8, 8"/>	
283				<!-- all the buffer related are optional -->
284			    <param name="clockrate" value="3400"/>
285				<param name="ports" value="1,1,1"/>
286				<!-- number of r, w, and rw search ports -->
287				<param name="device_type" value="0"/>
288				<!-- altough there are multiple access types, 
289				Performance simulator needs to cast them into reads or writes
290				e.g. the invalidates can be considered as writes -->
291				<stat name="read_accesses" value="58824"/>
292				<stat name="write_accesses" value="27276"/>
293				<stat name="read_misses" value="1632"/>
294				<stat name="write_misses" value="183"/>
295				<stat name="conflicts" value="100"/>	
296		</component>
297		<component id="system.L20" name="L20">
298			<!-- all the buffer related are optional -->
299				<param name="L2_config" value="1048576,32, 8, 8, 8, 23, 32, 1"/> 
300				<!-- the parameters are capacity,block_width, associativity, bank, throughput w.r.t. core clock, latency w.r.t. core clock,output_width, cache policy -->
301				<param name="buffer_sizes" value="16, 16, 16, 16"/>
302				<!-- cache controller buffer sizes: miss_buffer_size(MSHR),fill_buffer_size,prefetch_buffer_size,wb_buffer_size-->	
303				<param name="clockrate" value="3400"/>
304				<param name="ports" value="1,1,1"/>
305				<!-- number of r, w, and rw ports -->
306				<param name="device_type" value="0"/>
307				<stat name="read_accesses" value="200000"/>
308				<stat name="write_accesses" value="27276"/>
309				<stat name="read_misses" value="1632"/>
310				<stat name="write_misses" value="183"/>
311				<stat name="conflicts" value="0"/>	
312			    <stat name="duty_cycle" value="1.0"/>	
313		</component>
314		
315<!--**********************************************************************-->
316<component id="system.L30" name="L30">
317				<param name="L3_config" value="16777216,64,16, 16, 16, 100,1"/>
318				<!-- the parameters are capacity,block_width, associativity,bank, throughput w.r.t. core clock, latency w.r.t. core clock,-->
319				<param name="clockrate" value="850"/>
320				<param name="ports" value="1,1,1"/>
321				<!-- number of r, w, and rw ports -->
322				<param name="device_type" value="0"/>
323				<param name="buffer_sizes" value="16, 16, 16, 16"/>
324				<!-- cache controller buffer sizes: miss_buffer_size(MSHR),fill_buffer_size,prefetch_buffer_size,wb_buffer_size-->	
325				<stat name="read_accesses" value="11824"/>
326				<stat name="write_accesses" value="11276"/>
327				<stat name="read_misses" value="1632"/>
328				<stat name="write_misses" value="183"/>
329				<stat name="conflicts" value="0"/>	
330				<stat name="duty_cycle" value="1.0"/>	
331		</component>
332<!--**********************************************************************-->
333		<component id="system.NoC0" name="noc0">
334			<param name="clockrate" value="3400"/>
335			<param name="type" value="0"/>
336			<!--0:bus, 1:NoC , for bus no matter how many nodes sharing the bus
337				at each time only one node can send req -->
338			<param name="horizontal_nodes" value="1"/>
339			<param name="vertical_nodes" value="1"/>
340			<param name="has_global_link" value="0"/>
341			<!-- 1 has global link, 0 does not have global link -->
342			<param name="link_throughput" value="1"/><!--w.r.t clock -->
343			<param name="link_latency" value="1"/><!--w.r.t clock -->
344			<!-- througput >= latency -->
345			<!-- Router architecture -->
346			<param name="input_ports" value="1"/>
347			<param name="output_ports" value="1"/>
348			<!-- For bus the I/O ports should be 1 -->
349			<param name="flit_bits" value="256"/>
350			<param name="chip_coverage" value="1"/>
351			<!-- When multiple NOC present, one NOC will cover part of the whole chip. 
352				chip_coverage <=1 -->
353			<param name="link_routing_over_percentage" value="0.5"/>
354			<!-- Links can route over other components or occupy whole area.
355				by default, 50% of the NoC global links routes over other 
356				components -->
357			<stat name="total_accesses" value="100000"/>
358			<!-- This is the number of total accesses within the whole network not for each router -->
359			<stat name="duty_cycle" value="1"/>
360		</component>		
361<!--**********************************************************************-->
362		<component id="system.mem" name="mem">
363			<!-- Main memory property -->
364			<param name="mem_tech_node" value="32"/>
365			<param name="device_clock" value="200"/><!--MHz, this is clock rate of the actual memory device, not the FSB -->
366			<param name="peak_transfer_rate" value="6400"/><!--MB/S-->
367			<param name="internal_prefetch_of_DRAM_chip" value="4"/>
368			<!-- 2 for DDR, 4 for DDR2, 8 for DDR3...-->
369			<!-- the device clock, peak_transfer_rate, and the internal prefetch decide the DIMM property -->
370			<!-- above numbers can be easily found from Wikipedia -->
371			<param name="capacity_per_channel" value="4096"/> <!-- MB -->
372			<!-- capacity_per_Dram_chip=capacity_per_channel/number_of_dimms/number_ranks/Dram_chips_per_rank
373			Current McPAT assumes single DIMMs are used.--> 		
374			<param name="number_ranks" value="2"/>
375			<param name="num_banks_of_DRAM_chip" value="8"/>			
376			<param name="Block_width_of_DRAM_chip" value="64"/> <!-- B -->
377			<param name="output_width_of_DRAM_chip" value="8"/>
378			<!--number of Dram_chips_per_rank=" 72/output_width_of_DRAM_chip-->
379			<!--number of Dram_chips_per_rank=" 72/output_width_of_DRAM_chip-->
380			<param name="page_size_of_DRAM_chip" value="8"/> <!-- 8 or 16 -->
381			<param name="burstlength_of_DRAM_chip" value="8"/>
382			<stat name="memory_accesses" value="1052"/>
383			<stat name="memory_reads" value="1052"/>
384			<stat name="memory_writes" value="1052"/>									
385		</component>
386		<component id="system.mc" name="mc">
387			<!-- Memeory controllers are for DDR(2,3...) DIMMs -->
388			<!-- current version of McPAT uses published values for base parameters of memory controller
389			improvments on MC will be added in later versions. -->
390			<param name="type" value="0"/> <!-- 1: low power; 0 high performance -->
391			<param name="mc_clock" value="200"/><!--DIMM IO bus clock rate MHz DDR2-400 for Niagara 1--> 
392			<param name="peak_transfer_rate" value="3200"/><!--MB/S-->
393			<param name="block_size" value="64"/><!--B-->
394			<param name="number_mcs" value="0"/>
395			<!-- current McPAT only supports homogeneous memory controllers -->
396			<param name="memory_channels_per_mc" value="1"/>
397			<param name="number_ranks" value="2"/>
398			<param name="withPHY" value="0"/>
399			<!-- # of ranks of each channel-->
400			<param name="req_window_size_per_channel" value="32"/>
401			<param name="IO_buffer_size_per_channel" value="32"/>
402			<param name="databus_width" value="128"/>
403			<param name="addressbus_width" value="51"/>
404			<!-- McPAT will add the control bus width to the addressbus width automatically -->
405			<stat name="memory_accesses" value="33333"/>
406			<stat name="memory_reads" value="16667"/>
407			<stat name="memory_writes" value="16667"/>
408			<!-- McPAT does not track individual mc, instead, it takes the total accesses and calculate 
409			the average power per MC or per channel. This is sufficent for most application. 
410			Further trackdown can be easily added in later versions. -->  			
411		</component>
412<!--**********************************************************************-->
413		<component id="system.niu" name="niu">
414			<!-- On chip 10Gb Ethernet NIC, including XAUI Phy and MAC controller  -->
415			<!-- For a minimum IP packet size of 84B at 10Gb/s, a new packet arrives every 67.2ns. 
416				 the low bound of clock rate of a 10Gb MAC is 150Mhz -->
417			<param name="type" value="0"/> <!-- 1: low power; 0 high performance -->
418			<param name="clockrate" value="350"/>
419			<param name="number_units" value="0"/> <!-- unlike PCIe and memory controllers, each Ethernet controller only have one port -->
420			<stat name="duty_cycle" value="1.0"/> <!-- achievable max load <= 1.0 -->
421			<stat name="total_load_perc" value="0.7"/> <!-- ratio of total achived load to total achivable bandwidth  -->
422			<!-- McPAT does not track individual nic, instead, it takes the total accesses and calculate 
423			the average power per nic or per channel. This is sufficent for most application. -->  			
424		</component>
425<!--**********************************************************************-->
426		<component id="system.pcie" name="pcie">
427			<!-- On chip PCIe controller, including Phy-->
428			<!-- For a minimum PCIe packet size of 84B at 8Gb/s per lane (PCIe 3.0), a new packet arrives every 84ns. 
429				 the low bound of clock rate of a PCIe per lane logic is 120Mhz -->
430			<param name="type" value="0"/> <!-- 1: low power; 0 high performance -->
431			<param name="withPHY" value="1"/>
432			<param name="clockrate" value="350"/>
433			<param name="number_units" value="0"/>
434			<param name="num_channels" value="8"/> <!-- 2 ,4 ,8 ,16 ,32 -->
435			<stat name="duty_cycle" value="1.0"/> <!-- achievable max load <= 1.0 -->
436			<stat name="total_load_perc" value="0.7"/> <!-- Percentage of total achived load to total achivable bandwidth  -->
437			<!-- McPAT does not track individual pcie controllers, instead, it takes the total accesses and calculate 
438			the average power per pcie controller or per channel. This is sufficent for most application. -->  			
439		</component>
440<!--**********************************************************************-->
441		<component id="system.flashc" name="flashc">
442		    <param name="number_flashcs" value="0"/>
443			<param name="type" value="1"/> <!-- 1: low power; 0 high performance -->
444            <param name="withPHY" value="1"/>
445			<param name="peak_transfer_rate" value="200"/><!--Per controller sustainable reak rate MB/S -->
446			<stat name="duty_cycle" value="1.0"/> <!-- achievable max load <= 1.0 -->
447			<stat name="total_load_perc" value="0.7"/> <!-- Percentage of total achived load to total achivable bandwidth  -->
448			<!-- McPAT does not track individual flash controller, instead, it takes the total accesses and calculate 
449			the average power per fc or per channel. This is sufficent for most application -->  			
450		</component>
451<!--**********************************************************************-->
452
453		</component>
454</component>
455
456