From 17c254a3706323626008da0433f42679052edb38 Mon Sep 17 00:00:00 2001 From: tangxifan Date: Tue, 5 May 2020 15:36:07 -0600 Subject: [PATCH] add missing file to follow up the previous commit --- openfpga/src/fpga_sdc/sdc_hierarchy_writer.h | 30 ++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 openfpga/src/fpga_sdc/sdc_hierarchy_writer.h diff --git a/openfpga/src/fpga_sdc/sdc_hierarchy_writer.h b/openfpga/src/fpga_sdc/sdc_hierarchy_writer.h new file mode 100644 index 000000000..3e7cae5a7 --- /dev/null +++ b/openfpga/src/fpga_sdc/sdc_hierarchy_writer.h @@ -0,0 +1,30 @@ +#ifndef SDC_HIERARCHY_WRITER_H +#define SDC_HIERARCHY_WRITER_H + +/******************************************************************** + * Include header files that are required by function declaration + *******************************************************************/ +#include "vpr_context.h" +#include "openfpga_context.h" + +/******************************************************************** + * Function declaration + *******************************************************************/ + +/* begin namespace openfpga */ +namespace openfpga { + +void print_pnr_sdc_routing_sb_hierarchy(const std::string& sdc_dir, + const ModuleManager& module_manager, + const ModuleId& top_module, + const DeviceRRGSB& device_rr_gsb); + +void print_pnr_sdc_routing_cb_hierarchy(const std::string& sdc_dir, + const ModuleManager& module_manager, + const ModuleId& top_module, + const t_rr_type& cb_type, + const DeviceRRGSB& device_rr_gsb); + +} /* end namespace openfpga */ + +#endif