2020-02-12 18:53:23 -06:00
|
|
|
#ifndef BUILD_DEVICE_MODULE_H
|
|
|
|
#define BUILD_DEVICE_MODULE_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 {
|
|
|
|
|
2020-02-26 20:58:18 -06:00
|
|
|
ModuleManager build_device_module_graph(IoLocationMap& io_location_map,
|
2020-05-25 23:15:16 -05:00
|
|
|
DecoderLibrary& decoder_lib,
|
2020-02-13 16:27:16 -06:00
|
|
|
const OpenfpgaContext& openfpga_ctx,
|
2020-05-25 23:15:16 -05:00
|
|
|
const DeviceContext& vpr_device_ctx,
|
2020-02-13 18:35:29 -06:00
|
|
|
const bool& compress_routing,
|
2020-02-13 16:38:26 -06:00
|
|
|
const bool& duplicate_grid_pin,
|
2020-06-12 12:16:53 -05:00
|
|
|
const bool& generate_random_fabric_key,
|
2020-02-13 16:38:26 -06:00
|
|
|
const bool& verbose);
|
2020-02-12 18:53:23 -06:00
|
|
|
|
|
|
|
} /* end namespace openfpga */
|
|
|
|
|
|
|
|
#endif
|