OpenFPGA/openfpga/src/annotation/annotate_pb_graph.h

29 lines
959 B
C++

#ifndef ANNOTATE_PB_GRAPH_H
#define ANNOTATE_PB_GRAPH_H
/********************************************************************
* Include header files that are required by function declaration
*******************************************************************/
#include "openfpga_context.h"
#include "vpr_context.h"
#include "vpr_device_annotation.h"
/********************************************************************
* Function declaration
*******************************************************************/
/* begin namespace openfpga */
namespace openfpga {
void annotate_pb_graph_interconnect_physical_type(
const DeviceContext& vpr_device_ctx,
VprDeviceAnnotation& vpr_pb_type_annotation, const bool& verbose_output);
void annotate_pb_graph(const DeviceContext& vpr_device_ctx,
VprDeviceAnnotation& vpr_pb_type_annotation,
const bool& verbose_output);
} /* end namespace openfpga */
#endif