2020-01-28 22:59:10 -06:00
|
|
|
#ifndef ANNOTATE_PB_GRAPH_H
|
|
|
|
#define ANNOTATE_PB_GRAPH_H
|
|
|
|
|
|
|
|
/********************************************************************
|
|
|
|
* Include header files that are required by function declaration
|
|
|
|
*******************************************************************/
|
|
|
|
#include "openfpga_context.h"
|
2022-10-06 19:08:50 -05:00
|
|
|
#include "vpr_context.h"
|
2020-02-12 10:52:18 -06:00
|
|
|
#include "vpr_device_annotation.h"
|
2020-01-28 22:59:10 -06:00
|
|
|
|
|
|
|
/********************************************************************
|
|
|
|
* Function declaration
|
|
|
|
*******************************************************************/
|
|
|
|
|
|
|
|
/* begin namespace openfpga */
|
|
|
|
namespace openfpga {
|
|
|
|
|
2022-10-06 19:08:50 -05:00
|
|
|
void annotate_pb_graph_interconnect_physical_type(
|
|
|
|
const DeviceContext& vpr_device_ctx,
|
|
|
|
VprDeviceAnnotation& vpr_pb_type_annotation, const bool& verbose_output);
|
2020-01-28 22:59:10 -06:00
|
|
|
|
2022-10-06 19:08:50 -05:00
|
|
|
void annotate_pb_graph(const DeviceContext& vpr_device_ctx,
|
2020-02-12 10:52:18 -06:00
|
|
|
VprDeviceAnnotation& vpr_pb_type_annotation,
|
2020-01-31 12:36:58 -06:00
|
|
|
const bool& verbose_output);
|
2020-01-30 17:40:13 -06:00
|
|
|
|
2020-01-28 22:59:10 -06:00
|
|
|
} /* end namespace openfpga */
|
|
|
|
|
|
|
|
#endif
|