31 lines
1.0 KiB
C
31 lines
1.0 KiB
C
|
#ifndef RENAME_MODULES_H
|
||
|
#define RENAME_MODULES_H
|
||
|
|
||
|
/********************************************************************
|
||
|
* Include header files that are required by function declaration
|
||
|
*******************************************************************/
|
||
|
#include "fabric_tile.h"
|
||
|
#include "device_rr_gsb.h"
|
||
|
#include "module_name_map.h"
|
||
|
#include "module_manager.h"
|
||
|
|
||
|
/********************************************************************
|
||
|
* Function declaration
|
||
|
*******************************************************************/
|
||
|
|
||
|
/* begin namespace openfpga */
|
||
|
namespace openfpga {
|
||
|
|
||
|
int init_fabric_module_name_map(
|
||
|
ModuleNameMap& module_name_map,
|
||
|
const ModuleManager& module_manager,
|
||
|
const bool& verbose);
|
||
|
|
||
|
int update_module_map_name_with_indexing_names(ModuleNameMap& module_name_map, const DeviceRRGSB& device_rr_gsb, const FabricTile& fabric_tile, const bool& verbose);
|
||
|
|
||
|
int rename_fabric_modules(ModuleManager& module_manager, const ModuleNameMap& module_name_map, const bool& verbose);
|
||
|
|
||
|
} /* end namespace openfpga */
|
||
|
|
||
|
#endif
|