2020-02-17 18:57:43 -06:00
|
|
|
#ifndef REPACK_H
|
|
|
|
#define REPACK_H
|
|
|
|
|
|
|
|
/********************************************************************
|
|
|
|
* Include header files that are required by function declaration
|
|
|
|
*******************************************************************/
|
|
|
|
#include "vpr_context.h"
|
|
|
|
#include "vpr_device_annotation.h"
|
|
|
|
#include "vpr_clustering_annotation.h"
|
|
|
|
#include "vpr_routing_annotation.h"
|
2021-02-01 21:49:36 -06:00
|
|
|
#include "vpr_bitstream_annotation.h"
|
2021-01-16 22:27:12 -06:00
|
|
|
#include "repack_design_constraints.h"
|
2021-02-18 20:37:17 -06:00
|
|
|
#include "circuit_library.h"
|
2020-02-17 18:57:43 -06:00
|
|
|
|
|
|
|
/********************************************************************
|
|
|
|
* Function declaration
|
|
|
|
*******************************************************************/
|
|
|
|
|
|
|
|
/* begin namespace openfpga */
|
|
|
|
namespace openfpga {
|
|
|
|
|
|
|
|
void pack_physical_pbs(const DeviceContext& device_ctx,
|
2020-02-20 21:26:20 -06:00
|
|
|
const AtomContext& atom_ctx,
|
|
|
|
const ClusteringContext& clustering_ctx,
|
2020-02-20 14:24:34 -06:00
|
|
|
VprDeviceAnnotation& device_annotation,
|
2020-02-17 18:57:43 -06:00
|
|
|
VprClusteringAnnotation& clustering_annotation,
|
2021-02-01 21:49:36 -06:00
|
|
|
const VprBitstreamAnnotation& bitstream_annotation,
|
2021-01-16 22:27:12 -06:00
|
|
|
const RepackDesignConstraints& design_constraints,
|
2021-02-18 20:37:17 -06:00
|
|
|
const CircuitLibrary& circuit_lib,
|
2020-02-17 18:57:43 -06:00
|
|
|
const bool& verbose);
|
|
|
|
|
|
|
|
} /* end namespace openfpga */
|
|
|
|
|
|
|
|
#endif
|