Searched refs:num_rows (Results 1 - 11 of 11) sorted by relevance

/gem5/configs/topologies/
H A DMesh_westfirst.py61 num_rows = options.mesh_rows
71 assert(num_rows > 0 and num_rows <= num_routers)
72 num_columns = int(num_routers / num_rows)
73 assert(num_columns * num_rows == num_routers)
119 for row in range(num_rows):
132 for row in range(num_rows):
147 for row in range(num_rows):
148 if (row + 1 < num_rows):
160 for row in range(num_rows)
[all...]
H A DMesh_XY.py59 num_rows = options.mesh_rows
70 assert(num_rows > 0 and num_rows <= num_routers)
71 num_columns = int(num_routers / num_rows)
72 assert(num_columns * num_rows == num_routers)
118 for row in range(num_rows):
133 for row in range(num_rows):
149 for row in range(num_rows):
150 if (row + 1 < num_rows):
164 for row in range(num_rows)
[all...]
H A DMeshDirCorners_XY.py53 num_rows = options.mesh_rows
78 assert(num_rows > 0 and num_rows <= num_routers)
79 num_columns = int(num_routers / num_rows)
80 assert(num_columns * num_rows == num_routers)
155 for row in range(num_rows):
170 for row in range(num_rows):
186 for row in range(num_rows):
187 if (row + 1 < num_rows):
201 for row in range(num_rows)
[all...]
/gem5/ext/mcpat/cacti/
H A Dsubarray.h52 unsigned int num_rows; member in class:Subarray
H A Dsubarray.cc43 dp(dp_), num_rows(dp.num_r_subarray), num_cols(dp.num_c_subarray),
56 area.h = cell.h * num_rows;
73 area.h = cam_cell.h * (num_rows + 1);//height of subarray is decided by CAM array. blank space in sram array are filled with dummy cells
97 // return (is_fa==false? cell.get_area() * num_rows * num_cols
98 // //: cam_cell.h*(num_rows+1)*(num_cols_fa_cam + sram_cell.get_area()*num_cols_fa_ram));
99 // : cam_cell.get_area()*(num_rows+1)*(num_cols_fa_cam + num_cols_fa_ram));
100 // //: cam_cell.get_area()*(num_rows+1)*num_cols_fa_cam + sram_cell.get_area()*(num_rows+1)*num_cols_fa_ram);//for FA, this area does not include the dummy cells in SRAM arrays.
103 return (cell.get_area() * num_rows * num_cols);
106 //return (cam_cell.get_area()*(num_rows
[all...]
H A Dmat.cc101 int num_dec_signals = subarray.num_rows;
195 C_wire_predec_blk_out = num_subarrays_per_row * subarray.num_rows * g_tp.wire_inside_mat.C_per_um * cell.h;
196 R_wire_predec_blk_out = num_subarrays_per_row * subarray.num_rows * g_tp.wire_inside_mat.R_per_um * cell.h;
199 C_wire_predec_blk_out = subarray.num_rows * g_tp.wire_inside_mat.C_per_um * cam_cell.h;
200 R_wire_predec_blk_out = subarray.num_rows * g_tp.wire_inside_mat.R_per_um * cam_cell.h;
297 double area_row_decoder = row_dec->area.get_area() * subarray.num_rows * (RWP + ERP + EWP);
500 R_bl = subarray.num_rows * r_b_metal;
551 double R_bl = subarray.num_rows * r_b_metal;
777 //searchline data driver ; subarray.num_rows + 1 is because of the dummy row
779 driver_c_gate_load = (subarray.num_rows
[all...]
H A Dbank.cc132 num_addr_b_row_dec = _log2(mat.subarray.num_rows);
/gem5/src/mem/ruby/network/garnet2.0/
H A DGarnetNetwork.py40 num_rows = Param.Int(0, "number of rows if 2D (mesh/torus/..) topology"); variable in class:GarnetNetwork
H A DRoutingUnit.cc185 int M5_VAR_USED num_rows = m_router->get_net_ptr()->getNumRows(); local
187 assert(num_rows > 0 && num_cols > 0);
H A DGarnetNetwork.cc62 m_num_rows = p->num_rows;
/gem5/configs/network/
H A DNetwork.py108 network.num_rows = options.mesh_rows

Completed in 18 milliseconds