31 lines
1.2 KiB
C
31 lines
1.2 KiB
C
|
#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
|