diff --git a/.gitmodules b/.gitmodules index af518a717..5fdc702e6 100644 --- a/.gitmodules +++ b/.gitmodules @@ -1,8 +1,6 @@ [submodule "yosys"] path = yosys url = https://github.com/YosysHQ/yosys - branch = release-branch-0.10 - ignore = dirty [submodule "yosys-plugins"] path = yosys-plugins url = https://github.com/SymbiFlow/yosys-symbiflow-plugins diff --git a/CMakeLists.txt b/CMakeLists.txt index 9077328fc..748735ad0 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -82,6 +82,9 @@ set(ODIN_YOSYS OFF CACHE BOOL "Enable building odin with yosys in Verilog-to-Rou set(YOSYS_SV_UHDM_PLUGIN OFF CACHE BOOL "Enable building and installing Yosys SystemVerilog and UHDM plugins in Verilog-to-Routing") set(VTR_ENABLE_VERSION ${OPENFPGA_WITH_VERSION} CACHE BOOL "Enable version always-up-to-date when building codebase. Disable only when you do not care an accurate version number") +#Compiler flag configuration checks +include(CheckCXXCompilerFlag) + # # We require c++14 support # @@ -218,9 +221,21 @@ endif() # Set final flags # -set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${WARN_FLAGS} ${SANITIZE_FLAGS}") -message(STATUS "CMAKE_CXX_FLAGS: ${CMAKE_CXX_FLAGS}") +separate_arguments( + ADDITIONAL_FLAGS UNIX_COMMAND "${SANITIZE_FLAGS} ${PROFILING_FLAGS} ${COVERAGE_FLAGS} ${LOGGING_FLAGS} ${COLORED_COMPILE} ${EXTRA_FLAGS}" + ) +separate_arguments( + WARN_FLAGS UNIX_COMMAND "${WARN_FLAGS}" + ) +# +# Sub-projects with their own compiler settings +# +add_subdirectory(vtr-verilog-to-routing) + +add_compile_options(${WARN_FLAGS}) #Add warn flags for VTR tools +add_compile_options(${ADDITIONAL_FLAGS}) +link_libraries(${ADDITIONAL_FLAGS}) # Unit Testing # @@ -229,9 +244,8 @@ if (OPENFPGA_WITH_TEST) endif() # -# Sub-projects +# Sub-projects to apply current complier settings # -add_subdirectory(vtr-verilog-to-routing) add_subdirectory(libs) add_subdirectory(openfpga) @@ -260,17 +274,14 @@ if (YOSYS_ENABLE_READLINE) find_package(Readline REQUIRED) endif() -# -######################### -## # -## Compiler Flags Setup # -## # -######################### -# -## Compiler flag configuration checks -include(CheckCCompilerFlag) -include(CheckCXXCompilerFlag) -# +#PugiXml has some deliberate switch fallthrough cases (as indicated by comments), but they +#are tagged as warnings with g++-7 (the comments don't match g++-7's suppression regexes). +#Since we don't want to change PugiXml (it is developed externally), we relax the warning +#level so no fallthrough warnings are generated +CHECK_CXX_COMPILER_FLAG("-Wimplicit-fallthrough=0" CXX_COMPILER_SUPPORTS_-Wimplicit-fallthrough=0) +if(CXX_COMPILER_SUPPORTS_-Wimplicit-fallthrough=0) + target_compile_options(libpugixml PRIVATE "-Wimplicit-fallthrough=0") +endif() # we will check if yosys already exist. if not then build it if (OPENFPGA_WITH_YOSYS) diff --git a/VERSION.md b/VERSION.md index 815cddf28..3c69b2873 100644 --- a/VERSION.md +++ b/VERSION.md @@ -1 +1 @@ -1.2.270 +1.2.328 diff --git a/docs/source/manual/file_formats/pin_table_file.rst b/docs/source/manual/file_formats/pin_table_file.rst index 033f7c9b7..46b316e7b 100644 --- a/docs/source/manual/file_formats/pin_table_file.rst +++ b/docs/source/manual/file_formats/pin_table_file.rst @@ -14,22 +14,22 @@ An example of the file is shown as follows. .. code-block:: xml orientation,row,col,pin_num_in_cell,port_name,mapped_pin,GPIO_type,Associated Clock,Clock Edge - TOP,,,,gfpga_pad_IO_A2F[0],pad_fpga_io[0],,, - TOP,,,,gfpga_pad_IO_F2A[0],pad_fpga_io[0],,, - TOP,,,,gfpga_pad_IO_A2F[4],pad_fpga_io[1],,, - TOP,,,,gfpga_pad_IO_F2A[4],pad_fpga_io[1],,, - TOP,,,,gfpga_pad_IO_A2F[8],pad_fpga_io[2],,, - TOP,,,,gfpga_pad_IO_F2A[8],pad_fpga_io[2],,, - TOP,,,,gfpga_pad_IO_A2F[31],pad_fpga_io[3],,, - TOP,,,,gfpga_pad_IO_F2A[31],pad_fpga_io[3],,, - RIGHT,,,,gfpga_pad_IO_A2F[32],pad_fpga_io[4],,, - RIGHT,,,,gfpga_pad_IO_F2A[32],pad_fpga_io[4],,, - RIGHT,,,,gfpga_pad_IO_A2F[40],pad_fpga_io[5],,, - RIGHT,,,,gfpga_pad_IO_F2A[40],pad_fpga_io[5],,, - BOTTOM,,,,gfpga_pad_IO_A2F[64],pad_fpga_io[6],,, - BOTTOM,,,,gfpga_pad_IO_F2A[64],pad_fpga_io[6],,, - LEFT,,,,gfpga_pad_IO_F2A[127],pad_fpga_io[7],,, - LEFT,,,,gfpga_pad_IO_A2F[127],pad_fpga_io[7],,, + TOP,,,,gfpga_pad_IO_A2F[0],pad_fpga_io[0],in,, + TOP,,,,gfpga_pad_IO_F2A[0],pad_fpga_io[0],out,, + TOP,,,,gfpga_pad_IO_A2F[4],pad_fpga_io[1],in,, + TOP,,,,gfpga_pad_IO_F2A[4],pad_fpga_io[1],out,, + TOP,,,,gfpga_pad_IO_A2F[8],pad_fpga_io[2],in,, + TOP,,,,gfpga_pad_IO_F2A[8],pad_fpga_io[2],out,, + TOP,,,,gfpga_pad_IO_A2F[31],pad_fpga_io[3],in,, + TOP,,,,gfpga_pad_IO_F2A[31],pad_fpga_io[3],out,, + RIGHT,,,,gfpga_pad_IO_A2F[32],pad_fpga_io[4],in,, + RIGHT,,,,gfpga_pad_IO_F2A[32],pad_fpga_io[4],out,, + RIGHT,,,,gfpga_pad_IO_A2F[40],pad_fpga_io[5],in,, + RIGHT,,,,gfpga_pad_IO_F2A[40],pad_fpga_io[5],out,, + BOTTOM,,,,gfpga_pad_IO_A2F[64],pad_fpga_io[6],in,, + BOTTOM,,,,gfpga_pad_IO_F2A[64],pad_fpga_io[6],out,, + LEFT,,,,gfpga_pad_IO_F2A[127],pad_fpga_io[7],in,, + LEFT,,,,gfpga_pad_IO_A2F[127],pad_fpga_io[7],out,, An pin table may serve in various purposes. However, for OpenFPGA, the following attributes are required @@ -45,4 +45,8 @@ An pin table may serve in various purposes. However, for OpenFPGA, the following Specify the pin name of the FPGA chip -.. warning:: Currently, the direction of the port is inferred by the ``port_name``. A postfix of ``A2F`` indicates an input port, while a postfix of ``F2A`` indicates an output port. +.. option:: GPIO_type + + Specify the pin direction. Can be [``in``|``out``]. + + .. note:: This column can be left as empty if users follow quicklogic style. See details in :ref:`openfpga_setup_commands_pcf2place` diff --git a/docs/source/manual/openfpga_shell/openfpga_commands/setup_commands.rst b/docs/source/manual/openfpga_shell/openfpga_commands/setup_commands.rst index 98e539044..9c05ee00c 100644 --- a/docs/source/manual/openfpga_shell/openfpga_commands/setup_commands.rst +++ b/docs/source/manual/openfpga_shell/openfpga_commands/setup_commands.rst @@ -267,6 +267,8 @@ write_fabric_io_info .. note:: This file is designed for pin constraint file conversion. +.. _openfpga_setup_commands_pcf2place: + pcf2place ~~~~~~~~~ @@ -292,6 +294,10 @@ pcf2place Specify the path to the placement file which will be outputted by running this command + .. option:: --pin_table_direction_convention + + Specify the naming convention for ports in pin table files from which pin direction can be inferred. Can be [``explicit``|``quicklogic``]. When ``explicit`` is selected, pin direction is inferred based on the explicit definition in a column of pin table file, e.g., GPIO direction (see details in :ref:`file_format_pin_table_file`). When ``quicklogic`` is selected, pin direction is inferred by port name: a port whose postfix is ``_A2F`` is an input, while a port whose postfix is ``_A2F`` is an output. By default, it is ``explicit``. + .. option:: --no_time_stamp Do not print time stamp in bitstream files diff --git a/libs/libpcf/src/base/pcf_data.cpp b/libs/libpcf/src/base/pcf_data.cpp index e4a036666..46b624b47 100644 --- a/libs/libpcf/src/base/pcf_data.cpp +++ b/libs/libpcf/src/base/pcf_data.cpp @@ -60,18 +60,21 @@ bool PcfData::validate() const { net2pin[curr_net] = curr_pin; } /* We should not have duplicated pins in assignment: 1 pin -> 2 nets */ - std::map pin2net; + /* Caution: must use constant pointer here, otherwise you may see duplicated + * key on BasicPort with different content! */ + std::map pin2net; for (const PcfIoConstraintId& io_id : io_constraints()) { std::string curr_net = io_constraint_nets_[io_id]; - BasicPort curr_pin = io_constraint_pins_[io_id]; - auto result = pin2net.find(curr_pin); + const BasicPort& curr_pin = io_constraint_pins_[io_id]; + auto result = pin2net.find(&curr_pin); if (result != pin2net.end()) { /* Found one pin assigned to two nets, this is definitely an error */ VTR_LOG_ERROR("Pin '%s[%lu]' is assigned to two nets '%s' and '%s'!\n", curr_pin.get_name().c_str(), curr_pin.get_lsb(), result->second.c_str(), curr_net.c_str()); + num_err++; } - pin2net[curr_pin] = curr_net; + pin2net[&curr_pin] = curr_net; } if (num_err) { return false; diff --git a/libs/libpcf/src/io/read_csv_io_pin_table.cpp b/libs/libpcf/src/io/read_csv_io_pin_table.cpp index 18bc0499c..6c7c2cc3f 100644 --- a/libs/libpcf/src/io/read_csv_io_pin_table.cpp +++ b/libs/libpcf/src/io/read_csv_io_pin_table.cpp @@ -18,10 +18,20 @@ /* Begin namespace openfpga */ namespace openfpga { +/* Constants for io pin table csv parser */ +constexpr const int ROW_INDEX_INTERNAL_PIN = 4; +constexpr const int ROW_INDEX_EXTERNAL_PIN = 5; +constexpr const int ROW_INDEX_DIRECTION = 6; +constexpr const int ROW_INDEX_SIDE = 0; +constexpr const char* DIRECTION_INPUT = "in"; +constexpr const char* DIRECTION_OUTPUT = "out"; + /******************************************************************** * Parse XML codes about to an object of PinConstraints *******************************************************************/ -IoPinTable read_csv_io_pin_table(const char* fname) { +IoPinTable read_csv_io_pin_table( + const char* fname, + const e_pin_table_direction_convention& pin_dir_convention) { vtr::ScopedStartFinishTimer timer("Read I/O Pin Table"); IoPinTable io_pin_table; @@ -40,13 +50,13 @@ IoPinTable read_csv_io_pin_table(const char* fname) { std::vector row_vec = doc.GetRow(irow); IoPinTableId pin_id = io_pin_table.create_pin(); /* Fill pin-level information */ - PortParser internal_pin_parser(row_vec.at(4)); + PortParser internal_pin_parser(row_vec.at(ROW_INDEX_INTERNAL_PIN)); io_pin_table.set_internal_pin(pin_id, internal_pin_parser.port()); - PortParser external_pin_parser(row_vec.at(5)); + PortParser external_pin_parser(row_vec.at(ROW_INDEX_EXTERNAL_PIN)); io_pin_table.set_external_pin(pin_id, external_pin_parser.port()); - std::string pin_side_str = row_vec.at(0); + std::string pin_side_str = row_vec.at(ROW_INDEX_SIDE); if (side_str_map.end() == side_str_map.find(pin_side_str)) { VTR_LOG( "Invalid side defintion (='%s')! Expect [TOP|RIGHT|LEFT|BOTTOM]\n", @@ -58,15 +68,33 @@ IoPinTable read_csv_io_pin_table(const char* fname) { /*This is not general purpose: we should have an explicit attribute in the * csv file to decalare direction */ - if (internal_pin_parser.port().get_name().find("A2F") != - std::string::npos) { + if (pin_dir_convention == e_pin_table_direction_convention::QUICKLOGIC) { + if (internal_pin_parser.port().get_name().find("A2F") != + std::string::npos) { + io_pin_table.set_pin_direction(pin_id, IoPinTable::INPUT); + } else if (internal_pin_parser.port().get_name().find("F2A") != + std::string::npos) { + io_pin_table.set_pin_direction(pin_id, IoPinTable::OUTPUT); + } else { + VTR_LOG( + "Invalid direction defintion! Expect [A2F|F2A] in the pin name\n"); + exit(1); + } + } + + /* Parse pin direction from a specific column, this has a higher priority + * than inferring from pin names */ + std::string port_dir_str = row_vec.at(ROW_INDEX_DIRECTION); + if (port_dir_str == std::string(DIRECTION_INPUT)) { io_pin_table.set_pin_direction(pin_id, IoPinTable::INPUT); - } else if (internal_pin_parser.port().get_name().find("F2A") != - std::string::npos) { + } else if (port_dir_str == std::string(DIRECTION_OUTPUT)) { io_pin_table.set_pin_direction(pin_id, IoPinTable::OUTPUT); - } else { + } else if (pin_dir_convention == + e_pin_table_direction_convention::EXPLICIT) { + /* Error out only when we need explicit port direction */ VTR_LOG( - "Invalid direction defintion! Expect [A2F|F2A] in the pin name\n"); + "Invalid direction defintion! Expect [%s|%s] in the GPIO direction\n", + DIRECTION_INPUT, DIRECTION_OUTPUT); exit(1); } } diff --git a/libs/libpcf/src/io/read_csv_io_pin_table.h b/libs/libpcf/src/io/read_csv_io_pin_table.h index c82b5f9cf..a3a7d7281 100644 --- a/libs/libpcf/src/io/read_csv_io_pin_table.h +++ b/libs/libpcf/src/io/read_csv_io_pin_table.h @@ -14,7 +14,21 @@ /* Begin namespace openfpga */ namespace openfpga { -IoPinTable read_csv_io_pin_table(const char* fname); +/* Option to read csv */ +enum class e_pin_table_direction_convention { + EXPLICIT = 0, + QUICKLOGIC, + NUM_TYPES +}; +const std::map + PIN_TABLE_DIRECTION_CONVENTION_STRING = { + {e_pin_table_direction_convention::EXPLICIT, "explicit"}, + {e_pin_table_direction_convention::QUICKLOGIC, + "quicklogic"}}; // String versions of side orientations + +IoPinTable read_csv_io_pin_table( + const char* fname, + const e_pin_table_direction_convention& pin_dir_convention); } /* End namespace openfpga*/ diff --git a/libs/libpcf/test/test_csv_io_pin_table.cpp b/libs/libpcf/test/test_csv_io_pin_table.cpp index 22084d6b9..e9d51fb90 100644 --- a/libs/libpcf/test/test_csv_io_pin_table.cpp +++ b/libs/libpcf/test/test_csv_io_pin_table.cpp @@ -16,7 +16,8 @@ int main(int argc, const char** argv) { VTR_ASSERT((2 == argc) || (3 == argc)); /* Parse the fabric key from an XML file */ - openfpga::IoPinTable io_pin_table = openfpga::read_csv_io_pin_table(argv[1]); + openfpga::IoPinTable io_pin_table = openfpga::read_csv_io_pin_table( + argv[1], openfpga::e_pin_table_direction_convention::QUICKLOGIC); VTR_LOG("Read the I/O pin table from a csv file: %s.\n", argv[1]); /* Output to an XML file diff --git a/libs/libpcf/test/test_pcf2place.cpp b/libs/libpcf/test/test_pcf2place.cpp index 05b9614d2..ba72651d7 100644 --- a/libs/libpcf/test/test_pcf2place.cpp +++ b/libs/libpcf/test/test_pcf2place.cpp @@ -42,7 +42,8 @@ int main(int argc, const char** argv) { openfpga::read_xml_io_location_map(argv[3]); VTR_LOG("Read the I/O location map from an XML file: %s.\n", argv[3]); - openfpga::IoPinTable io_pin_table = openfpga::read_csv_io_pin_table(argv[4]); + openfpga::IoPinTable io_pin_table = openfpga::read_csv_io_pin_table( + argv[4], openfpga::e_pin_table_direction_convention::QUICKLOGIC); VTR_LOG("Read the I/O pin table from a csv file: %s.\n", argv[4]); /* Convert */ diff --git a/openfpga/src/base/openfpga_pcf2place.cpp b/openfpga/src/base/openfpga_pcf2place.cpp index 02ecea463..c3b70e85c 100644 --- a/openfpga/src/base/openfpga_pcf2place.cpp +++ b/openfpga/src/base/openfpga_pcf2place.cpp @@ -36,6 +36,8 @@ int pcf2place_wrapper(const OpenfpgaContext& openfpga_context, CommandOptionId opt_pin_table = cmd.option("pin_table"); CommandOptionId opt_fpga_fix_pins = cmd.option("fpga_fix_pins"); CommandOptionId opt_no_time_stamp = cmd.option("no_time_stamp"); + CommandOptionId opt_pin_table_dir_convention = + cmd.option("pin_table_direction_convention"); CommandOptionId opt_verbose = cmd.option("verbose"); std::string pcf_fname = cmd_context.option_value(cmd, opt_pcf); @@ -45,6 +47,30 @@ int pcf2place_wrapper(const OpenfpgaContext& openfpga_context, std::string pin_table_fname = cmd_context.option_value(cmd, opt_pin_table); std::string fpga_fix_pins_fname = cmd_context.option_value(cmd, opt_fpga_fix_pins); + e_pin_table_direction_convention pin_table_dir_convention = + e_pin_table_direction_convention::EXPLICIT; + if (cmd_context.option_enable(cmd, opt_pin_table_dir_convention)) { + std::string pin_table_dir_convention_str = + cmd_context.option_value(cmd, opt_pin_table_dir_convention); + if (pin_table_dir_convention_str == + std::string(PIN_TABLE_DIRECTION_CONVENTION_STRING.at( + e_pin_table_direction_convention::EXPLICIT))) { + pin_table_dir_convention = e_pin_table_direction_convention::EXPLICIT; + } else if (pin_table_dir_convention_str == + std::string(PIN_TABLE_DIRECTION_CONVENTION_STRING.at( + e_pin_table_direction_convention::QUICKLOGIC))) { + pin_table_dir_convention = e_pin_table_direction_convention::QUICKLOGIC; + } else { + VTR_LOG_ERROR( + "Invalid pin naming convention ('%s') to identify port direction for " + "pin table! Expect ['%s'|'%s'].\n", + pin_table_dir_convention_str.c_str(), + PIN_TABLE_DIRECTION_CONVENTION_STRING.at( + e_pin_table_direction_convention::EXPLICIT), + PIN_TABLE_DIRECTION_CONVENTION_STRING.at( + e_pin_table_direction_convention::QUICKLOGIC)); + } + } /* Parse the input files */ openfpga::PcfData pcf_data; @@ -65,7 +91,8 @@ int pcf2place_wrapper(const OpenfpgaContext& openfpga_context, VTR_LOG("Read the I/O location map from an XML file: %s.\n", fpga_io_map_fname.c_str()); - IoPinTable io_pin_table = read_csv_io_pin_table(pin_table_fname.c_str()); + IoPinTable io_pin_table = + read_csv_io_pin_table(pin_table_fname.c_str(), pin_table_dir_convention); VTR_LOG("Read the I/O pin table from a csv file: %s.\n", pin_table_fname.c_str()); diff --git a/openfpga/src/base/openfpga_setup_command.cpp b/openfpga/src/base/openfpga_setup_command.cpp index 50719d026..08e9c7497 100644 --- a/openfpga/src/base/openfpga_setup_command.cpp +++ b/openfpga/src/base/openfpga_setup_command.cpp @@ -528,6 +528,14 @@ static ShellCommandId add_openfpga_pcf2place_command( shell_cmd.set_option_require_value(opt_fpga_fix_pins_file, openfpga::OPT_STRING); + /* Add an option '--pin_table_direction_convention'*/ + CommandOptionId opt_pin_table_dir_convention = + shell_cmd.add_option("pin_table_direction_convention", false, + "the convention to follow when inferring pin " + "direction from the name of ports in pin table file"); + shell_cmd.set_option_require_value(opt_pin_table_dir_convention, + openfpga::OPT_STRING); + /* Add an option '--no_time_stamp' */ shell_cmd.add_option("no_time_stamp", false, "Do not print time stamp in output files"); diff --git a/openfpga/src/repack/repack.cpp b/openfpga/src/repack/repack.cpp index 33c27937b..6dcc64a70 100644 --- a/openfpga/src/repack/repack.cpp +++ b/openfpga/src/repack/repack.cpp @@ -11,6 +11,7 @@ #include "build_physical_lb_rr_graph.h" #include "lb_router.h" #include "lb_router_utils.h" +#include "pb_graph_utils.h" #include "pb_type_utils.h" #include "physical_pb_utils.h" #include "repack.h" @@ -258,7 +259,10 @@ static std::vector find_routed_pb_graph_pins_atom_net( * This function will find the actual routing traces of the demanded net * There is a specific search space applied when searching the routing traces: * - ONLY applicable to the pb_pin of top-level pb_graph_node - * - candidate can be limited to a set of pb pins + * - First-tier candidates are in the same port of the source pin + * - If nothing is found in first-tier, we find expand the range by considering + *all the pins in the same type that are available at the top-level + *pb_graph_node ***************************************************************************************/ static std::vector find_pb_route_by_atom_net( const t_pb* pb, const t_pb_graph_pin* source_pb_pin, @@ -267,6 +271,7 @@ static std::vector find_pb_route_by_atom_net( std::vector pb_route_indices; + std::vector candidate_pool; for (int pin = 0; pin < pb->pb_graph_node->total_pb_pins; ++pin) { /* Bypass unused pins */ if ((0 == pb->pb_route.count(pin)) || @@ -277,12 +282,25 @@ static std::vector find_pb_route_by_atom_net( if (atom_net_id != pb->pb_route.at(pin).atom_net_id) { continue; } + candidate_pool.push_back(pin); + } + for (int pin : candidate_pool) { if (source_pb_pin->port == pb->pb_route.at(pin).pb_graph_pin->port) { pb_route_indices.push_back(pin); } } + if (pb_route_indices.empty()) { + for (int pin : candidate_pool) { + if (pb->pb_route.at(pin).pb_graph_pin->parent_node->is_root() && + is_pb_graph_pins_share_interc(source_pb_pin, + pb->pb_route.at(pin).pb_graph_pin)) { + pb_route_indices.push_back(pin); + } + } + } + return pb_route_indices; } @@ -662,9 +680,16 @@ static void add_lb_router_nets( if (0 == pb_route_indices.size()) { VTR_LOGV(verbose, "Bypass routing due to no routing traces found\n"); continue; - } else { - VTR_ASSERT(1 == pb_route_indices.size()); + } else if (1 == pb_route_indices.size()) { pb_route_index = pb_route_indices[0]; + } else { + VTR_LOG_ERROR( + "Found %d routing traces for net \'%s\' in clustered block \'%s\'. " + "Expect only 1.\n", + pb_route_indices.size(), + atom_ctx.nlist.net_name(atom_net_id_to_route).c_str(), + clustering_ctx.clb_nlist.block_name(block_id).c_str()); + VTR_ASSERT(1 == pb_route_indices.size()); } t_pb_graph_pin* packing_source_pb_pin = get_pb_graph_node_pin_from_block_pin(block_id, pb_route_index); diff --git a/openfpga/src/utils/pb_graph_utils.cpp b/openfpga/src/utils/pb_graph_utils.cpp index 4b80bd596..5187bbaac 100644 --- a/openfpga/src/utils/pb_graph_utils.cpp +++ b/openfpga/src/utils/pb_graph_utils.cpp @@ -70,4 +70,34 @@ t_interconnect* pb_graph_pin_interc(t_pb_graph_pin* pb_graph_pin, return interc; } +/******************************************************************** + * This function identifies if two pb graph pins share at least one interconnect + *model The two pins should be in the same type of port, for example, both are + *inputs. Each pin may drive a number of outgoing edges while each edge + *represents different interconnect model By iterating over outgoing edges for + *each pin, common interconnect model may be found + *******************************************************************/ +bool is_pb_graph_pins_share_interc(const t_pb_graph_pin* pinA, + const t_pb_graph_pin* pinB) { + if (pinA->port->type != pinB->port->type) { + return false; + } + std::vector pinA_interc_list; + for (auto out_edge : pinA->output_edges) { + if (pinA_interc_list.end() == std::find(pinA_interc_list.begin(), + pinA_interc_list.end(), + out_edge->interconnect)) { + pinA_interc_list.push_back(out_edge->interconnect); + } + } + for (auto out_edge : pinB->output_edges) { + if (pinA_interc_list.end() != std::find(pinA_interc_list.begin(), + pinA_interc_list.end(), + out_edge->interconnect)) { + return true; + } + } + return false; +} + } /* end namespace openfpga */ diff --git a/openfpga/src/utils/pb_graph_utils.h b/openfpga/src/utils/pb_graph_utils.h index 209f87b9f..e340ba860 100644 --- a/openfpga/src/utils/pb_graph_utils.h +++ b/openfpga/src/utils/pb_graph_utils.h @@ -22,6 +22,9 @@ std::vector pb_graph_pin_inputs( t_interconnect* pb_graph_pin_interc(t_pb_graph_pin* pb_graph_pin, t_mode* selected_mode); +bool is_pb_graph_pins_share_interc(const t_pb_graph_pin* pinA, + const t_pb_graph_pin* pinB); + } /* end namespace openfpga */ #endif diff --git a/openfpga_flow/openfpga_arch/k4_frac_N4_adder_chain_mem1K_frac_dsp32_40nm_frame_openfpga.xml b/openfpga_flow/openfpga_arch/k4_frac_N4_adder_chain_mem1K_frac_dsp32_40nm_frame_openfpga.xml index bd350e389..0fcbfba3f 100644 --- a/openfpga_flow/openfpga_arch/k4_frac_N4_adder_chain_mem1K_frac_dsp32_40nm_frame_openfpga.xml +++ b/openfpga_flow/openfpga_arch/k4_frac_N4_adder_chain_mem1K_frac_dsp32_40nm_frame_openfpga.xml @@ -286,18 +286,18 @@ of the input/output of the 32x32 multiplier --> - - - + + + - - - + + + diff --git a/openfpga_flow/openfpga_arch/k4_frac_N4_fracff_40nm_registerable_io_cc_openfpga.xml b/openfpga_flow/openfpga_arch/k4_frac_N4_fracff_40nm_registerable_io_cc_openfpga.xml new file mode 100644 index 000000000..c2f043af5 --- /dev/null +++ b/openfpga_flow/openfpga_arch/k4_frac_N4_fracff_40nm_registerable_io_cc_openfpga.xml @@ -0,0 +1,267 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 10e-12 + + + 10e-12 + + + + + + + + + 10e-12 + + + 10e-12 + + + + + + + + + 10e-12 + + + 10e-12 + + + + + + + + + + + + 10e-12 5e-12 + + + 10e-12 5e-12 + + + + + + + + + + + + + 10e-12 5e-12 5e-12 + + + 10e-12 5e-12 5e-12 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/openfpga_flow/openfpga_arch/k6_frac_N10_adder_chain_frac_mem32K_frac_dsp36_40nm_GlobalTile8Clk_openfpga.xml b/openfpga_flow/openfpga_arch/k6_frac_N10_adder_chain_frac_mem32K_frac_dsp36_40nm_GlobalTile8Clk_openfpga.xml index dc39b625c..1997ab1f3 100644 --- a/openfpga_flow/openfpga_arch/k6_frac_N10_adder_chain_frac_mem32K_frac_dsp36_40nm_GlobalTile8Clk_openfpga.xml +++ b/openfpga_flow/openfpga_arch/k6_frac_N10_adder_chain_frac_mem32K_frac_dsp36_40nm_GlobalTile8Clk_openfpga.xml @@ -298,18 +298,18 @@ of the input/output of the 36x36 multiplier --> - - - + + + - - - + + + diff --git a/openfpga_flow/openfpga_cell_library/verilog/frac_mem_32k.v b/openfpga_flow/openfpga_cell_library/verilog/frac_mem_32k.v index 2d0b8fd26..b99753e7f 100644 --- a/openfpga_flow/openfpga_cell_library/verilog/frac_mem_32k.v +++ b/openfpga_flow/openfpga_cell_library/verilog/frac_mem_32k.v @@ -161,13 +161,17 @@ module frac_mem_32k ( end else if (4'b0111 == mode) begin if (we_a) begin ram_a[addr_a[0:9]] <= data_a; - ram_b[addr_b[0:9]] <= data_b; q_a <= data_a; - q_b <= data_b; end else begin q_a <= ram_a[addr_a[0:9]]; + end + + if (we_b) begin + ram_b[addr_b[0:9]] <= data_b; + q_b <= data_b; + end else begin q_b <= ram_b[addr_b[0:9]]; - end + end // Operating mode: dual port RAM 2048 x 16 end else if (4'b1000 == mode) begin if (we_a) begin diff --git a/openfpga_flow/openfpga_cell_library/verilog/frac_mult_36x36.v b/openfpga_flow/openfpga_cell_library/verilog/frac_mult_36x36.v new file mode 100644 index 000000000..a0d6fb7f9 --- /dev/null +++ b/openfpga_flow/openfpga_cell_library/verilog/frac_mult_36x36.v @@ -0,0 +1,90 @@ +//---------------------------------------------------------------------------- +// Design Name : frac_mult_36x36 +// File Name : frac_mult_36x36.v +// Function : A 36-bit multiplier which form from 9-bit multipliers. +// It can operate in 3 fracturable modes: +// 1. one 36-bit multiplier : mode[0] == 0, mode[1] == 0 +// 2. two 18-bit multipliers : mode[0] == 1, mode[1] == 0 +// 3. four 9-bit multipliers : mode[0] == 1, mode[1] == 1 +// Coder : mustafaarslan0 +//---------------------------------------------------------------------------- + +module frac_mult_36x36 +( + input wire [0:35] a, + input wire [0:35] b, + output wire [0:71] out, + input wire [0:1] mode +); + +wire [0:35] mult_ll_out; +wire [0:35] mult_lh_out; +wire [0:35] mult_hl_out; +wire [0:35] mult_hh_out; + +wire [0:36] sub_result1; // carry included +wire [0:35] sub_result2; +wire [0:71] result; + + assign sub_result1 = mult_lh_out + mult_hl_out + {18'd0, mult_ll_out[0:17]}; + assign sub_result2 = mult_hh_out + {17'd0, sub_result1[0:18]}; + + assign result[54:71] = mult_ll_out[18:35]; + assign result[36:53] = sub_result1[19:36]; + assign result[0:35] = sub_result2; + + assign out[36:71] = (mode[0] == 1'b1) ? mult_ll_out : result[36:71]; + assign out[0:35] = (mode[0] == 1'b1) ? mult_hh_out : result[0:35]; + + frac_mult_18x18 mult_ll (.a(a[18:35]), .b(b[18:35]), .out(mult_ll_out), .mode(mode[1]) ); // A_low*B_low + frac_mult_18x18 mult_lh (.a(a[18:35]), .b(b[0:17]), .out(mult_lh_out), .mode(1'b0) ); // A_low*B_high + frac_mult_18x18 mult_hl (.a(a[0:17]), .b(b[18:35]), .out(mult_hl_out), .mode(1'b0) ); // A_high*B_low + frac_mult_18x18 mult_hh (.a(a[0:17]), .b(b[0:17]), .out(mult_hh_out), .mode(mode[1])); // A_high*B_high + +endmodule + +module frac_mult_18x18 +( + input wire [0:17] a, + input wire [0:17] b, + output wire [0:35] out, + input wire [0:0] mode +); + +wire [0:17] mult_ll_out; +wire [0:17] mult_lh_out; +wire [0:17] mult_hl_out; +wire [0:17] mult_hh_out; + +wire [0:18] sub_result1; // carry included +wire [0:17] sub_result2; +wire [0:35] result; + + assign sub_result1 = mult_lh_out + mult_hl_out + {9'd0, mult_ll_out[0:8]}; + assign sub_result2 = mult_hh_out + {8'd0, sub_result1[0:9]}; + + assign result[27:35] = mult_ll_out[9:17]; + assign result[18:26] = sub_result1[10:18]; + assign result[0:17] = sub_result2; + + assign out[18:35] = (mode == 1'b1) ? mult_ll_out : result[18:35]; + assign out[0:17] = (mode == 1'b1) ? mult_hh_out : result[0:17]; + + multiplier #(9) mult_ll (.a(a[9:17]), .b(b[9:17]), .out(mult_ll_out) ); // A_low*B_low + multiplier #(9) mult_lh (.a(a[9:17]), .b(b[0:8]), .out(mult_lh_out) ); // A_low*B_high + multiplier #(9) mult_hl (.a(a[0:8]), .b(b[9:17]), .out(mult_hl_out) ); // A_high*B_low + multiplier #(9) mult_hh (.a(a[0:8]), .b(b[0:8]), .out(mult_hh_out) ); // A_high*B_high + +endmodule + +module multiplier +#( parameter WIDTH = 9 ) +( + input wire [0:WIDTH-1] a, + input wire [0:WIDTH-1] b, + output wire [0:2*WIDTH-1] out +); + + assign out = a * b; + +endmodule diff --git a/openfpga_flow/openfpga_shell_scripts/ignore_global_nets_on_pins_example_script.openfpga b/openfpga_flow/openfpga_shell_scripts/ignore_global_nets_on_pins_example_script.openfpga index 9fff5a5d9..315816d04 100644 --- a/openfpga_flow/openfpga_shell_scripts/ignore_global_nets_on_pins_example_script.openfpga +++ b/openfpga_flow/openfpga_shell_scripts/ignore_global_nets_on_pins_example_script.openfpga @@ -30,7 +30,7 @@ write_fabric_hierarchy --file ./fabric_hierarchy.txt # Repack the netlist to physical pbs # This must be done before bitstream generator and testbench generation # Strongly recommend it is done after all the fix-up have been applied -repack --ignore_global_nets_on_pins clb.I[0:11] #--verbose +repack --ignore_global_nets_on_pins clb.I[0:11] --design_constraints ${OPENFPGA_REPACK_DESIGN_CONSTRAINT_FILE} #--verbose # Build the bitstream # - Output the fabric-independent bitstream to a file diff --git a/openfpga_flow/openfpga_shell_scripts/pin_constrain_example_script.openfpga b/openfpga_flow/openfpga_shell_scripts/pin_constrain_example_script.openfpga index ad29fc51e..f25bf0323 100644 --- a/openfpga_flow/openfpga_shell_scripts/pin_constrain_example_script.openfpga +++ b/openfpga_flow/openfpga_shell_scripts/pin_constrain_example_script.openfpga @@ -1,5 +1,5 @@ # Convert .pcf to a .place file that VPR can accept -pcf2place --pcf ${OPENFPGA_PCF} --blif ${VPR_TESTBENCH_BLIF} --pin_table ${OPENFPGA_PIN_TABLE} --fpga_io_map ${OPENFPGA_IO_MAP_FILE} --fpga_fix_pins ${OPENFPGA_VPR_FIX_PINS_FILE} +pcf2place --pcf ${OPENFPGA_PCF} --blif ${VPR_TESTBENCH_BLIF} --pin_table ${OPENFPGA_PIN_TABLE} --fpga_io_map ${OPENFPGA_IO_MAP_FILE} --fpga_fix_pins ${OPENFPGA_VPR_FIX_PINS_FILE} --pin_table_direction_convention ${OPENFPGA_PIN_TABLE_DIRECTION_CONVENTION} # Run VPR for the 'and' design #--write_rr_graph example_rr_graph.xml diff --git a/openfpga_flow/regression_test_scripts/basic_reg_test.sh b/openfpga_flow/regression_test_scripts/basic_reg_test.sh index 288b8a277..e4bd6cff0 100755 --- a/openfpga_flow/regression_test_scripts/basic_reg_test.sh +++ b/openfpga_flow/regression_test_scripts/basic_reg_test.sh @@ -134,6 +134,7 @@ run-task basic_tests/k4_series/k4n4_custom_io_loc_center_height_odd $@ run-task basic_tests/k4_series/k4n4_custom_io_loc_center_width_odd $@ echo -e "Testing K4N4 with a local routing where reset can driven LUT inputs"; run-task basic_tests/k4_series/k4n4_rstOnLut $@ +run-task basic_tests/k4_series/k4n4_rstOnLut_strong $@ echo -e "Testing different tile organizations"; echo -e "Testing tiles with pins only on top and left sides"; @@ -184,8 +185,10 @@ run-task basic_tests/bus_group/full_testbench_explicit_mapping $@ run-task basic_tests/bus_group/full_testbench_implicit_mapping $@ echo -e "Testing fix pins features"; -run-task basic_tests/fix_pins $@ -run-task basic_tests/constrain_pin_location $@ +run-task basic_tests/io_constraints/fix_pins $@ +run-task basic_tests/io_constraints/example_pcf $@ +run-task basic_tests/io_constraints/empty_pcf $@ +run-task basic_tests/io_constraints/pcf_ql_style $@ echo -e "Testing project templates"; run-task template_tasks/vpr_blif_template $@ diff --git a/openfpga_flow/tasks/basic_tests/io_constraints/empty_pcf/config/and2.pcf b/openfpga_flow/tasks/basic_tests/io_constraints/empty_pcf/config/and2.pcf new file mode 100644 index 000000000..43a5d7296 --- /dev/null +++ b/openfpga_flow/tasks/basic_tests/io_constraints/empty_pcf/config/and2.pcf @@ -0,0 +1 @@ +# Intended to be empt diff --git a/openfpga_flow/tasks/basic_tests/constrain_pin_location/config/fpga_io_location.xml b/openfpga_flow/tasks/basic_tests/io_constraints/empty_pcf/config/fpga_io_location.xml similarity index 100% rename from openfpga_flow/tasks/basic_tests/constrain_pin_location/config/fpga_io_location.xml rename to openfpga_flow/tasks/basic_tests/io_constraints/empty_pcf/config/fpga_io_location.xml diff --git a/openfpga_flow/tasks/basic_tests/io_constraints/empty_pcf/config/pinmap_k4_N4_tileable_40nm.csv b/openfpga_flow/tasks/basic_tests/io_constraints/empty_pcf/config/pinmap_k4_N4_tileable_40nm.csv new file mode 100644 index 000000000..9b7206eba --- /dev/null +++ b/openfpga_flow/tasks/basic_tests/io_constraints/empty_pcf/config/pinmap_k4_N4_tileable_40nm.csv @@ -0,0 +1,17 @@ +orientation,row,col,pin_num_in_cell,port_name,mapped_pin,GPIO_type,Associated Clock,Clock Edge +TOP,,,,gfpga_pad_IO_A2F[0],pad_fpga_io[0],in,, +TOP,,,,gfpga_pad_IO_F2A[0],pad_fpga_io[0],out,, +TOP,,,,gfpga_pad_IO_A2F[2],pad_fpga_io[1],in,, +TOP,,,,gfpga_pad_IO_F2A[2],pad_fpga_io[1],out,, +TOP,,,,gfpga_pad_IO_A2F[1],pad_fpga_io[2],in,, +TOP,,,,gfpga_pad_IO_F2A[1],pad_fpga_io[2],out,, +TOP,,,,gfpga_pad_IO_A2F[3],pad_fpga_io[3],in,, +TOP,,,,gfpga_pad_IO_F2A[3],pad_fpga_io[3],out,, +RIGHT,,,,gfpga_pad_IO_A2F[5],pad_fpga_io[4],in,, +RIGHT,,,,gfpga_pad_IO_F2A[5],pad_fpga_io[4],out,, +RIGHT,,,,gfpga_pad_IO_A2F[4],pad_fpga_io[5],in,, +RIGHT,,,,gfpga_pad_IO_F2A[4],pad_fpga_io[5],out,, +BOTTOM,,,,gfpga_pad_IO_A2F[6],pad_fpga_io[6],in,, +BOTTOM,,,,gfpga_pad_IO_F2A[6],pad_fpga_io[6],out,, +LEFT,,,,gfpga_pad_IO_F2A[7],pad_fpga_io[7],in,, +LEFT,,,,gfpga_pad_IO_A2F[7],pad_fpga_io[7],out,, diff --git a/openfpga_flow/tasks/basic_tests/constrain_pin_location/config/task.conf b/openfpga_flow/tasks/basic_tests/io_constraints/empty_pcf/config/task.conf similarity index 80% rename from openfpga_flow/tasks/basic_tests/constrain_pin_location/config/task.conf rename to openfpga_flow/tasks/basic_tests/io_constraints/empty_pcf/config/task.conf index a7d18889b..131d6246a 100644 --- a/openfpga_flow/tasks/basic_tests/constrain_pin_location/config/task.conf +++ b/openfpga_flow/tasks/basic_tests/io_constraints/empty_pcf/config/task.conf @@ -21,10 +21,11 @@ openfpga_arch_file=${PATH:OPENFPGA_PATH}/openfpga_flow/openfpga_arch/k4_N4_40nm_ openfpga_sim_setting_file=${PATH:OPENFPGA_PATH}/openfpga_flow/openfpga_simulation_settings/auto_sim_openfpga.xml openfpga_vpr_device_layout=4x4 openfpga_vpr_route_chan_width=20 -openfpga_pcf=${PATH:OPENFPGA_PATH}/openfpga_flow/tasks/basic_tests/constrain_pin_location/config/and2.pcf -openfpga_io_map_file=${PATH:OPENFPGA_PATH}/openfpga_flow/tasks/basic_tests/constrain_pin_location/config/fpga_io_location.xml -openfpga_pin_table=${PATH:OPENFPGA_PATH}/openfpga_flow/tasks/basic_tests/constrain_pin_location/config/pinmap_k4_N4_tileable_40nm.csv +openfpga_pcf=${PATH:TASK_DIR}/config/and2.pcf +openfpga_io_map_file=${PATH:TASK_DIR}/config/fpga_io_location.xml +openfpga_pin_table=${PATH:TASK_DIR}/config/pinmap_k4_N4_tileable_40nm.csv openfpga_vpr_fix_pins_file=and2_fix_pins.place +openfpga_pin_table_direction_convention=explicit [ARCHITECTURES] arch0=${PATH:OPENFPGA_PATH}/openfpga_flow/vpr_arch/k4_N4_tileable_40nm.xml diff --git a/openfpga_flow/tasks/basic_tests/constrain_pin_location/config/and2.pcf b/openfpga_flow/tasks/basic_tests/io_constraints/example_pcf/config/and2.pcf similarity index 100% rename from openfpga_flow/tasks/basic_tests/constrain_pin_location/config/and2.pcf rename to openfpga_flow/tasks/basic_tests/io_constraints/example_pcf/config/and2.pcf diff --git a/openfpga_flow/tasks/basic_tests/io_constraints/example_pcf/config/fpga_io_location.xml b/openfpga_flow/tasks/basic_tests/io_constraints/example_pcf/config/fpga_io_location.xml new file mode 100644 index 000000000..03eb56357 --- /dev/null +++ b/openfpga_flow/tasks/basic_tests/io_constraints/example_pcf/config/fpga_io_location.xml @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/openfpga_flow/tasks/basic_tests/io_constraints/example_pcf/config/pinmap_k4_N4_tileable_40nm.csv b/openfpga_flow/tasks/basic_tests/io_constraints/example_pcf/config/pinmap_k4_N4_tileable_40nm.csv new file mode 100644 index 000000000..9b7206eba --- /dev/null +++ b/openfpga_flow/tasks/basic_tests/io_constraints/example_pcf/config/pinmap_k4_N4_tileable_40nm.csv @@ -0,0 +1,17 @@ +orientation,row,col,pin_num_in_cell,port_name,mapped_pin,GPIO_type,Associated Clock,Clock Edge +TOP,,,,gfpga_pad_IO_A2F[0],pad_fpga_io[0],in,, +TOP,,,,gfpga_pad_IO_F2A[0],pad_fpga_io[0],out,, +TOP,,,,gfpga_pad_IO_A2F[2],pad_fpga_io[1],in,, +TOP,,,,gfpga_pad_IO_F2A[2],pad_fpga_io[1],out,, +TOP,,,,gfpga_pad_IO_A2F[1],pad_fpga_io[2],in,, +TOP,,,,gfpga_pad_IO_F2A[1],pad_fpga_io[2],out,, +TOP,,,,gfpga_pad_IO_A2F[3],pad_fpga_io[3],in,, +TOP,,,,gfpga_pad_IO_F2A[3],pad_fpga_io[3],out,, +RIGHT,,,,gfpga_pad_IO_A2F[5],pad_fpga_io[4],in,, +RIGHT,,,,gfpga_pad_IO_F2A[5],pad_fpga_io[4],out,, +RIGHT,,,,gfpga_pad_IO_A2F[4],pad_fpga_io[5],in,, +RIGHT,,,,gfpga_pad_IO_F2A[4],pad_fpga_io[5],out,, +BOTTOM,,,,gfpga_pad_IO_A2F[6],pad_fpga_io[6],in,, +BOTTOM,,,,gfpga_pad_IO_F2A[6],pad_fpga_io[6],out,, +LEFT,,,,gfpga_pad_IO_F2A[7],pad_fpga_io[7],in,, +LEFT,,,,gfpga_pad_IO_A2F[7],pad_fpga_io[7],out,, diff --git a/openfpga_flow/tasks/basic_tests/io_constraints/example_pcf/config/task.conf b/openfpga_flow/tasks/basic_tests/io_constraints/example_pcf/config/task.conf new file mode 100644 index 000000000..131d6246a --- /dev/null +++ b/openfpga_flow/tasks/basic_tests/io_constraints/example_pcf/config/task.conf @@ -0,0 +1,42 @@ +# = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = +# Configuration file for running experiments +# = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = +# timeout_each_job : FPGA Task script splits fpga flow into multiple jobs +# Each job execute fpga_flow script on combination of architecture & benchmark +# timeout_each_job is timeout for each job +# = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = + +[GENERAL] +run_engine=openfpga_shell +power_tech_file = ${PATH:OPENFPGA_PATH}/openfpga_flow/tech/PTM_45nm/45nm.xml +power_analysis = true +spice_output=false +verilog_output=true +timeout_each_job = 20*60 +fpga_flow=yosys_vpr + +[OpenFPGA_SHELL] +openfpga_shell_template=${PATH:OPENFPGA_PATH}/openfpga_flow/openfpga_shell_scripts/pin_constrain_example_script.openfpga +openfpga_arch_file=${PATH:OPENFPGA_PATH}/openfpga_flow/openfpga_arch/k4_N4_40nm_cc_openfpga.xml +openfpga_sim_setting_file=${PATH:OPENFPGA_PATH}/openfpga_flow/openfpga_simulation_settings/auto_sim_openfpga.xml +openfpga_vpr_device_layout=4x4 +openfpga_vpr_route_chan_width=20 +openfpga_pcf=${PATH:TASK_DIR}/config/and2.pcf +openfpga_io_map_file=${PATH:TASK_DIR}/config/fpga_io_location.xml +openfpga_pin_table=${PATH:TASK_DIR}/config/pinmap_k4_N4_tileable_40nm.csv +openfpga_vpr_fix_pins_file=and2_fix_pins.place +openfpga_pin_table_direction_convention=explicit + +[ARCHITECTURES] +arch0=${PATH:OPENFPGA_PATH}/openfpga_flow/vpr_arch/k4_N4_tileable_40nm.xml + +[BENCHMARKS] +bench0=${PATH:OPENFPGA_PATH}/openfpga_flow/benchmarks/micro_benchmark/and2/and2.v + +[SYNTHESIS_PARAM] +bench_read_verilog_options_common = -nolatches +bench0_top = and2 + +[SCRIPT_PARAM_MIN_ROUTE_CHAN_WIDTH] +end_flow_with_test= +vpr_fpga_verilog_formal_verification_top_netlist= diff --git a/openfpga_flow/tasks/basic_tests/fix_pins/config/and2_fix_pins.place b/openfpga_flow/tasks/basic_tests/io_constraints/fix_pins/config/and2_fix_pins.place similarity index 100% rename from openfpga_flow/tasks/basic_tests/fix_pins/config/and2_fix_pins.place rename to openfpga_flow/tasks/basic_tests/io_constraints/fix_pins/config/and2_fix_pins.place diff --git a/openfpga_flow/tasks/basic_tests/fix_pins/config/task.conf b/openfpga_flow/tasks/basic_tests/io_constraints/fix_pins/config/task.conf similarity index 92% rename from openfpga_flow/tasks/basic_tests/fix_pins/config/task.conf rename to openfpga_flow/tasks/basic_tests/io_constraints/fix_pins/config/task.conf index 56fd9ff4f..3aef18436 100644 --- a/openfpga_flow/tasks/basic_tests/fix_pins/config/task.conf +++ b/openfpga_flow/tasks/basic_tests/io_constraints/fix_pins/config/task.conf @@ -21,7 +21,7 @@ openfpga_arch_file=${PATH:OPENFPGA_PATH}/openfpga_flow/openfpga_arch/k4_N4_40nm_ openfpga_sim_setting_file=${PATH:OPENFPGA_PATH}/openfpga_flow/openfpga_simulation_settings/auto_sim_openfpga.xml openfpga_vpr_device_layout=2x2 openfpga_vpr_route_chan_width=20 -openfpga_vpr_fix_pins_file=${PATH:OPENFPGA_PATH}/openfpga_flow/tasks/basic_tests/fix_pins/config/and2_fix_pins.place +openfpga_vpr_fix_pins_file=${PATH:TASK_DIR}/config/and2_fix_pins.place [ARCHITECTURES] arch0=${PATH:OPENFPGA_PATH}/openfpga_flow/vpr_arch/k4_N4_tileable_40nm.xml diff --git a/openfpga_flow/tasks/basic_tests/io_constraints/pcf_ql_style/config/and2.pcf b/openfpga_flow/tasks/basic_tests/io_constraints/pcf_ql_style/config/and2.pcf new file mode 100644 index 000000000..839f8a857 --- /dev/null +++ b/openfpga_flow/tasks/basic_tests/io_constraints/pcf_ql_style/config/and2.pcf @@ -0,0 +1,3 @@ +set_io a pad_fpga_io[0] +set_io b pad_fpga_io[4] +set_io c pad_fpga_io[6] diff --git a/openfpga_flow/tasks/basic_tests/io_constraints/pcf_ql_style/config/fpga_io_location.xml b/openfpga_flow/tasks/basic_tests/io_constraints/pcf_ql_style/config/fpga_io_location.xml new file mode 100644 index 000000000..03eb56357 --- /dev/null +++ b/openfpga_flow/tasks/basic_tests/io_constraints/pcf_ql_style/config/fpga_io_location.xml @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/openfpga_flow/tasks/basic_tests/constrain_pin_location/config/pinmap_k4_N4_tileable_40nm.csv b/openfpga_flow/tasks/basic_tests/io_constraints/pcf_ql_style/config/pinmap_k4_N4_tileable_40nm.csv similarity index 100% rename from openfpga_flow/tasks/basic_tests/constrain_pin_location/config/pinmap_k4_N4_tileable_40nm.csv rename to openfpga_flow/tasks/basic_tests/io_constraints/pcf_ql_style/config/pinmap_k4_N4_tileable_40nm.csv diff --git a/openfpga_flow/tasks/basic_tests/io_constraints/pcf_ql_style/config/task.conf b/openfpga_flow/tasks/basic_tests/io_constraints/pcf_ql_style/config/task.conf new file mode 100644 index 000000000..cc57345e8 --- /dev/null +++ b/openfpga_flow/tasks/basic_tests/io_constraints/pcf_ql_style/config/task.conf @@ -0,0 +1,42 @@ +# = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = +# Configuration file for running experiments +# = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = +# timeout_each_job : FPGA Task script splits fpga flow into multiple jobs +# Each job execute fpga_flow script on combination of architecture & benchmark +# timeout_each_job is timeout for each job +# = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = + +[GENERAL] +run_engine=openfpga_shell +power_tech_file = ${PATH:OPENFPGA_PATH}/openfpga_flow/tech/PTM_45nm/45nm.xml +power_analysis = true +spice_output=false +verilog_output=true +timeout_each_job = 20*60 +fpga_flow=yosys_vpr + +[OpenFPGA_SHELL] +openfpga_shell_template=${PATH:OPENFPGA_PATH}/openfpga_flow/openfpga_shell_scripts/pin_constrain_example_script.openfpga +openfpga_arch_file=${PATH:OPENFPGA_PATH}/openfpga_flow/openfpga_arch/k4_N4_40nm_cc_openfpga.xml +openfpga_sim_setting_file=${PATH:OPENFPGA_PATH}/openfpga_flow/openfpga_simulation_settings/auto_sim_openfpga.xml +openfpga_vpr_device_layout=4x4 +openfpga_vpr_route_chan_width=20 +openfpga_pcf=${PATH:TASK_DIR}/config/and2.pcf +openfpga_io_map_file=${PATH:TASK_DIR}/config/fpga_io_location.xml +openfpga_pin_table=${PATH:TASK_DIR}/config/pinmap_k4_N4_tileable_40nm.csv +openfpga_vpr_fix_pins_file=and2_fix_pins.place +openfpga_pin_table_direction_convention=quicklogic + +[ARCHITECTURES] +arch0=${PATH:OPENFPGA_PATH}/openfpga_flow/vpr_arch/k4_N4_tileable_40nm.xml + +[BENCHMARKS] +bench0=${PATH:OPENFPGA_PATH}/openfpga_flow/benchmarks/micro_benchmark/and2/and2.v + +[SYNTHESIS_PARAM] +bench_read_verilog_options_common = -nolatches +bench0_top = and2 + +[SCRIPT_PARAM_MIN_ROUTE_CHAN_WIDTH] +end_flow_with_test= +vpr_fpga_verilog_formal_verification_top_netlist= diff --git a/openfpga_flow/tasks/basic_tests/k4_series/k4n4_rstOnLut/config/repack_design_constraints.xml b/openfpga_flow/tasks/basic_tests/k4_series/k4n4_rstOnLut/config/repack_design_constraints.xml new file mode 100644 index 000000000..06a125111 --- /dev/null +++ b/openfpga_flow/tasks/basic_tests/k4_series/k4n4_rstOnLut/config/repack_design_constraints.xml @@ -0,0 +1,4 @@ + + + + diff --git a/openfpga_flow/tasks/basic_tests/k4_series/k4n4_rstOnLut/config/task.conf b/openfpga_flow/tasks/basic_tests/k4_series/k4n4_rstOnLut/config/task.conf index ba2269805..dd6574e18 100644 --- a/openfpga_flow/tasks/basic_tests/k4_series/k4n4_rstOnLut/config/task.conf +++ b/openfpga_flow/tasks/basic_tests/k4_series/k4n4_rstOnLut/config/task.conf @@ -19,6 +19,7 @@ fpga_flow=yosys_vpr openfpga_shell_template=${PATH:OPENFPGA_PATH}/openfpga_flow/openfpga_shell_scripts/ignore_global_nets_on_pins_example_script.openfpga openfpga_arch_file=${PATH:OPENFPGA_PATH}/openfpga_flow/openfpga_arch/k4_frac_N4_fracff_40nm_cc_openfpga.xml openfpga_sim_setting_file=${PATH:OPENFPGA_PATH}/openfpga_flow/openfpga_simulation_settings/fixed_sim_openfpga.xml +openfpga_repack_design_constraint_file=${PATH:TASK_DIR}/config/repack_design_constraints.xml [ARCHITECTURES] arch0=${PATH:OPENFPGA_PATH}/openfpga_flow/vpr_arch/k4_frac_N4_tileable_fracff_rstOnLut_40nm.xml diff --git a/openfpga_flow/tasks/basic_tests/k4_series/k4n4_rstOnLut_strong/config/pin_constraints_reset.xml b/openfpga_flow/tasks/basic_tests/k4_series/k4n4_rstOnLut_strong/config/pin_constraints_reset.xml new file mode 100644 index 000000000..317f88671 --- /dev/null +++ b/openfpga_flow/tasks/basic_tests/k4_series/k4n4_rstOnLut_strong/config/pin_constraints_reset.xml @@ -0,0 +1,7 @@ + + + + + diff --git a/openfpga_flow/tasks/basic_tests/k4_series/k4n4_rstOnLut_strong/config/repack_design_constraints.xml b/openfpga_flow/tasks/basic_tests/k4_series/k4n4_rstOnLut_strong/config/repack_design_constraints.xml new file mode 100644 index 000000000..9ed626423 --- /dev/null +++ b/openfpga_flow/tasks/basic_tests/k4_series/k4n4_rstOnLut_strong/config/repack_design_constraints.xml @@ -0,0 +1,5 @@ + + + + + diff --git a/openfpga_flow/tasks/basic_tests/k4_series/k4n4_rstOnLut_strong/config/task.conf b/openfpga_flow/tasks/basic_tests/k4_series/k4n4_rstOnLut_strong/config/task.conf new file mode 100644 index 000000000..61c992d3a --- /dev/null +++ b/openfpga_flow/tasks/basic_tests/k4_series/k4n4_rstOnLut_strong/config/task.conf @@ -0,0 +1,43 @@ +# = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = +# Configuration file for running experiments +# = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = +# timeout_each_job : FPGA Task script splits fpga flow into multiple jobs +# Each job execute fpga_flow script on combination of architecture & benchmark +# timeout_each_job is timeout for each job +# = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = + +[GENERAL] +run_engine=openfpga_shell +power_tech_file = ${PATH:OPENFPGA_PATH}/openfpga_flow/tech/PTM_45nm/45nm.xml +power_analysis = false +spice_output=false +verilog_output=true +timeout_each_job = 3*60 +fpga_flow=yosys_vpr + +[OpenFPGA_SHELL] +openfpga_shell_template=${PATH:OPENFPGA_PATH}/openfpga_flow/openfpga_shell_scripts/ignore_global_nets_on_pins_example_script.openfpga +openfpga_arch_file=${PATH:OPENFPGA_PATH}/openfpga_flow/openfpga_arch/k4_frac_N4_fracff_40nm_registerable_io_cc_openfpga.xml +openfpga_sim_setting_file=${PATH:OPENFPGA_PATH}/openfpga_flow/openfpga_simulation_settings/fixed_sim_openfpga.xml +openfpga_repack_design_constraint_file=${PATH:TASK_DIR}/config/repack_design_constraints.xml + +[ARCHITECTURES] +arch0=${PATH:OPENFPGA_PATH}/openfpga_flow/vpr_arch/k4_frac_N4_tileable_fracff_rstOnLut_registerable_io_40nm.xml + +[BENCHMARKS] +bench0=${PATH:OPENFPGA_PATH}/openfpga_flow/benchmarks/micro_benchmark/rst_on_lut/rst_on_lut.v + +[SYNTHESIS_PARAM] +# Yosys script parameters +bench_yosys_cell_sim_verilog_common=${PATH:OPENFPGA_PATH}/openfpga_flow/openfpga_yosys_techlib/openfpga_dff_sim.v +bench_yosys_dff_map_verilog_common=${PATH:OPENFPGA_PATH}/openfpga_flow/openfpga_yosys_techlib/openfpga_dff_map.v +bench_read_verilog_options_common = -nolatches +bench_yosys_common=${PATH:OPENFPGA_PATH}/openfpga_flow/misc/ys_tmpl_yosys_vpr_dff_flow.ys +bench_yosys_rewrite_common=${PATH:OPENFPGA_PATH}/openfpga_flow/misc/ys_tmpl_yosys_vpr_flow_with_rewrite.ys;${PATH:OPENFPGA_PATH}/openfpga_flow/misc/ys_tmpl_rewrite_flow.ys + +bench0_top = rst_on_lut +bench0_openfpga_pin_constraints_file = ${PATH:TASK_DIR}/config/pin_constraints_reset.xml + +[SCRIPT_PARAM_MIN_ROUTE_CHAN_WIDTH] +end_flow_with_test= +vpr_fpga_verilog_formal_verification_top_netlist= diff --git a/openfpga_flow/tasks/benchmark_sweep/iwls2005/config/iwls_benchmark_golden_results.csv b/openfpga_flow/tasks/benchmark_sweep/iwls2005/config/iwls_benchmark_golden_results.csv index fe07fa1c1..89659b480 100644 --- a/openfpga_flow/tasks/benchmark_sweep/iwls2005/config/iwls_benchmark_golden_results.csv +++ b/openfpga_flow/tasks/benchmark_sweep/iwls2005/config/iwls_benchmark_golden_results.csv @@ -1,20 +1,21 @@ -mult_blocks,total_routing_area,total_routing_time,TotalRunTime,packing_time,name,io_blocks,memory_blocks,placement_time,average_net_length,routing_time,clb_blocks,critical_path,total_wire_length,total_logic_block_area -0,8.02931,3.53,143,85.87,00_eth_top_MIN_ROUTE_CHAN_WIDTH,211,4,6.78,15.2037,3.53,292,4.34288e-09,36945,1 -0,7.23279,3.54,108,53.90,00_mc_top_MIN_ROUTE_CHAN_WIDTH,267,0,5.49,17.0883,3.54,254,7.331640000000001e-09,35800,1 -0,620306.,0.17,14,10.78,00_simple_spi_top_MIN_ROUTE_CHAN_WIDTH,28,0,0.33,7.10949,0.17,18,2.56241e-09,974,970092 -0,5.94202,3.04,85,34.23,00_tv80s_MIN_ROUTE_CHAN_WIDTH,46,0,3.71,19.8659,3.04,202,8.90858e-09,32600,1 -0,1.13704,5.56,211,139.55,00_vga_enh_top_MIN_ROUTE_CHAN_WIDTH,196,11,10.12,16.2042,5.56,414,3.8128200000000005e-09,63472,2 -0,7.23279,2.87,338,31.76,00_aes_cipher_top_MIN_ROUTE_CHAN_WIDTH,388,0,6.09,14.2891,2.87,267,4.37135e-09,30993,1 -0,9.51115,4.49,274,51.71,00_aes_inv_cipher_top_MIN_ROUTE_CHAN_WIDTH,389,16,7.55,15.5093,4.49,343,4.749290000000001e-09,40898,2 -1,1.13704,6.18,431,91.44,00_fpu_MIN_ROUTE_CHAN_WIDTH,110,0,8.42,14.6717,6.18,429,1.6591900000000002e-07,58012,2 -0,1.13704,5.7,275,201.24,00_pci_bridge32_MIN_ROUTE_CHAN_WIDTH,367,0,11.01,14.4637,5.70,424,4.54535e-09,64002,2 -0,2.10319,0.84,25,11.70,00_spi_top_MIN_ROUTE_CHAN_WIDTH,90,0,1.25,14.5174,0.84,69,5.46323e-09,7941,3 -0,4.62242,1.97,60,29.06,00_aes_MIN_ROUTE_CHAN_WIDTH,389,0,3.77,15.9033,1.97,151,5.37676e-09,21883,8 -0,8.86284,4.28,199,139.64,00_usbf_top_MIN_ROUTE_CHAN_WIDTH,235,0,6.63,17.6241,4.28,305,5.084290000000001e-09,48290,1 -0,1.21212,86.15,694,97.52,00_wb_conmax_top_MIN_ROUTE_CHAN_WIDTH,2546,0,64.43,42.0125,86.15,831,5.21772e-09,258839,4 -0,789582.,0.3,10,5.62,00_i2c_master_top_MIN_ROUTE_CHAN_WIDTH,33,0,0.41,7.73636,0.30,23,3.07388e-09,1702,1 -0,620306.,0.16,8,4.79,00_sasc_top_MIN_ROUTE_CHAN_WIDTH,28,0,0.24,6.14844,0.16,17,1.77641e-09,787,916198 -0,417802.,0.1,4,2.35,00_pcm_slv_top_MIN_ROUTE_CHAN_WIDTH,28,0,0.14,5.20548,0.10,9,1.68994e-09,380,485046 -0,1.43501,0.49,42,31.70,00_des_MIN_ROUTE_CHAN_WIDTH,189,0,0.84,9.10709,0.49,43,3.6623500000000003e-09,5783,2 -0,620306.,0.15,6,2.75,00_usb_phy_MIN_ROUTE_CHAN_WIDTH,33,0,0.21,6.56044,0.15,13,1.75847e-09,597,700622 -0,3.94926,1.45,78,31.64,00_wb_dma_top_MIN_ROUTE_CHAN_WIDTH,431,0,2.89,13.4492,1.45,85,4.274350000000001e-09,14041,4 +name,TotalRunTime,clb_blocks,io_blocks,mult_blocks,memory_blocks,total_routing_area,total_logic_block_area,total_wire_length,packing_time,placement_time,routing_time,average_net_length,total_routing_time,name,TotalRunTime,clb_blocks,io_blocks,mult_blocks,memory_blocks,total_routing_area,total_logic_block_area,total_wire_length,packing_time,placement_time,routing_time,average_net_length,total_routing_time,name,TotalRunTime,clb_blocks,io_blocks,mult_blocks,memory_blocks,total_routing_area,total_logic_block_area,total_wire_length,packing_time,placement_time,routing_time,average_net_length,total_routing_time,name,TotalRunTime,clb_blocks,io_blocks,mult_blocks,memory_blocks,total_routing_area,total_logic_block_area,total_wire_length,packing_time,placement_time,routing_time,average_net_length,total_routing_time,name,TotalRunTime,clb_blocks,io_blocks,mult_blocks,memory_blocks,total_routing_area,total_logic_block_area,total_wire_length,packing_time,placement_time,routing_time,average_net_length,total_routing_time,name,TotalRunTime,clb_blocks,io_blocks,mult_blocks,memory_blocks,total_routing_area,total_logic_block_area,total_wire_length,packing_time,placement_time,routing_time,average_net_length,total_routing_time,name,TotalRunTime,clb_blocks,io_blocks,mult_blocks,memory_blocks,total_routing_area,total_logic_block_area,total_wire_length,packing_time,placement_time,routing_time,average_net_length,total_routing_time,name,TotalRunTime,clb_blocks,io_blocks,mult_blocks,memory_blocks,total_routing_area,total_logic_block_area,total_wire_length,packing_time,placement_time,routing_time,average_net_length,total_routing_time,name,TotalRunTime,clb_blocks,io_blocks,mult_blocks,memory_blocks,total_routing_area,total_logic_block_area,total_wire_length,packing_time,placement_time,routing_time,average_net_length,total_routing_time,name,TotalRunTime,clb_blocks,io_blocks,mult_blocks,memory_blocks,total_routing_area,total_logic_block_area,total_wire_length,packing_time,placement_time,routing_time,average_net_length,total_routing_time,name,TotalRunTime,clb_blocks,io_blocks,mult_blocks,memory_blocks,total_routing_area,total_logic_block_area,total_wire_length,packing_time,placement_time,routing_time,average_net_length,total_routing_time,name,TotalRunTime,clb_blocks,io_blocks,mult_blocks,memory_blocks,total_routing_area,total_logic_block_area,total_wire_length,packing_time,placement_time,routing_time,average_net_length,total_routing_time,name,TotalRunTime,clb_blocks,io_blocks,mult_blocks,memory_blocks,total_routing_area,total_logic_block_area,total_wire_length,packing_time,placement_time,routing_time,average_net_length,total_routing_time,name,TotalRunTime,clb_blocks,io_blocks,mult_blocks,memory_blocks,total_routing_area,total_logic_block_area,total_wire_length,packing_time,placement_time,routing_time,average_net_length,total_routing_time,name,TotalRunTime,clb_blocks,io_blocks,mult_blocks,memory_blocks,total_routing_area,total_logic_block_area,total_wire_length,packing_time,placement_time,routing_time,average_net_length,total_routing_time,name,TotalRunTime,clb_blocks,io_blocks,mult_blocks,memory_blocks,total_routing_area,total_logic_block_area,total_wire_length,packing_time,placement_time,routing_time,average_net_length,total_routing_time,name,TotalRunTime,clb_blocks,io_blocks,mult_blocks,memory_blocks,total_routing_area,total_logic_block_area,total_wire_length,packing_time,placement_time,routing_time,average_net_length,total_routing_time,name,TotalRunTime,clb_blocks,io_blocks,mult_blocks,memory_blocks,total_routing_area,total_logic_block_area,total_wire_length,packing_time,placement_time,routing_time,average_net_length,total_routing_time,name,TotalRunTime,clb_blocks,io_blocks,mult_blocks,memory_blocks,total_routing_area,total_logic_block_area,total_wire_length,packing_time,placement_time,routing_time,average_net_length,total_routing_time,name,TotalRunTime,clb_blocks,io_blocks,mult_blocks,memory_blocks,total_routing_area,total_logic_block_area,total_wire_length,packing_time,placement_time,routing_time,average_net_length,total_routing_time +00_eth_top_MIN_ROUTE_CHAN_WIDTH,135,295,211,0,4,8.02931e+06,1.80907e+07,37792,90.64,0.00,0.78,14.8088,0.78,00_eth_top_MIN_ROUTE_CHAN_WIDTH,135,295,211,0,4,8.02931e+06,1.80907e+07,37792,90.64,0.00,0.78,14.8088,0.78,00_eth_top_MIN_ROUTE_CHAN_WIDTH,135,295,211,0,4,8.02931e+06,1.80907e+07,37792,90.64,0.00,0.78,14.8088,0.78,00_eth_top_MIN_ROUTE_CHAN_WIDTH,135,295,211,0,4,8.02931e+06,1.80907e+07,37792,90.64,0.00,0.78,14.8088,0.78,00_eth_top_MIN_ROUTE_CHAN_WIDTH,135,295,211,0,4,8.02931e+06,1.80907e+07,37792,90.64,0.00,0.78,14.8088,0.78,00_eth_top_MIN_ROUTE_CHAN_WIDTH,135,295,211,0,4,8.02931e+06,1.80907e+07,37792,90.64,0.00,0.78,14.8088,0.78,00_eth_top_MIN_ROUTE_CHAN_WIDTH,135,295,211,0,4,8.02931e+06,1.80907e+07,37792,90.64,0.00,0.78,14.8088,0.78,00_eth_top_MIN_ROUTE_CHAN_WIDTH,135,295,211,0,4,8.02931e+06,1.80907e+07,37792,90.64,0.00,0.78,14.8088,0.78,00_eth_top_MIN_ROUTE_CHAN_WIDTH,135,295,211,0,4,8.02931e+06,1.80907e+07,37792,90.64,0.00,0.78,14.8088,0.78,00_eth_top_MIN_ROUTE_CHAN_WIDTH,135,295,211,0,4,8.02931e+06,1.80907e+07,37792,90.64,0.00,0.78,14.8088,0.78,00_eth_top_MIN_ROUTE_CHAN_WIDTH,135,295,211,0,4,8.02931e+06,1.80907e+07,37792,90.64,0.00,0.78,14.8088,0.78,00_eth_top_MIN_ROUTE_CHAN_WIDTH,135,295,211,0,4,8.02931e+06,1.80907e+07,37792,90.64,0.00,0.78,14.8088,0.78,00_eth_top_MIN_ROUTE_CHAN_WIDTH,135,295,211,0,4,8.02931e+06,1.80907e+07,37792,90.64,0.00,0.78,14.8088,0.78,00_eth_top_MIN_ROUTE_CHAN_WIDTH,135,295,211,0,4,8.02931e+06,1.80907e+07,37792,90.64,0.00,0.78,14.8088,0.78,00_eth_top_MIN_ROUTE_CHAN_WIDTH,135,295,211,0,4,8.02931e+06,1.80907e+07,37792,90.64,0.00,0.78,14.8088,0.78,00_eth_top_MIN_ROUTE_CHAN_WIDTH,135,295,211,0,4,8.02931e+06,1.80907e+07,37792,90.64,0.00,0.78,14.8088,0.78,00_eth_top_MIN_ROUTE_CHAN_WIDTH,135,295,211,0,4,8.02931e+06,1.80907e+07,37792,90.64,0.00,0.78,14.8088,0.78,00_eth_top_MIN_ROUTE_CHAN_WIDTH,135,295,211,0,4,8.02931e+06,1.80907e+07,37792,90.64,0.00,0.78,14.8088,0.78,00_eth_top_MIN_ROUTE_CHAN_WIDTH,135,295,211,0,4,8.02931e+06,1.80907e+07,37792,90.64,0.00,0.78,14.8088,0.78,00_eth_top_MIN_ROUTE_CHAN_WIDTH,135,295,211,0,4,8.02931e+06,1.80907e+07,37792,90.64,0.00,0.78,14.8088,0.78 +00_mc_top_MIN_ROUTE_CHAN_WIDTH,107,281,267,0,0,8.02931e+06,1.51442e+07,36985,58.95,0.00,0.96,17.2023,0.96,00_mc_top_MIN_ROUTE_CHAN_WIDTH,107,281,267,0,0,8.02931e+06,1.51442e+07,36985,58.95,0.00,0.96,17.2023,0.96,00_mc_top_MIN_ROUTE_CHAN_WIDTH,107,281,267,0,0,8.02931e+06,1.51442e+07,36985,58.95,0.00,0.96,17.2023,0.96,00_mc_top_MIN_ROUTE_CHAN_WIDTH,107,281,267,0,0,8.02931e+06,1.51442e+07,36985,58.95,0.00,0.96,17.2023,0.96,00_mc_top_MIN_ROUTE_CHAN_WIDTH,107,281,267,0,0,8.02931e+06,1.51442e+07,36985,58.95,0.00,0.96,17.2023,0.96,00_mc_top_MIN_ROUTE_CHAN_WIDTH,107,281,267,0,0,8.02931e+06,1.51442e+07,36985,58.95,0.00,0.96,17.2023,0.96,00_mc_top_MIN_ROUTE_CHAN_WIDTH,107,281,267,0,0,8.02931e+06,1.51442e+07,36985,58.95,0.00,0.96,17.2023,0.96,00_mc_top_MIN_ROUTE_CHAN_WIDTH,107,281,267,0,0,8.02931e+06,1.51442e+07,36985,58.95,0.00,0.96,17.2023,0.96,00_mc_top_MIN_ROUTE_CHAN_WIDTH,107,281,267,0,0,8.02931e+06,1.51442e+07,36985,58.95,0.00,0.96,17.2023,0.96,00_mc_top_MIN_ROUTE_CHAN_WIDTH,107,281,267,0,0,8.02931e+06,1.51442e+07,36985,58.95,0.00,0.96,17.2023,0.96,00_mc_top_MIN_ROUTE_CHAN_WIDTH,107,281,267,0,0,8.02931e+06,1.51442e+07,36985,58.95,0.00,0.96,17.2023,0.96,00_mc_top_MIN_ROUTE_CHAN_WIDTH,107,281,267,0,0,8.02931e+06,1.51442e+07,36985,58.95,0.00,0.96,17.2023,0.96,00_mc_top_MIN_ROUTE_CHAN_WIDTH,107,281,267,0,0,8.02931e+06,1.51442e+07,36985,58.95,0.00,0.96,17.2023,0.96,00_mc_top_MIN_ROUTE_CHAN_WIDTH,107,281,267,0,0,8.02931e+06,1.51442e+07,36985,58.95,0.00,0.96,17.2023,0.96,00_mc_top_MIN_ROUTE_CHAN_WIDTH,107,281,267,0,0,8.02931e+06,1.51442e+07,36985,58.95,0.00,0.96,17.2023,0.96,00_mc_top_MIN_ROUTE_CHAN_WIDTH,107,281,267,0,0,8.02931e+06,1.51442e+07,36985,58.95,0.00,0.96,17.2023,0.96,00_mc_top_MIN_ROUTE_CHAN_WIDTH,107,281,267,0,0,8.02931e+06,1.51442e+07,36985,58.95,0.00,0.96,17.2023,0.96,00_mc_top_MIN_ROUTE_CHAN_WIDTH,107,281,267,0,0,8.02931e+06,1.51442e+07,36985,58.95,0.00,0.96,17.2023,0.96,00_mc_top_MIN_ROUTE_CHAN_WIDTH,107,281,267,0,0,8.02931e+06,1.51442e+07,36985,58.95,0.00,0.96,17.2023,0.96,00_mc_top_MIN_ROUTE_CHAN_WIDTH,107,281,267,0,0,8.02931e+06,1.51442e+07,36985,58.95,0.00,0.96,17.2023,0.96 +00_simple_spi_top_MIN_ROUTE_CHAN_WIDTH,12,19,28,0,0,620306,1.02399e+06,1028,9.21,0.00,0.04,7.84733,0.04,00_simple_spi_top_MIN_ROUTE_CHAN_WIDTH,12,19,28,0,0,620306,1.02399e+06,1028,9.21,0.00,0.04,7.84733,0.04,00_simple_spi_top_MIN_ROUTE_CHAN_WIDTH,12,19,28,0,0,620306,1.02399e+06,1028,9.21,0.00,0.04,7.84733,0.04,00_simple_spi_top_MIN_ROUTE_CHAN_WIDTH,12,19,28,0,0,620306,1.02399e+06,1028,9.21,0.00,0.04,7.84733,0.04,00_simple_spi_top_MIN_ROUTE_CHAN_WIDTH,12,19,28,0,0,620306,1.02399e+06,1028,9.21,0.00,0.04,7.84733,0.04,00_simple_spi_top_MIN_ROUTE_CHAN_WIDTH,12,19,28,0,0,620306,1.02399e+06,1028,9.21,0.00,0.04,7.84733,0.04,00_simple_spi_top_MIN_ROUTE_CHAN_WIDTH,12,19,28,0,0,620306,1.02399e+06,1028,9.21,0.00,0.04,7.84733,0.04,00_simple_spi_top_MIN_ROUTE_CHAN_WIDTH,12,19,28,0,0,620306,1.02399e+06,1028,9.21,0.00,0.04,7.84733,0.04,00_simple_spi_top_MIN_ROUTE_CHAN_WIDTH,12,19,28,0,0,620306,1.02399e+06,1028,9.21,0.00,0.04,7.84733,0.04,00_simple_spi_top_MIN_ROUTE_CHAN_WIDTH,12,19,28,0,0,620306,1.02399e+06,1028,9.21,0.00,0.04,7.84733,0.04,00_simple_spi_top_MIN_ROUTE_CHAN_WIDTH,12,19,28,0,0,620306,1.02399e+06,1028,9.21,0.00,0.04,7.84733,0.04,00_simple_spi_top_MIN_ROUTE_CHAN_WIDTH,12,19,28,0,0,620306,1.02399e+06,1028,9.21,0.00,0.04,7.84733,0.04,00_simple_spi_top_MIN_ROUTE_CHAN_WIDTH,12,19,28,0,0,620306,1.02399e+06,1028,9.21,0.00,0.04,7.84733,0.04,00_simple_spi_top_MIN_ROUTE_CHAN_WIDTH,12,19,28,0,0,620306,1.02399e+06,1028,9.21,0.00,0.04,7.84733,0.04,00_simple_spi_top_MIN_ROUTE_CHAN_WIDTH,12,19,28,0,0,620306,1.02399e+06,1028,9.21,0.00,0.04,7.84733,0.04,00_simple_spi_top_MIN_ROUTE_CHAN_WIDTH,12,19,28,0,0,620306,1.02399e+06,1028,9.21,0.00,0.04,7.84733,0.04,00_simple_spi_top_MIN_ROUTE_CHAN_WIDTH,12,19,28,0,0,620306,1.02399e+06,1028,9.21,0.00,0.04,7.84733,0.04,00_simple_spi_top_MIN_ROUTE_CHAN_WIDTH,12,19,28,0,0,620306,1.02399e+06,1028,9.21,0.00,0.04,7.84733,0.04,00_simple_spi_top_MIN_ROUTE_CHAN_WIDTH,12,19,28,0,0,620306,1.02399e+06,1028,9.21,0.00,0.04,7.84733,0.04,00_simple_spi_top_MIN_ROUTE_CHAN_WIDTH,12,19,28,0,0,620306,1.02399e+06,1028,9.21,0.00,0.04,7.84733,0.04 +00_tv80s_MIN_ROUTE_CHAN_WIDTH,85,194,46,0,0,5.26319e+06,1.04554e+07,29425,39.15,0.00,0.83,19.2951,0.83,00_tv80s_MIN_ROUTE_CHAN_WIDTH,85,194,46,0,0,5.26319e+06,1.04554e+07,29425,39.15,0.00,0.83,19.2951,0.83,00_tv80s_MIN_ROUTE_CHAN_WIDTH,85,194,46,0,0,5.26319e+06,1.04554e+07,29425,39.15,0.00,0.83,19.2951,0.83,00_tv80s_MIN_ROUTE_CHAN_WIDTH,85,194,46,0,0,5.26319e+06,1.04554e+07,29425,39.15,0.00,0.83,19.2951,0.83,00_tv80s_MIN_ROUTE_CHAN_WIDTH,85,194,46,0,0,5.26319e+06,1.04554e+07,29425,39.15,0.00,0.83,19.2951,0.83,00_tv80s_MIN_ROUTE_CHAN_WIDTH,85,194,46,0,0,5.26319e+06,1.04554e+07,29425,39.15,0.00,0.83,19.2951,0.83,00_tv80s_MIN_ROUTE_CHAN_WIDTH,85,194,46,0,0,5.26319e+06,1.04554e+07,29425,39.15,0.00,0.83,19.2951,0.83,00_tv80s_MIN_ROUTE_CHAN_WIDTH,85,194,46,0,0,5.26319e+06,1.04554e+07,29425,39.15,0.00,0.83,19.2951,0.83,00_tv80s_MIN_ROUTE_CHAN_WIDTH,85,194,46,0,0,5.26319e+06,1.04554e+07,29425,39.15,0.00,0.83,19.2951,0.83,00_tv80s_MIN_ROUTE_CHAN_WIDTH,85,194,46,0,0,5.26319e+06,1.04554e+07,29425,39.15,0.00,0.83,19.2951,0.83,00_tv80s_MIN_ROUTE_CHAN_WIDTH,85,194,46,0,0,5.26319e+06,1.04554e+07,29425,39.15,0.00,0.83,19.2951,0.83,00_tv80s_MIN_ROUTE_CHAN_WIDTH,85,194,46,0,0,5.26319e+06,1.04554e+07,29425,39.15,0.00,0.83,19.2951,0.83,00_tv80s_MIN_ROUTE_CHAN_WIDTH,85,194,46,0,0,5.26319e+06,1.04554e+07,29425,39.15,0.00,0.83,19.2951,0.83,00_tv80s_MIN_ROUTE_CHAN_WIDTH,85,194,46,0,0,5.26319e+06,1.04554e+07,29425,39.15,0.00,0.83,19.2951,0.83,00_tv80s_MIN_ROUTE_CHAN_WIDTH,85,194,46,0,0,5.26319e+06,1.04554e+07,29425,39.15,0.00,0.83,19.2951,0.83,00_tv80s_MIN_ROUTE_CHAN_WIDTH,85,194,46,0,0,5.26319e+06,1.04554e+07,29425,39.15,0.00,0.83,19.2951,0.83,00_tv80s_MIN_ROUTE_CHAN_WIDTH,85,194,46,0,0,5.26319e+06,1.04554e+07,29425,39.15,0.00,0.83,19.2951,0.83,00_tv80s_MIN_ROUTE_CHAN_WIDTH,85,194,46,0,0,5.26319e+06,1.04554e+07,29425,39.15,0.00,0.83,19.2951,0.83,00_tv80s_MIN_ROUTE_CHAN_WIDTH,85,194,46,0,0,5.26319e+06,1.04554e+07,29425,39.15,0.00,0.83,19.2951,0.83,00_tv80s_MIN_ROUTE_CHAN_WIDTH,85,194,46,0,0,5.26319e+06,1.04554e+07,29425,39.15,0.00,0.83,19.2951,0.83 +00_vga_enh_top_MIN_ROUTE_CHAN_WIDTH,198,426,196,0,11,1.13704e+07,2.89868e+07,61761,149.96,0.00,1.33,15.8809,1.33,00_vga_enh_top_MIN_ROUTE_CHAN_WIDTH,198,426,196,0,11,1.13704e+07,2.89868e+07,61761,149.96,0.00,1.33,15.8809,1.33,00_vga_enh_top_MIN_ROUTE_CHAN_WIDTH,198,426,196,0,11,1.13704e+07,2.89868e+07,61761,149.96,0.00,1.33,15.8809,1.33,00_vga_enh_top_MIN_ROUTE_CHAN_WIDTH,198,426,196,0,11,1.13704e+07,2.89868e+07,61761,149.96,0.00,1.33,15.8809,1.33,00_vga_enh_top_MIN_ROUTE_CHAN_WIDTH,198,426,196,0,11,1.13704e+07,2.89868e+07,61761,149.96,0.00,1.33,15.8809,1.33,00_vga_enh_top_MIN_ROUTE_CHAN_WIDTH,198,426,196,0,11,1.13704e+07,2.89868e+07,61761,149.96,0.00,1.33,15.8809,1.33,00_vga_enh_top_MIN_ROUTE_CHAN_WIDTH,198,426,196,0,11,1.13704e+07,2.89868e+07,61761,149.96,0.00,1.33,15.8809,1.33,00_vga_enh_top_MIN_ROUTE_CHAN_WIDTH,198,426,196,0,11,1.13704e+07,2.89868e+07,61761,149.96,0.00,1.33,15.8809,1.33,00_vga_enh_top_MIN_ROUTE_CHAN_WIDTH,198,426,196,0,11,1.13704e+07,2.89868e+07,61761,149.96,0.00,1.33,15.8809,1.33,00_vga_enh_top_MIN_ROUTE_CHAN_WIDTH,198,426,196,0,11,1.13704e+07,2.89868e+07,61761,149.96,0.00,1.33,15.8809,1.33,00_vga_enh_top_MIN_ROUTE_CHAN_WIDTH,198,426,196,0,11,1.13704e+07,2.89868e+07,61761,149.96,0.00,1.33,15.8809,1.33,00_vga_enh_top_MIN_ROUTE_CHAN_WIDTH,198,426,196,0,11,1.13704e+07,2.89868e+07,61761,149.96,0.00,1.33,15.8809,1.33,00_vga_enh_top_MIN_ROUTE_CHAN_WIDTH,198,426,196,0,11,1.13704e+07,2.89868e+07,61761,149.96,0.00,1.33,15.8809,1.33,00_vga_enh_top_MIN_ROUTE_CHAN_WIDTH,198,426,196,0,11,1.13704e+07,2.89868e+07,61761,149.96,0.00,1.33,15.8809,1.33,00_vga_enh_top_MIN_ROUTE_CHAN_WIDTH,198,426,196,0,11,1.13704e+07,2.89868e+07,61761,149.96,0.00,1.33,15.8809,1.33,00_vga_enh_top_MIN_ROUTE_CHAN_WIDTH,198,426,196,0,11,1.13704e+07,2.89868e+07,61761,149.96,0.00,1.33,15.8809,1.33,00_vga_enh_top_MIN_ROUTE_CHAN_WIDTH,198,426,196,0,11,1.13704e+07,2.89868e+07,61761,149.96,0.00,1.33,15.8809,1.33,00_vga_enh_top_MIN_ROUTE_CHAN_WIDTH,198,426,196,0,11,1.13704e+07,2.89868e+07,61761,149.96,0.00,1.33,15.8809,1.33,00_vga_enh_top_MIN_ROUTE_CHAN_WIDTH,198,426,196,0,11,1.13704e+07,2.89868e+07,61761,149.96,0.00,1.33,15.8809,1.33,00_vga_enh_top_MIN_ROUTE_CHAN_WIDTH,198,426,196,0,11,1.13704e+07,2.89868e+07,61761,149.96,0.00,1.33,15.8809,1.33 +00_aes_cipher_top_MIN_ROUTE_CHAN_WIDTH,67,155,388,0,0,4.62242e+06,8.35357e+06,20502,23.55,0.00,0.63,14.4380,0.63,00_aes_cipher_top_MIN_ROUTE_CHAN_WIDTH,67,155,388,0,0,4.62242e+06,8.35357e+06,20502,23.55,0.00,0.63,14.4380,0.63,00_aes_cipher_top_MIN_ROUTE_CHAN_WIDTH,67,155,388,0,0,4.62242e+06,8.35357e+06,20502,23.55,0.00,0.63,14.4380,0.63,00_aes_cipher_top_MIN_ROUTE_CHAN_WIDTH,67,155,388,0,0,4.62242e+06,8.35357e+06,20502,23.55,0.00,0.63,14.4380,0.63,00_aes_cipher_top_MIN_ROUTE_CHAN_WIDTH,67,155,388,0,0,4.62242e+06,8.35357e+06,20502,23.55,0.00,0.63,14.4380,0.63,00_aes_cipher_top_MIN_ROUTE_CHAN_WIDTH,67,155,388,0,0,4.62242e+06,8.35357e+06,20502,23.55,0.00,0.63,14.4380,0.63,00_aes_cipher_top_MIN_ROUTE_CHAN_WIDTH,67,155,388,0,0,4.62242e+06,8.35357e+06,20502,23.55,0.00,0.63,14.4380,0.63,00_aes_cipher_top_MIN_ROUTE_CHAN_WIDTH,67,155,388,0,0,4.62242e+06,8.35357e+06,20502,23.55,0.00,0.63,14.4380,0.63,00_aes_cipher_top_MIN_ROUTE_CHAN_WIDTH,67,155,388,0,0,4.62242e+06,8.35357e+06,20502,23.55,0.00,0.63,14.4380,0.63,00_aes_cipher_top_MIN_ROUTE_CHAN_WIDTH,67,155,388,0,0,4.62242e+06,8.35357e+06,20502,23.55,0.00,0.63,14.4380,0.63,00_aes_cipher_top_MIN_ROUTE_CHAN_WIDTH,67,155,388,0,0,4.62242e+06,8.35357e+06,20502,23.55,0.00,0.63,14.4380,0.63,00_aes_cipher_top_MIN_ROUTE_CHAN_WIDTH,67,155,388,0,0,4.62242e+06,8.35357e+06,20502,23.55,0.00,0.63,14.4380,0.63,00_aes_cipher_top_MIN_ROUTE_CHAN_WIDTH,67,155,388,0,0,4.62242e+06,8.35357e+06,20502,23.55,0.00,0.63,14.4380,0.63,00_aes_cipher_top_MIN_ROUTE_CHAN_WIDTH,67,155,388,0,0,4.62242e+06,8.35357e+06,20502,23.55,0.00,0.63,14.4380,0.63,00_aes_cipher_top_MIN_ROUTE_CHAN_WIDTH,67,155,388,0,0,4.62242e+06,8.35357e+06,20502,23.55,0.00,0.63,14.4380,0.63,00_aes_cipher_top_MIN_ROUTE_CHAN_WIDTH,67,155,388,0,0,4.62242e+06,8.35357e+06,20502,23.55,0.00,0.63,14.4380,0.63,00_aes_cipher_top_MIN_ROUTE_CHAN_WIDTH,67,155,388,0,0,4.62242e+06,8.35357e+06,20502,23.55,0.00,0.63,14.4380,0.63,00_aes_cipher_top_MIN_ROUTE_CHAN_WIDTH,67,155,388,0,0,4.62242e+06,8.35357e+06,20502,23.55,0.00,0.63,14.4380,0.63,00_aes_cipher_top_MIN_ROUTE_CHAN_WIDTH,67,155,388,0,0,4.62242e+06,8.35357e+06,20502,23.55,0.00,0.63,14.4380,0.63,00_aes_cipher_top_MIN_ROUTE_CHAN_WIDTH,67,155,388,0,0,4.62242e+06,8.35357e+06,20502,23.55,0.00,0.63,14.4380,0.63 +00_aes_inv_cipher_top_MIN_ROUTE_CHAN_WIDTH,99,191,389,0,16,5.26319e+06,1.90618e+07,24602,49.30,0.00,0.72,14.0103,0.72,00_aes_inv_cipher_top_MIN_ROUTE_CHAN_WIDTH,99,191,389,0,16,5.26319e+06,1.90618e+07,24602,49.30,0.00,0.72,14.0103,0.72,00_aes_inv_cipher_top_MIN_ROUTE_CHAN_WIDTH,99,191,389,0,16,5.26319e+06,1.90618e+07,24602,49.30,0.00,0.72,14.0103,0.72,00_aes_inv_cipher_top_MIN_ROUTE_CHAN_WIDTH,99,191,389,0,16,5.26319e+06,1.90618e+07,24602,49.30,0.00,0.72,14.0103,0.72,00_aes_inv_cipher_top_MIN_ROUTE_CHAN_WIDTH,99,191,389,0,16,5.26319e+06,1.90618e+07,24602,49.30,0.00,0.72,14.0103,0.72,00_aes_inv_cipher_top_MIN_ROUTE_CHAN_WIDTH,99,191,389,0,16,5.26319e+06,1.90618e+07,24602,49.30,0.00,0.72,14.0103,0.72,00_aes_inv_cipher_top_MIN_ROUTE_CHAN_WIDTH,99,191,389,0,16,5.26319e+06,1.90618e+07,24602,49.30,0.00,0.72,14.0103,0.72,00_aes_inv_cipher_top_MIN_ROUTE_CHAN_WIDTH,99,191,389,0,16,5.26319e+06,1.90618e+07,24602,49.30,0.00,0.72,14.0103,0.72,00_aes_inv_cipher_top_MIN_ROUTE_CHAN_WIDTH,99,191,389,0,16,5.26319e+06,1.90618e+07,24602,49.30,0.00,0.72,14.0103,0.72,00_aes_inv_cipher_top_MIN_ROUTE_CHAN_WIDTH,99,191,389,0,16,5.26319e+06,1.90618e+07,24602,49.30,0.00,0.72,14.0103,0.72,00_aes_inv_cipher_top_MIN_ROUTE_CHAN_WIDTH,99,191,389,0,16,5.26319e+06,1.90618e+07,24602,49.30,0.00,0.72,14.0103,0.72,00_aes_inv_cipher_top_MIN_ROUTE_CHAN_WIDTH,99,191,389,0,16,5.26319e+06,1.90618e+07,24602,49.30,0.00,0.72,14.0103,0.72,00_aes_inv_cipher_top_MIN_ROUTE_CHAN_WIDTH,99,191,389,0,16,5.26319e+06,1.90618e+07,24602,49.30,0.00,0.72,14.0103,0.72,00_aes_inv_cipher_top_MIN_ROUTE_CHAN_WIDTH,99,191,389,0,16,5.26319e+06,1.90618e+07,24602,49.30,0.00,0.72,14.0103,0.72,00_aes_inv_cipher_top_MIN_ROUTE_CHAN_WIDTH,99,191,389,0,16,5.26319e+06,1.90618e+07,24602,49.30,0.00,0.72,14.0103,0.72,00_aes_inv_cipher_top_MIN_ROUTE_CHAN_WIDTH,99,191,389,0,16,5.26319e+06,1.90618e+07,24602,49.30,0.00,0.72,14.0103,0.72,00_aes_inv_cipher_top_MIN_ROUTE_CHAN_WIDTH,99,191,389,0,16,5.26319e+06,1.90618e+07,24602,49.30,0.00,0.72,14.0103,0.72,00_aes_inv_cipher_top_MIN_ROUTE_CHAN_WIDTH,99,191,389,0,16,5.26319e+06,1.90618e+07,24602,49.30,0.00,0.72,14.0103,0.72,00_aes_inv_cipher_top_MIN_ROUTE_CHAN_WIDTH,99,191,389,0,16,5.26319e+06,1.90618e+07,24602,49.30,0.00,0.72,14.0103,0.72,00_aes_inv_cipher_top_MIN_ROUTE_CHAN_WIDTH,99,191,389,0,16,5.26319e+06,1.90618e+07,24602,49.30,0.00,0.72,14.0103,0.72 +00_pci_bridge32_MIN_ROUTE_CHAN_WIDTH,373,435,367,0,0,1.23690e+07,2.34439e+07,63096,319.11,0.00,1.23,14.4088,1.23,00_pci_bridge32_MIN_ROUTE_CHAN_WIDTH,373,435,367,0,0,1.23690e+07,2.34439e+07,63096,319.11,0.00,1.23,14.4088,1.23,00_pci_bridge32_MIN_ROUTE_CHAN_WIDTH,373,435,367,0,0,1.23690e+07,2.34439e+07,63096,319.11,0.00,1.23,14.4088,1.23,00_pci_bridge32_MIN_ROUTE_CHAN_WIDTH,373,435,367,0,0,1.23690e+07,2.34439e+07,63096,319.11,0.00,1.23,14.4088,1.23,00_pci_bridge32_MIN_ROUTE_CHAN_WIDTH,373,435,367,0,0,1.23690e+07,2.34439e+07,63096,319.11,0.00,1.23,14.4088,1.23,00_pci_bridge32_MIN_ROUTE_CHAN_WIDTH,373,435,367,0,0,1.23690e+07,2.34439e+07,63096,319.11,0.00,1.23,14.4088,1.23,00_pci_bridge32_MIN_ROUTE_CHAN_WIDTH,373,435,367,0,0,1.23690e+07,2.34439e+07,63096,319.11,0.00,1.23,14.4088,1.23,00_pci_bridge32_MIN_ROUTE_CHAN_WIDTH,373,435,367,0,0,1.23690e+07,2.34439e+07,63096,319.11,0.00,1.23,14.4088,1.23,00_pci_bridge32_MIN_ROUTE_CHAN_WIDTH,373,435,367,0,0,1.23690e+07,2.34439e+07,63096,319.11,0.00,1.23,14.4088,1.23,00_pci_bridge32_MIN_ROUTE_CHAN_WIDTH,373,435,367,0,0,1.23690e+07,2.34439e+07,63096,319.11,0.00,1.23,14.4088,1.23,00_pci_bridge32_MIN_ROUTE_CHAN_WIDTH,373,435,367,0,0,1.23690e+07,2.34439e+07,63096,319.11,0.00,1.23,14.4088,1.23,00_pci_bridge32_MIN_ROUTE_CHAN_WIDTH,373,435,367,0,0,1.23690e+07,2.34439e+07,63096,319.11,0.00,1.23,14.4088,1.23,00_pci_bridge32_MIN_ROUTE_CHAN_WIDTH,373,435,367,0,0,1.23690e+07,2.34439e+07,63096,319.11,0.00,1.23,14.4088,1.23,00_pci_bridge32_MIN_ROUTE_CHAN_WIDTH,373,435,367,0,0,1.23690e+07,2.34439e+07,63096,319.11,0.00,1.23,14.4088,1.23,00_pci_bridge32_MIN_ROUTE_CHAN_WIDTH,373,435,367,0,0,1.23690e+07,2.34439e+07,63096,319.11,0.00,1.23,14.4088,1.23,00_pci_bridge32_MIN_ROUTE_CHAN_WIDTH,373,435,367,0,0,1.23690e+07,2.34439e+07,63096,319.11,0.00,1.23,14.4088,1.23,00_pci_bridge32_MIN_ROUTE_CHAN_WIDTH,373,435,367,0,0,1.23690e+07,2.34439e+07,63096,319.11,0.00,1.23,14.4088,1.23,00_pci_bridge32_MIN_ROUTE_CHAN_WIDTH,373,435,367,0,0,1.23690e+07,2.34439e+07,63096,319.11,0.00,1.23,14.4088,1.23,00_pci_bridge32_MIN_ROUTE_CHAN_WIDTH,373,435,367,0,0,1.23690e+07,2.34439e+07,63096,319.11,0.00,1.23,14.4088,1.23,00_pci_bridge32_MIN_ROUTE_CHAN_WIDTH,373,435,367,0,0,1.23690e+07,2.34439e+07,63096,319.11,0.00,1.23,14.4088,1.23 +00_spi_top_MIN_ROUTE_CHAN_WIDTH,32,77,90,0,0,2.58198e+06,4.14984e+06,8514,17.30,0.00,0.25,15.1765,0.25,00_spi_top_MIN_ROUTE_CHAN_WIDTH,32,77,90,0,0,2.58198e+06,4.14984e+06,8514,17.30,0.00,0.25,15.1765,0.25,00_spi_top_MIN_ROUTE_CHAN_WIDTH,32,77,90,0,0,2.58198e+06,4.14984e+06,8514,17.30,0.00,0.25,15.1765,0.25,00_spi_top_MIN_ROUTE_CHAN_WIDTH,32,77,90,0,0,2.58198e+06,4.14984e+06,8514,17.30,0.00,0.25,15.1765,0.25,00_spi_top_MIN_ROUTE_CHAN_WIDTH,32,77,90,0,0,2.58198e+06,4.14984e+06,8514,17.30,0.00,0.25,15.1765,0.25,00_spi_top_MIN_ROUTE_CHAN_WIDTH,32,77,90,0,0,2.58198e+06,4.14984e+06,8514,17.30,0.00,0.25,15.1765,0.25,00_spi_top_MIN_ROUTE_CHAN_WIDTH,32,77,90,0,0,2.58198e+06,4.14984e+06,8514,17.30,0.00,0.25,15.1765,0.25,00_spi_top_MIN_ROUTE_CHAN_WIDTH,32,77,90,0,0,2.58198e+06,4.14984e+06,8514,17.30,0.00,0.25,15.1765,0.25,00_spi_top_MIN_ROUTE_CHAN_WIDTH,32,77,90,0,0,2.58198e+06,4.14984e+06,8514,17.30,0.00,0.25,15.1765,0.25,00_spi_top_MIN_ROUTE_CHAN_WIDTH,32,77,90,0,0,2.58198e+06,4.14984e+06,8514,17.30,0.00,0.25,15.1765,0.25,00_spi_top_MIN_ROUTE_CHAN_WIDTH,32,77,90,0,0,2.58198e+06,4.14984e+06,8514,17.30,0.00,0.25,15.1765,0.25,00_spi_top_MIN_ROUTE_CHAN_WIDTH,32,77,90,0,0,2.58198e+06,4.14984e+06,8514,17.30,0.00,0.25,15.1765,0.25,00_spi_top_MIN_ROUTE_CHAN_WIDTH,32,77,90,0,0,2.58198e+06,4.14984e+06,8514,17.30,0.00,0.25,15.1765,0.25,00_spi_top_MIN_ROUTE_CHAN_WIDTH,32,77,90,0,0,2.58198e+06,4.14984e+06,8514,17.30,0.00,0.25,15.1765,0.25,00_spi_top_MIN_ROUTE_CHAN_WIDTH,32,77,90,0,0,2.58198e+06,4.14984e+06,8514,17.30,0.00,0.25,15.1765,0.25,00_spi_top_MIN_ROUTE_CHAN_WIDTH,32,77,90,0,0,2.58198e+06,4.14984e+06,8514,17.30,0.00,0.25,15.1765,0.25,00_spi_top_MIN_ROUTE_CHAN_WIDTH,32,77,90,0,0,2.58198e+06,4.14984e+06,8514,17.30,0.00,0.25,15.1765,0.25,00_spi_top_MIN_ROUTE_CHAN_WIDTH,32,77,90,0,0,2.58198e+06,4.14984e+06,8514,17.30,0.00,0.25,15.1765,0.25,00_spi_top_MIN_ROUTE_CHAN_WIDTH,32,77,90,0,0,2.58198e+06,4.14984e+06,8514,17.30,0.00,0.25,15.1765,0.25,00_spi_top_MIN_ROUTE_CHAN_WIDTH,32,77,90,0,0,2.58198e+06,4.14984e+06,8514,17.30,0.00,0.25,15.1765,0.25 +00_aes_MIN_ROUTE_CHAN_WIDTH,64,159,389,0,0,4.62242e+06,8.56915e+06,22327,36.84,0.00,0.72,15.5480,0.72,00_aes_MIN_ROUTE_CHAN_WIDTH,64,159,389,0,0,4.62242e+06,8.56915e+06,22327,36.84,0.00,0.72,15.5480,0.72,00_aes_MIN_ROUTE_CHAN_WIDTH,64,159,389,0,0,4.62242e+06,8.56915e+06,22327,36.84,0.00,0.72,15.5480,0.72,00_aes_MIN_ROUTE_CHAN_WIDTH,64,159,389,0,0,4.62242e+06,8.56915e+06,22327,36.84,0.00,0.72,15.5480,0.72,00_aes_MIN_ROUTE_CHAN_WIDTH,64,159,389,0,0,4.62242e+06,8.56915e+06,22327,36.84,0.00,0.72,15.5480,0.72,00_aes_MIN_ROUTE_CHAN_WIDTH,64,159,389,0,0,4.62242e+06,8.56915e+06,22327,36.84,0.00,0.72,15.5480,0.72,00_aes_MIN_ROUTE_CHAN_WIDTH,64,159,389,0,0,4.62242e+06,8.56915e+06,22327,36.84,0.00,0.72,15.5480,0.72,00_aes_MIN_ROUTE_CHAN_WIDTH,64,159,389,0,0,4.62242e+06,8.56915e+06,22327,36.84,0.00,0.72,15.5480,0.72,00_aes_MIN_ROUTE_CHAN_WIDTH,64,159,389,0,0,4.62242e+06,8.56915e+06,22327,36.84,0.00,0.72,15.5480,0.72,00_aes_MIN_ROUTE_CHAN_WIDTH,64,159,389,0,0,4.62242e+06,8.56915e+06,22327,36.84,0.00,0.72,15.5480,0.72,00_aes_MIN_ROUTE_CHAN_WIDTH,64,159,389,0,0,4.62242e+06,8.56915e+06,22327,36.84,0.00,0.72,15.5480,0.72,00_aes_MIN_ROUTE_CHAN_WIDTH,64,159,389,0,0,4.62242e+06,8.56915e+06,22327,36.84,0.00,0.72,15.5480,0.72,00_aes_MIN_ROUTE_CHAN_WIDTH,64,159,389,0,0,4.62242e+06,8.56915e+06,22327,36.84,0.00,0.72,15.5480,0.72,00_aes_MIN_ROUTE_CHAN_WIDTH,64,159,389,0,0,4.62242e+06,8.56915e+06,22327,36.84,0.00,0.72,15.5480,0.72,00_aes_MIN_ROUTE_CHAN_WIDTH,64,159,389,0,0,4.62242e+06,8.56915e+06,22327,36.84,0.00,0.72,15.5480,0.72,00_aes_MIN_ROUTE_CHAN_WIDTH,64,159,389,0,0,4.62242e+06,8.56915e+06,22327,36.84,0.00,0.72,15.5480,0.72,00_aes_MIN_ROUTE_CHAN_WIDTH,64,159,389,0,0,4.62242e+06,8.56915e+06,22327,36.84,0.00,0.72,15.5480,0.72,00_aes_MIN_ROUTE_CHAN_WIDTH,64,159,389,0,0,4.62242e+06,8.56915e+06,22327,36.84,0.00,0.72,15.5480,0.72,00_aes_MIN_ROUTE_CHAN_WIDTH,64,159,389,0,0,4.62242e+06,8.56915e+06,22327,36.84,0.00,0.72,15.5480,0.72,00_aes_MIN_ROUTE_CHAN_WIDTH,64,159,389,0,0,4.62242e+06,8.56915e+06,22327,36.84,0.00,0.72,15.5480,0.72 +00_usbf_top_MIN_ROUTE_CHAN_WIDTH,167,308,235,0,0,8.86284e+06,1.65994e+07,45260,123.71,0.00,0.86,17.0471,0.86,00_usbf_top_MIN_ROUTE_CHAN_WIDTH,167,308,235,0,0,8.86284e+06,1.65994e+07,45260,123.71,0.00,0.86,17.0471,0.86,00_usbf_top_MIN_ROUTE_CHAN_WIDTH,167,308,235,0,0,8.86284e+06,1.65994e+07,45260,123.71,0.00,0.86,17.0471,0.86,00_usbf_top_MIN_ROUTE_CHAN_WIDTH,167,308,235,0,0,8.86284e+06,1.65994e+07,45260,123.71,0.00,0.86,17.0471,0.86,00_usbf_top_MIN_ROUTE_CHAN_WIDTH,167,308,235,0,0,8.86284e+06,1.65994e+07,45260,123.71,0.00,0.86,17.0471,0.86,00_usbf_top_MIN_ROUTE_CHAN_WIDTH,167,308,235,0,0,8.86284e+06,1.65994e+07,45260,123.71,0.00,0.86,17.0471,0.86,00_usbf_top_MIN_ROUTE_CHAN_WIDTH,167,308,235,0,0,8.86284e+06,1.65994e+07,45260,123.71,0.00,0.86,17.0471,0.86,00_usbf_top_MIN_ROUTE_CHAN_WIDTH,167,308,235,0,0,8.86284e+06,1.65994e+07,45260,123.71,0.00,0.86,17.0471,0.86,00_usbf_top_MIN_ROUTE_CHAN_WIDTH,167,308,235,0,0,8.86284e+06,1.65994e+07,45260,123.71,0.00,0.86,17.0471,0.86,00_usbf_top_MIN_ROUTE_CHAN_WIDTH,167,308,235,0,0,8.86284e+06,1.65994e+07,45260,123.71,0.00,0.86,17.0471,0.86,00_usbf_top_MIN_ROUTE_CHAN_WIDTH,167,308,235,0,0,8.86284e+06,1.65994e+07,45260,123.71,0.00,0.86,17.0471,0.86,00_usbf_top_MIN_ROUTE_CHAN_WIDTH,167,308,235,0,0,8.86284e+06,1.65994e+07,45260,123.71,0.00,0.86,17.0471,0.86,00_usbf_top_MIN_ROUTE_CHAN_WIDTH,167,308,235,0,0,8.86284e+06,1.65994e+07,45260,123.71,0.00,0.86,17.0471,0.86,00_usbf_top_MIN_ROUTE_CHAN_WIDTH,167,308,235,0,0,8.86284e+06,1.65994e+07,45260,123.71,0.00,0.86,17.0471,0.86,00_usbf_top_MIN_ROUTE_CHAN_WIDTH,167,308,235,0,0,8.86284e+06,1.65994e+07,45260,123.71,0.00,0.86,17.0471,0.86,00_usbf_top_MIN_ROUTE_CHAN_WIDTH,167,308,235,0,0,8.86284e+06,1.65994e+07,45260,123.71,0.00,0.86,17.0471,0.86,00_usbf_top_MIN_ROUTE_CHAN_WIDTH,167,308,235,0,0,8.86284e+06,1.65994e+07,45260,123.71,0.00,0.86,17.0471,0.86,00_usbf_top_MIN_ROUTE_CHAN_WIDTH,167,308,235,0,0,8.86284e+06,1.65994e+07,45260,123.71,0.00,0.86,17.0471,0.86,00_usbf_top_MIN_ROUTE_CHAN_WIDTH,167,308,235,0,0,8.86284e+06,1.65994e+07,45260,123.71,0.00,0.86,17.0471,0.86,00_usbf_top_MIN_ROUTE_CHAN_WIDTH,167,308,235,0,0,8.86284e+06,1.65994e+07,45260,123.71,0.00,0.86,17.0471,0.86 +00_wb_conmax_top_MIN_ROUTE_CHAN_WIDTH,399,834,2546,0,0,1.21212e+08,4.4948e+07,257039,81.13,0.02,7.08,41.6595,7.08,00_wb_conmax_top_MIN_ROUTE_CHAN_WIDTH,399,834,2546,0,0,1.21212e+08,4.4948e+07,257039,81.13,0.02,7.08,41.6595,7.08,00_wb_conmax_top_MIN_ROUTE_CHAN_WIDTH,399,834,2546,0,0,1.21212e+08,4.4948e+07,257039,81.13,0.02,7.08,41.6595,7.08,00_wb_conmax_top_MIN_ROUTE_CHAN_WIDTH,399,834,2546,0,0,1.21212e+08,4.4948e+07,257039,81.13,0.02,7.08,41.6595,7.08,00_wb_conmax_top_MIN_ROUTE_CHAN_WIDTH,399,834,2546,0,0,1.21212e+08,4.4948e+07,257039,81.13,0.02,7.08,41.6595,7.08,00_wb_conmax_top_MIN_ROUTE_CHAN_WIDTH,399,834,2546,0,0,1.21212e+08,4.4948e+07,257039,81.13,0.02,7.08,41.6595,7.08,00_wb_conmax_top_MIN_ROUTE_CHAN_WIDTH,399,834,2546,0,0,1.21212e+08,4.4948e+07,257039,81.13,0.02,7.08,41.6595,7.08,00_wb_conmax_top_MIN_ROUTE_CHAN_WIDTH,399,834,2546,0,0,1.21212e+08,4.4948e+07,257039,81.13,0.02,7.08,41.6595,7.08,00_wb_conmax_top_MIN_ROUTE_CHAN_WIDTH,399,834,2546,0,0,1.21212e+08,4.4948e+07,257039,81.13,0.02,7.08,41.6595,7.08,00_wb_conmax_top_MIN_ROUTE_CHAN_WIDTH,399,834,2546,0,0,1.21212e+08,4.4948e+07,257039,81.13,0.02,7.08,41.6595,7.08,00_wb_conmax_top_MIN_ROUTE_CHAN_WIDTH,399,834,2546,0,0,1.21212e+08,4.4948e+07,257039,81.13,0.02,7.08,41.6595,7.08,00_wb_conmax_top_MIN_ROUTE_CHAN_WIDTH,399,834,2546,0,0,1.21212e+08,4.4948e+07,257039,81.13,0.02,7.08,41.6595,7.08,00_wb_conmax_top_MIN_ROUTE_CHAN_WIDTH,399,834,2546,0,0,1.21212e+08,4.4948e+07,257039,81.13,0.02,7.08,41.6595,7.08,00_wb_conmax_top_MIN_ROUTE_CHAN_WIDTH,399,834,2546,0,0,1.21212e+08,4.4948e+07,257039,81.13,0.02,7.08,41.6595,7.08,00_wb_conmax_top_MIN_ROUTE_CHAN_WIDTH,399,834,2546,0,0,1.21212e+08,4.4948e+07,257039,81.13,0.02,7.08,41.6595,7.08,00_wb_conmax_top_MIN_ROUTE_CHAN_WIDTH,399,834,2546,0,0,1.21212e+08,4.4948e+07,257039,81.13,0.02,7.08,41.6595,7.08,00_wb_conmax_top_MIN_ROUTE_CHAN_WIDTH,399,834,2546,0,0,1.21212e+08,4.4948e+07,257039,81.13,0.02,7.08,41.6595,7.08,00_wb_conmax_top_MIN_ROUTE_CHAN_WIDTH,399,834,2546,0,0,1.21212e+08,4.4948e+07,257039,81.13,0.02,7.08,41.6595,7.08,00_wb_conmax_top_MIN_ROUTE_CHAN_WIDTH,399,834,2546,0,0,1.21212e+08,4.4948e+07,257039,81.13,0.02,7.08,41.6595,7.08,00_wb_conmax_top_MIN_ROUTE_CHAN_WIDTH,399,834,2546,0,0,1.21212e+08,4.4948e+07,257039,81.13,0.02,7.08,41.6595,7.08 +00_des_MIN_ROUTE_CHAN_WIDTH,32,52,190,0,0,1.79835e+06,2.80249e+06,5936,20.26,0.00,0.24,16.2630,0.24,00_des_MIN_ROUTE_CHAN_WIDTH,32,52,190,0,0,1.79835e+06,2.80249e+06,5936,20.26,0.00,0.24,16.2630,0.24,00_des_MIN_ROUTE_CHAN_WIDTH,32,52,190,0,0,1.79835e+06,2.80249e+06,5936,20.26,0.00,0.24,16.2630,0.24,00_des_MIN_ROUTE_CHAN_WIDTH,32,52,190,0,0,1.79835e+06,2.80249e+06,5936,20.26,0.00,0.24,16.2630,0.24,00_des_MIN_ROUTE_CHAN_WIDTH,32,52,190,0,0,1.79835e+06,2.80249e+06,5936,20.26,0.00,0.24,16.2630,0.24,00_des_MIN_ROUTE_CHAN_WIDTH,32,52,190,0,0,1.79835e+06,2.80249e+06,5936,20.26,0.00,0.24,16.2630,0.24,00_des_MIN_ROUTE_CHAN_WIDTH,32,52,190,0,0,1.79835e+06,2.80249e+06,5936,20.26,0.00,0.24,16.2630,0.24,00_des_MIN_ROUTE_CHAN_WIDTH,32,52,190,0,0,1.79835e+06,2.80249e+06,5936,20.26,0.00,0.24,16.2630,0.24,00_des_MIN_ROUTE_CHAN_WIDTH,32,52,190,0,0,1.79835e+06,2.80249e+06,5936,20.26,0.00,0.24,16.2630,0.24,00_des_MIN_ROUTE_CHAN_WIDTH,32,52,190,0,0,1.79835e+06,2.80249e+06,5936,20.26,0.00,0.24,16.2630,0.24,00_des_MIN_ROUTE_CHAN_WIDTH,32,52,190,0,0,1.79835e+06,2.80249e+06,5936,20.26,0.00,0.24,16.2630,0.24,00_des_MIN_ROUTE_CHAN_WIDTH,32,52,190,0,0,1.79835e+06,2.80249e+06,5936,20.26,0.00,0.24,16.2630,0.24,00_des_MIN_ROUTE_CHAN_WIDTH,32,52,190,0,0,1.79835e+06,2.80249e+06,5936,20.26,0.00,0.24,16.2630,0.24,00_des_MIN_ROUTE_CHAN_WIDTH,32,52,190,0,0,1.79835e+06,2.80249e+06,5936,20.26,0.00,0.24,16.2630,0.24,00_des_MIN_ROUTE_CHAN_WIDTH,32,52,190,0,0,1.79835e+06,2.80249e+06,5936,20.26,0.00,0.24,16.2630,0.24,00_des_MIN_ROUTE_CHAN_WIDTH,32,52,190,0,0,1.79835e+06,2.80249e+06,5936,20.26,0.00,0.24,16.2630,0.24,00_des_MIN_ROUTE_CHAN_WIDTH,32,52,190,0,0,1.79835e+06,2.80249e+06,5936,20.26,0.00,0.24,16.2630,0.24,00_des_MIN_ROUTE_CHAN_WIDTH,32,52,190,0,0,1.79835e+06,2.80249e+06,5936,20.26,0.00,0.24,16.2630,0.24,00_des_MIN_ROUTE_CHAN_WIDTH,32,52,190,0,0,1.79835e+06,2.80249e+06,5936,20.26,0.00,0.24,16.2630,0.24,00_des_MIN_ROUTE_CHAN_WIDTH,32,52,190,0,0,1.79835e+06,2.80249e+06,5936,20.26,0.00,0.24,16.2630,0.24 +00_des_MIN_ROUTE_CHAN_WIDTH,78,201,186,0,0,5.94202e+06,1.08327e+07,28710,41.72,0.00,0.51,11.5209,0.51,00_des_MIN_ROUTE_CHAN_WIDTH,78,201,186,0,0,5.94202e+06,1.08327e+07,28710,41.72,0.00,0.51,11.5209,0.51,00_des_MIN_ROUTE_CHAN_WIDTH,78,201,186,0,0,5.94202e+06,1.08327e+07,28710,41.72,0.00,0.51,11.5209,0.51,00_des_MIN_ROUTE_CHAN_WIDTH,78,201,186,0,0,5.94202e+06,1.08327e+07,28710,41.72,0.00,0.51,11.5209,0.51,00_des_MIN_ROUTE_CHAN_WIDTH,78,201,186,0,0,5.94202e+06,1.08327e+07,28710,41.72,0.00,0.51,11.5209,0.51,00_des_MIN_ROUTE_CHAN_WIDTH,78,201,186,0,0,5.94202e+06,1.08327e+07,28710,41.72,0.00,0.51,11.5209,0.51,00_des_MIN_ROUTE_CHAN_WIDTH,78,201,186,0,0,5.94202e+06,1.08327e+07,28710,41.72,0.00,0.51,11.5209,0.51,00_des_MIN_ROUTE_CHAN_WIDTH,78,201,186,0,0,5.94202e+06,1.08327e+07,28710,41.72,0.00,0.51,11.5209,0.51,00_des_MIN_ROUTE_CHAN_WIDTH,78,201,186,0,0,5.94202e+06,1.08327e+07,28710,41.72,0.00,0.51,11.5209,0.51,00_des_MIN_ROUTE_CHAN_WIDTH,78,201,186,0,0,5.94202e+06,1.08327e+07,28710,41.72,0.00,0.51,11.5209,0.51,00_des_MIN_ROUTE_CHAN_WIDTH,78,201,186,0,0,5.94202e+06,1.08327e+07,28710,41.72,0.00,0.51,11.5209,0.51,00_des_MIN_ROUTE_CHAN_WIDTH,78,201,186,0,0,5.94202e+06,1.08327e+07,28710,41.72,0.00,0.51,11.5209,0.51,00_des_MIN_ROUTE_CHAN_WIDTH,78,201,186,0,0,5.94202e+06,1.08327e+07,28710,41.72,0.00,0.51,11.5209,0.51,00_des_MIN_ROUTE_CHAN_WIDTH,78,201,186,0,0,5.94202e+06,1.08327e+07,28710,41.72,0.00,0.51,11.5209,0.51,00_des_MIN_ROUTE_CHAN_WIDTH,78,201,186,0,0,5.94202e+06,1.08327e+07,28710,41.72,0.00,0.51,11.5209,0.51,00_des_MIN_ROUTE_CHAN_WIDTH,78,201,186,0,0,5.94202e+06,1.08327e+07,28710,41.72,0.00,0.51,11.5209,0.51,00_des_MIN_ROUTE_CHAN_WIDTH,78,201,186,0,0,5.94202e+06,1.08327e+07,28710,41.72,0.00,0.51,11.5209,0.51,00_des_MIN_ROUTE_CHAN_WIDTH,78,201,186,0,0,5.94202e+06,1.08327e+07,28710,41.72,0.00,0.51,11.5209,0.51,00_des_MIN_ROUTE_CHAN_WIDTH,78,201,186,0,0,5.94202e+06,1.08327e+07,28710,41.72,0.00,0.51,11.5209,0.51,00_des_MIN_ROUTE_CHAN_WIDTH,78,201,186,0,0,5.94202e+06,1.08327e+07,28710,41.72,0.00,0.51,11.5209,0.51 +00_i2c_master_top_MIN_ROUTE_CHAN_WIDTH,13,26,33,0,0,1.11081e+06,1.40124e+06,2100,7.46,0.00,0.08,8.93617,0.08,00_i2c_master_top_MIN_ROUTE_CHAN_WIDTH,13,26,33,0,0,1.11081e+06,1.40124e+06,2100,7.46,0.00,0.08,8.93617,0.08,00_i2c_master_top_MIN_ROUTE_CHAN_WIDTH,13,26,33,0,0,1.11081e+06,1.40124e+06,2100,7.46,0.00,0.08,8.93617,0.08,00_i2c_master_top_MIN_ROUTE_CHAN_WIDTH,13,26,33,0,0,1.11081e+06,1.40124e+06,2100,7.46,0.00,0.08,8.93617,0.08,00_i2c_master_top_MIN_ROUTE_CHAN_WIDTH,13,26,33,0,0,1.11081e+06,1.40124e+06,2100,7.46,0.00,0.08,8.93617,0.08,00_i2c_master_top_MIN_ROUTE_CHAN_WIDTH,13,26,33,0,0,1.11081e+06,1.40124e+06,2100,7.46,0.00,0.08,8.93617,0.08,00_i2c_master_top_MIN_ROUTE_CHAN_WIDTH,13,26,33,0,0,1.11081e+06,1.40124e+06,2100,7.46,0.00,0.08,8.93617,0.08,00_i2c_master_top_MIN_ROUTE_CHAN_WIDTH,13,26,33,0,0,1.11081e+06,1.40124e+06,2100,7.46,0.00,0.08,8.93617,0.08,00_i2c_master_top_MIN_ROUTE_CHAN_WIDTH,13,26,33,0,0,1.11081e+06,1.40124e+06,2100,7.46,0.00,0.08,8.93617,0.08,00_i2c_master_top_MIN_ROUTE_CHAN_WIDTH,13,26,33,0,0,1.11081e+06,1.40124e+06,2100,7.46,0.00,0.08,8.93617,0.08,00_i2c_master_top_MIN_ROUTE_CHAN_WIDTH,13,26,33,0,0,1.11081e+06,1.40124e+06,2100,7.46,0.00,0.08,8.93617,0.08,00_i2c_master_top_MIN_ROUTE_CHAN_WIDTH,13,26,33,0,0,1.11081e+06,1.40124e+06,2100,7.46,0.00,0.08,8.93617,0.08,00_i2c_master_top_MIN_ROUTE_CHAN_WIDTH,13,26,33,0,0,1.11081e+06,1.40124e+06,2100,7.46,0.00,0.08,8.93617,0.08,00_i2c_master_top_MIN_ROUTE_CHAN_WIDTH,13,26,33,0,0,1.11081e+06,1.40124e+06,2100,7.46,0.00,0.08,8.93617,0.08,00_i2c_master_top_MIN_ROUTE_CHAN_WIDTH,13,26,33,0,0,1.11081e+06,1.40124e+06,2100,7.46,0.00,0.08,8.93617,0.08,00_i2c_master_top_MIN_ROUTE_CHAN_WIDTH,13,26,33,0,0,1.11081e+06,1.40124e+06,2100,7.46,0.00,0.08,8.93617,0.08,00_i2c_master_top_MIN_ROUTE_CHAN_WIDTH,13,26,33,0,0,1.11081e+06,1.40124e+06,2100,7.46,0.00,0.08,8.93617,0.08,00_i2c_master_top_MIN_ROUTE_CHAN_WIDTH,13,26,33,0,0,1.11081e+06,1.40124e+06,2100,7.46,0.00,0.08,8.93617,0.08,00_i2c_master_top_MIN_ROUTE_CHAN_WIDTH,13,26,33,0,0,1.11081e+06,1.40124e+06,2100,7.46,0.00,0.08,8.93617,0.08,00_i2c_master_top_MIN_ROUTE_CHAN_WIDTH,13,26,33,0,0,1.11081e+06,1.40124e+06,2100,7.46,0.00,0.08,8.93617,0.08 +00_sasc_top_MIN_ROUTE_CHAN_WIDTH,8,17,28,0,0,620306,916198,752,4.82,0.00,0.03,5.87500,0.03,00_sasc_top_MIN_ROUTE_CHAN_WIDTH,8,17,28,0,0,620306,916198,752,4.82,0.00,0.03,5.87500,0.03,00_sasc_top_MIN_ROUTE_CHAN_WIDTH,8,17,28,0,0,620306,916198,752,4.82,0.00,0.03,5.87500,0.03,00_sasc_top_MIN_ROUTE_CHAN_WIDTH,8,17,28,0,0,620306,916198,752,4.82,0.00,0.03,5.87500,0.03,00_sasc_top_MIN_ROUTE_CHAN_WIDTH,8,17,28,0,0,620306,916198,752,4.82,0.00,0.03,5.87500,0.03,00_sasc_top_MIN_ROUTE_CHAN_WIDTH,8,17,28,0,0,620306,916198,752,4.82,0.00,0.03,5.87500,0.03,00_sasc_top_MIN_ROUTE_CHAN_WIDTH,8,17,28,0,0,620306,916198,752,4.82,0.00,0.03,5.87500,0.03,00_sasc_top_MIN_ROUTE_CHAN_WIDTH,8,17,28,0,0,620306,916198,752,4.82,0.00,0.03,5.87500,0.03,00_sasc_top_MIN_ROUTE_CHAN_WIDTH,8,17,28,0,0,620306,916198,752,4.82,0.00,0.03,5.87500,0.03,00_sasc_top_MIN_ROUTE_CHAN_WIDTH,8,17,28,0,0,620306,916198,752,4.82,0.00,0.03,5.87500,0.03,00_sasc_top_MIN_ROUTE_CHAN_WIDTH,8,17,28,0,0,620306,916198,752,4.82,0.00,0.03,5.87500,0.03,00_sasc_top_MIN_ROUTE_CHAN_WIDTH,8,17,28,0,0,620306,916198,752,4.82,0.00,0.03,5.87500,0.03,00_sasc_top_MIN_ROUTE_CHAN_WIDTH,8,17,28,0,0,620306,916198,752,4.82,0.00,0.03,5.87500,0.03,00_sasc_top_MIN_ROUTE_CHAN_WIDTH,8,17,28,0,0,620306,916198,752,4.82,0.00,0.03,5.87500,0.03,00_sasc_top_MIN_ROUTE_CHAN_WIDTH,8,17,28,0,0,620306,916198,752,4.82,0.00,0.03,5.87500,0.03,00_sasc_top_MIN_ROUTE_CHAN_WIDTH,8,17,28,0,0,620306,916198,752,4.82,0.00,0.03,5.87500,0.03,00_sasc_top_MIN_ROUTE_CHAN_WIDTH,8,17,28,0,0,620306,916198,752,4.82,0.00,0.03,5.87500,0.03,00_sasc_top_MIN_ROUTE_CHAN_WIDTH,8,17,28,0,0,620306,916198,752,4.82,0.00,0.03,5.87500,0.03,00_sasc_top_MIN_ROUTE_CHAN_WIDTH,8,17,28,0,0,620306,916198,752,4.82,0.00,0.03,5.87500,0.03,00_sasc_top_MIN_ROUTE_CHAN_WIDTH,8,17,28,0,0,620306,916198,752,4.82,0.00,0.03,5.87500,0.03 +00_pcm_slv_top_MIN_ROUTE_CHAN_WIDTH,5,9,28,0,0,417802,485046,295,2.44,0.00,0.02,4.04110,0.02,00_pcm_slv_top_MIN_ROUTE_CHAN_WIDTH,5,9,28,0,0,417802,485046,295,2.44,0.00,0.02,4.04110,0.02,00_pcm_slv_top_MIN_ROUTE_CHAN_WIDTH,5,9,28,0,0,417802,485046,295,2.44,0.00,0.02,4.04110,0.02,00_pcm_slv_top_MIN_ROUTE_CHAN_WIDTH,5,9,28,0,0,417802,485046,295,2.44,0.00,0.02,4.04110,0.02,00_pcm_slv_top_MIN_ROUTE_CHAN_WIDTH,5,9,28,0,0,417802,485046,295,2.44,0.00,0.02,4.04110,0.02,00_pcm_slv_top_MIN_ROUTE_CHAN_WIDTH,5,9,28,0,0,417802,485046,295,2.44,0.00,0.02,4.04110,0.02,00_pcm_slv_top_MIN_ROUTE_CHAN_WIDTH,5,9,28,0,0,417802,485046,295,2.44,0.00,0.02,4.04110,0.02,00_pcm_slv_top_MIN_ROUTE_CHAN_WIDTH,5,9,28,0,0,417802,485046,295,2.44,0.00,0.02,4.04110,0.02,00_pcm_slv_top_MIN_ROUTE_CHAN_WIDTH,5,9,28,0,0,417802,485046,295,2.44,0.00,0.02,4.04110,0.02,00_pcm_slv_top_MIN_ROUTE_CHAN_WIDTH,5,9,28,0,0,417802,485046,295,2.44,0.00,0.02,4.04110,0.02,00_pcm_slv_top_MIN_ROUTE_CHAN_WIDTH,5,9,28,0,0,417802,485046,295,2.44,0.00,0.02,4.04110,0.02,00_pcm_slv_top_MIN_ROUTE_CHAN_WIDTH,5,9,28,0,0,417802,485046,295,2.44,0.00,0.02,4.04110,0.02,00_pcm_slv_top_MIN_ROUTE_CHAN_WIDTH,5,9,28,0,0,417802,485046,295,2.44,0.00,0.02,4.04110,0.02,00_pcm_slv_top_MIN_ROUTE_CHAN_WIDTH,5,9,28,0,0,417802,485046,295,2.44,0.00,0.02,4.04110,0.02,00_pcm_slv_top_MIN_ROUTE_CHAN_WIDTH,5,9,28,0,0,417802,485046,295,2.44,0.00,0.02,4.04110,0.02,00_pcm_slv_top_MIN_ROUTE_CHAN_WIDTH,5,9,28,0,0,417802,485046,295,2.44,0.00,0.02,4.04110,0.02,00_pcm_slv_top_MIN_ROUTE_CHAN_WIDTH,5,9,28,0,0,417802,485046,295,2.44,0.00,0.02,4.04110,0.02,00_pcm_slv_top_MIN_ROUTE_CHAN_WIDTH,5,9,28,0,0,417802,485046,295,2.44,0.00,0.02,4.04110,0.02,00_pcm_slv_top_MIN_ROUTE_CHAN_WIDTH,5,9,28,0,0,417802,485046,295,2.44,0.00,0.02,4.04110,0.02,00_pcm_slv_top_MIN_ROUTE_CHAN_WIDTH,5,9,28,0,0,417802,485046,295,2.44,0.00,0.02,4.04110,0.02 +00_des_MIN_ROUTE_CHAN_WIDTH,44,42,189,0,0,1.43501e+06,2.26355e+06,5746,36.12,0.00,0.16,9.06309,0.16,00_des_MIN_ROUTE_CHAN_WIDTH,44,42,189,0,0,1.43501e+06,2.26355e+06,5746,36.12,0.00,0.16,9.06309,0.16,00_des_MIN_ROUTE_CHAN_WIDTH,44,42,189,0,0,1.43501e+06,2.26355e+06,5746,36.12,0.00,0.16,9.06309,0.16,00_des_MIN_ROUTE_CHAN_WIDTH,44,42,189,0,0,1.43501e+06,2.26355e+06,5746,36.12,0.00,0.16,9.06309,0.16,00_des_MIN_ROUTE_CHAN_WIDTH,44,42,189,0,0,1.43501e+06,2.26355e+06,5746,36.12,0.00,0.16,9.06309,0.16,00_des_MIN_ROUTE_CHAN_WIDTH,44,42,189,0,0,1.43501e+06,2.26355e+06,5746,36.12,0.00,0.16,9.06309,0.16,00_des_MIN_ROUTE_CHAN_WIDTH,44,42,189,0,0,1.43501e+06,2.26355e+06,5746,36.12,0.00,0.16,9.06309,0.16,00_des_MIN_ROUTE_CHAN_WIDTH,44,42,189,0,0,1.43501e+06,2.26355e+06,5746,36.12,0.00,0.16,9.06309,0.16,00_des_MIN_ROUTE_CHAN_WIDTH,44,42,189,0,0,1.43501e+06,2.26355e+06,5746,36.12,0.00,0.16,9.06309,0.16,00_des_MIN_ROUTE_CHAN_WIDTH,44,42,189,0,0,1.43501e+06,2.26355e+06,5746,36.12,0.00,0.16,9.06309,0.16,00_des_MIN_ROUTE_CHAN_WIDTH,44,42,189,0,0,1.43501e+06,2.26355e+06,5746,36.12,0.00,0.16,9.06309,0.16,00_des_MIN_ROUTE_CHAN_WIDTH,44,42,189,0,0,1.43501e+06,2.26355e+06,5746,36.12,0.00,0.16,9.06309,0.16,00_des_MIN_ROUTE_CHAN_WIDTH,44,42,189,0,0,1.43501e+06,2.26355e+06,5746,36.12,0.00,0.16,9.06309,0.16,00_des_MIN_ROUTE_CHAN_WIDTH,44,42,189,0,0,1.43501e+06,2.26355e+06,5746,36.12,0.00,0.16,9.06309,0.16,00_des_MIN_ROUTE_CHAN_WIDTH,44,42,189,0,0,1.43501e+06,2.26355e+06,5746,36.12,0.00,0.16,9.06309,0.16,00_des_MIN_ROUTE_CHAN_WIDTH,44,42,189,0,0,1.43501e+06,2.26355e+06,5746,36.12,0.00,0.16,9.06309,0.16,00_des_MIN_ROUTE_CHAN_WIDTH,44,42,189,0,0,1.43501e+06,2.26355e+06,5746,36.12,0.00,0.16,9.06309,0.16,00_des_MIN_ROUTE_CHAN_WIDTH,44,42,189,0,0,1.43501e+06,2.26355e+06,5746,36.12,0.00,0.16,9.06309,0.16,00_des_MIN_ROUTE_CHAN_WIDTH,44,42,189,0,0,1.43501e+06,2.26355e+06,5746,36.12,0.00,0.16,9.06309,0.16,00_des_MIN_ROUTE_CHAN_WIDTH,44,42,189,0,0,1.43501e+06,2.26355e+06,5746,36.12,0.00,0.16,9.06309,0.16 +00_usb_phy_MIN_ROUTE_CHAN_WIDTH,6,11,33,0,0,417802,592834,449,3.08,0.00,0.03,5.10227,0.03,00_usb_phy_MIN_ROUTE_CHAN_WIDTH,6,11,33,0,0,417802,592834,449,3.08,0.00,0.03,5.10227,0.03,00_usb_phy_MIN_ROUTE_CHAN_WIDTH,6,11,33,0,0,417802,592834,449,3.08,0.00,0.03,5.10227,0.03,00_usb_phy_MIN_ROUTE_CHAN_WIDTH,6,11,33,0,0,417802,592834,449,3.08,0.00,0.03,5.10227,0.03,00_usb_phy_MIN_ROUTE_CHAN_WIDTH,6,11,33,0,0,417802,592834,449,3.08,0.00,0.03,5.10227,0.03,00_usb_phy_MIN_ROUTE_CHAN_WIDTH,6,11,33,0,0,417802,592834,449,3.08,0.00,0.03,5.10227,0.03,00_usb_phy_MIN_ROUTE_CHAN_WIDTH,6,11,33,0,0,417802,592834,449,3.08,0.00,0.03,5.10227,0.03,00_usb_phy_MIN_ROUTE_CHAN_WIDTH,6,11,33,0,0,417802,592834,449,3.08,0.00,0.03,5.10227,0.03,00_usb_phy_MIN_ROUTE_CHAN_WIDTH,6,11,33,0,0,417802,592834,449,3.08,0.00,0.03,5.10227,0.03,00_usb_phy_MIN_ROUTE_CHAN_WIDTH,6,11,33,0,0,417802,592834,449,3.08,0.00,0.03,5.10227,0.03,00_usb_phy_MIN_ROUTE_CHAN_WIDTH,6,11,33,0,0,417802,592834,449,3.08,0.00,0.03,5.10227,0.03,00_usb_phy_MIN_ROUTE_CHAN_WIDTH,6,11,33,0,0,417802,592834,449,3.08,0.00,0.03,5.10227,0.03,00_usb_phy_MIN_ROUTE_CHAN_WIDTH,6,11,33,0,0,417802,592834,449,3.08,0.00,0.03,5.10227,0.03,00_usb_phy_MIN_ROUTE_CHAN_WIDTH,6,11,33,0,0,417802,592834,449,3.08,0.00,0.03,5.10227,0.03,00_usb_phy_MIN_ROUTE_CHAN_WIDTH,6,11,33,0,0,417802,592834,449,3.08,0.00,0.03,5.10227,0.03,00_usb_phy_MIN_ROUTE_CHAN_WIDTH,6,11,33,0,0,417802,592834,449,3.08,0.00,0.03,5.10227,0.03,00_usb_phy_MIN_ROUTE_CHAN_WIDTH,6,11,33,0,0,417802,592834,449,3.08,0.00,0.03,5.10227,0.03,00_usb_phy_MIN_ROUTE_CHAN_WIDTH,6,11,33,0,0,417802,592834,449,3.08,0.00,0.03,5.10227,0.03,00_usb_phy_MIN_ROUTE_CHAN_WIDTH,6,11,33,0,0,417802,592834,449,3.08,0.00,0.03,5.10227,0.03,00_usb_phy_MIN_ROUTE_CHAN_WIDTH,6,11,33,0,0,417802,592834,449,3.08,0.00,0.03,5.10227,0.03 +00_wb_dma_top_MIN_ROUTE_CHAN_WIDTH,83,87,431,0,0,3.94926e+06,4.68878e+06,13673,39.48,0.00,0.32,13.2619,0.32,00_wb_dma_top_MIN_ROUTE_CHAN_WIDTH,83,87,431,0,0,3.94926e+06,4.68878e+06,13673,39.48,0.00,0.32,13.2619,0.32,00_wb_dma_top_MIN_ROUTE_CHAN_WIDTH,83,87,431,0,0,3.94926e+06,4.68878e+06,13673,39.48,0.00,0.32,13.2619,0.32,00_wb_dma_top_MIN_ROUTE_CHAN_WIDTH,83,87,431,0,0,3.94926e+06,4.68878e+06,13673,39.48,0.00,0.32,13.2619,0.32,00_wb_dma_top_MIN_ROUTE_CHAN_WIDTH,83,87,431,0,0,3.94926e+06,4.68878e+06,13673,39.48,0.00,0.32,13.2619,0.32,00_wb_dma_top_MIN_ROUTE_CHAN_WIDTH,83,87,431,0,0,3.94926e+06,4.68878e+06,13673,39.48,0.00,0.32,13.2619,0.32,00_wb_dma_top_MIN_ROUTE_CHAN_WIDTH,83,87,431,0,0,3.94926e+06,4.68878e+06,13673,39.48,0.00,0.32,13.2619,0.32,00_wb_dma_top_MIN_ROUTE_CHAN_WIDTH,83,87,431,0,0,3.94926e+06,4.68878e+06,13673,39.48,0.00,0.32,13.2619,0.32,00_wb_dma_top_MIN_ROUTE_CHAN_WIDTH,83,87,431,0,0,3.94926e+06,4.68878e+06,13673,39.48,0.00,0.32,13.2619,0.32,00_wb_dma_top_MIN_ROUTE_CHAN_WIDTH,83,87,431,0,0,3.94926e+06,4.68878e+06,13673,39.48,0.00,0.32,13.2619,0.32,00_wb_dma_top_MIN_ROUTE_CHAN_WIDTH,83,87,431,0,0,3.94926e+06,4.68878e+06,13673,39.48,0.00,0.32,13.2619,0.32,00_wb_dma_top_MIN_ROUTE_CHAN_WIDTH,83,87,431,0,0,3.94926e+06,4.68878e+06,13673,39.48,0.00,0.32,13.2619,0.32,00_wb_dma_top_MIN_ROUTE_CHAN_WIDTH,83,87,431,0,0,3.94926e+06,4.68878e+06,13673,39.48,0.00,0.32,13.2619,0.32,00_wb_dma_top_MIN_ROUTE_CHAN_WIDTH,83,87,431,0,0,3.94926e+06,4.68878e+06,13673,39.48,0.00,0.32,13.2619,0.32,00_wb_dma_top_MIN_ROUTE_CHAN_WIDTH,83,87,431,0,0,3.94926e+06,4.68878e+06,13673,39.48,0.00,0.32,13.2619,0.32,00_wb_dma_top_MIN_ROUTE_CHAN_WIDTH,83,87,431,0,0,3.94926e+06,4.68878e+06,13673,39.48,0.00,0.32,13.2619,0.32,00_wb_dma_top_MIN_ROUTE_CHAN_WIDTH,83,87,431,0,0,3.94926e+06,4.68878e+06,13673,39.48,0.00,0.32,13.2619,0.32,00_wb_dma_top_MIN_ROUTE_CHAN_WIDTH,83,87,431,0,0,3.94926e+06,4.68878e+06,13673,39.48,0.00,0.32,13.2619,0.32,00_wb_dma_top_MIN_ROUTE_CHAN_WIDTH,83,87,431,0,0,3.94926e+06,4.68878e+06,13673,39.48,0.00,0.32,13.2619,0.32,00_wb_dma_top_MIN_ROUTE_CHAN_WIDTH,83,87,431,0,0,3.94926e+06,4.68878e+06,13673,39.48,0.00,0.32,13.2619,0.32 diff --git a/openfpga_flow/tasks/benchmark_sweep/iwls2005/config/task.conf b/openfpga_flow/tasks/benchmark_sweep/iwls2005/config/task.conf index c7f1ae148..7cd78a850 100644 --- a/openfpga_flow/tasks/benchmark_sweep/iwls2005/config/task.conf +++ b/openfpga_flow/tasks/benchmark_sweep/iwls2005/config/task.conf @@ -39,20 +39,18 @@ bench3=${PATH:OPENFPGA_PATH}/openfpga_flow/benchmarks/iwls2005/simple_spi/rtl/*. bench5=${PATH:OPENFPGA_PATH}/openfpga_flow/benchmarks/iwls2005/tv80/rtl/*.v bench6=${PATH:OPENFPGA_PATH}/openfpga_flow/benchmarks/iwls2005/vga_lcd/rtl/*.v # AES core has two top modules that can be tested: encryption and decryption -# Synthesis is too long; skip it bench7=${PATH:OPENFPGA_PATH}/openfpga_flow/benchmarks/iwls2005/aes_core/rtl/*.v bench8=${PATH:OPENFPGA_PATH}/openfpga_flow/benchmarks/iwls2005/aes_core/rtl/*.v -bench9=${PATH:OPENFPGA_PATH}/openfpga_flow/benchmarks/iwls2005/fpu/rtl/*.v +# FIXME: Yosys 0.22 has issues: ABC got stuck due to a lot of combinational loops. Bring this back when there is a new version +#bench9=${PATH:OPENFPGA_PATH}/openfpga_flow/benchmarks/iwls2005/fpu/rtl/*.v bench10=${PATH:OPENFPGA_PATH}/openfpga_flow/benchmarks/iwls2005/pci/rtl/*.v bench11=${PATH:OPENFPGA_PATH}/openfpga_flow/benchmarks/iwls2005/spi/rtl/*.v bench12=${PATH:OPENFPGA_PATH}/openfpga_flow/benchmarks/iwls2005/systemcaes/rtl/*.v bench13=${PATH:OPENFPGA_PATH}/openfpga_flow/benchmarks/iwls2005/usb_funct/rtl/*.v bench14=${PATH:OPENFPGA_PATH}/openfpga_flow/benchmarks/iwls2005/wb_conmax/rtl/*.v ## DES has two versions: area-optimized and performance optimized -# The DES has same top-level module name as systemcdes -# Currently openfpga flow has a bug which does not allow same top-level module name -#bench15=${PATH:OPENFPGA_PATH}/openfpga_flow/benchmarks/iwls2005/des/area_opt/rtl/*.v -#bench16=${PATH:OPENFPGA_PATH}/openfpga_flow/benchmarks/iwls2005/des/perf_opt/rtl/*.v +bench15=${PATH:OPENFPGA_PATH}/openfpga_flow/benchmarks/iwls2005/des/area_opt/rtl/*.v +bench16=${PATH:OPENFPGA_PATH}/openfpga_flow/benchmarks/iwls2005/des/perf_opt/rtl/*.v bench17=${PATH:OPENFPGA_PATH}/openfpga_flow/benchmarks/iwls2005/i2c/rtl/*.v bench18=${PATH:OPENFPGA_PATH}/openfpga_flow/benchmarks/iwls2005/sasc/rtl/*.v bench19=${PATH:OPENFPGA_PATH}/openfpga_flow/benchmarks/iwls2005/ss_pcm/rtl/*.v @@ -85,13 +83,11 @@ bench11_top = spi_top bench12_top = aes bench13_top = usbf_top bench14_top = wb_conmax_top -# Not sure either des or des3 is the top module. Need further investigation bench15_top = des -bench16_top = des3 +bench16_top = des bench17_top = i2c_master_top bench18_top = sasc_top bench19_top = pcm_slv_top -# May conflict with the top module name with other 'des' benchmark; This is a bug of openfpga flow scripts bench20_top = des bench21_top = usb_phy bench22_top = wb_dma_top diff --git a/openfpga_flow/vpr_arch/k4_frac_N4_tileable_fracff_rstOnLut_registerable_io_40nm.xml b/openfpga_flow/vpr_arch/k4_frac_N4_tileable_fracff_rstOnLut_registerable_io_40nm.xml new file mode 100644 index 000000000..049874bba --- /dev/null +++ b/openfpga_flow/vpr_arch/k4_frac_N4_tileable_fracff_rstOnLut_registerable_io_40nm.xml @@ -0,0 +1,738 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + io.outpad io.inpad io.clk io.reset + io.outpad io.inpad io.clk io.reset + io.outpad io.inpad io.clk io.reset + io.outpad io.inpad io.clk io.reset + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1 1 1 1 1 + 1 1 1 1 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 235e-12 + 235e-12 + 235e-12 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 261e-12 + 261e-12 + 261e-12 + 261e-12 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/yosys b/yosys index dca8fb54a..f109fa3d4 160000 --- a/yosys +++ b/yosys @@ -1 +1 @@ -Subproject commit dca8fb54aa625f1600e2ccb16f9763c6abfa798f +Subproject commit f109fa3d4c56fe33bc626c298e04d45ae510dd0e diff --git a/yosys-plugins b/yosys-plugins index 27208ce08..e4d820f63 160000 --- a/yosys-plugins +++ b/yosys-plugins @@ -1 +1 @@ -Subproject commit 27208ce08200a5e89e3bd4f466bc68824df38c32 +Subproject commit e4d820f63c01fff5dcff5508a1ff8fe83df1cac1