Merge branch 'multimode_clb' of https://github.com/LNIS-Projects/OpenFPGA into multimode_clb
This commit is contained in:
commit
6b51b42ee7
|
@ -180,7 +180,7 @@
|
|||
</input>
|
||||
</stimulate>
|
||||
</parameters>
|
||||
<tech_lib lib_type="academia" transistor_type="TOP_TT" lib_path="/research/ece/lnis/USERS/alacchi/Current_release/branch_multimode/OpenFPGA/fpga_flow/tech/PTM_45nm/45nm.pm" nominal_vdd="1.0" io_vdd="2.5"/>
|
||||
<tech_lib lib_type="academia" transistor_type="TOP_TT" lib_path="/home/travis/build/LNIS-Projects/OpenFPGA/fpga_flow/tech/PTM_45nm/45nm.pm" nominal_vdd="1.0" io_vdd="2.5"/>
|
||||
<transistors pn_ratio="2" model_ref="M">
|
||||
<nmos model_name="nch" chan_length="40e-9" min_width="140e-9"/>
|
||||
<pmos model_name="pch" chan_length="40e-9" min_width="140e-9"/>
|
||||
|
|
|
@ -1033,10 +1033,13 @@ void verilog_generate_sdc_disable_unused_sbs_muxs(FILE* fp) {
|
|||
}
|
||||
t_rr_node* cur_rr_node = rr_sb.get_chan_node(side_manager.get_side(), itrack);
|
||||
for (int imux = 0 ; imux < cur_rr_node->fan_in; ++imux) {
|
||||
if (1 == cur_rr_node->fan_in) {
|
||||
continue;
|
||||
}
|
||||
if (imux == cur_rr_node->id_path) {
|
||||
fprintf(fp, "#"); // comments out if the node is active
|
||||
}
|
||||
//if(cur_rr_node->name_mux == NULL) assert (NULL != cur_rr_node->name_mux);
|
||||
//if(cur_rr_node->name_mux == NULL) assert (NULL != cur_rr_node->name_mux);
|
||||
fprintf(fp, "set_disable_timing %s[%d]\n",
|
||||
cur_rr_node->name_mux, imux);
|
||||
}
|
||||
|
@ -1070,10 +1073,13 @@ void verilog_generate_sdc_disable_unused_sbs_muxs(FILE* fp, int LL_nx, int LL_ny
|
|||
if (OUT_PORT == cur_sb_info->chan_rr_node_direction[side][itrack]) {
|
||||
cur_rr_node = cur_sb_info->chan_rr_node[side][itrack];
|
||||
for (imux = 0 ; imux < cur_rr_node-> fan_in; imux++) {
|
||||
if (1 == cur_rr_node->fan_in) {
|
||||
continue;
|
||||
}
|
||||
if (imux == cur_rr_node->id_path) {
|
||||
fprintf(fp, "#"); // comments out if the node is active
|
||||
}
|
||||
//if(cur_rr_node->name_mux == NULL) assert (NULL != cur_rr_node->name_mux);
|
||||
//if(cur_rr_node->name_mux == NULL) assert (NULL != cur_rr_node->name_mux);
|
||||
fprintf(fp, "set_disable_timing %s[%d]\n",
|
||||
cur_rr_node->name_mux, imux);
|
||||
}
|
||||
|
|
|
@ -34,6 +34,7 @@ set vpr_route_chan_width = 200
|
|||
#make -j32
|
||||
# Remove previous designs
|
||||
rm -rf $verilog_output_dirpath/$verilog_output_dirname
|
||||
rm -rf $verilog_output_dirpath/$verilog_output_dirname\_compact
|
||||
|
||||
# Run VPR
|
||||
#valgrind
|
||||
|
|
Loading…
Reference in New Issue