2020-02-17 18:57:43 -06:00
|
|
|
#ifndef REPACK_H
|
|
|
|
#define REPACK_H
|
|
|
|
|
|
|
|
/********************************************************************
|
|
|
|
* Include header files that are required by function declaration
|
|
|
|
*******************************************************************/
|
2022-10-06 19:08:50 -05:00
|
|
|
#include "circuit_library.h"
|
|
|
|
#include "repack_option.h"
|
|
|
|
#include "vpr_bitstream_annotation.h"
|
|
|
|
#include "vpr_clustering_annotation.h"
|
2020-02-17 18:57:43 -06:00
|
|
|
#include "vpr_context.h"
|
|
|
|
#include "vpr_device_annotation.h"
|
|
|
|
#include "vpr_routing_annotation.h"
|
|
|
|
|
|
|
|
/********************************************************************
|
|
|
|
* 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-02-18 20:37:17 -06:00
|
|
|
const CircuitLibrary& circuit_lib,
|
2022-09-12 18:18:26 -05:00
|
|
|
const RepackOption& options);
|
2020-02-17 18:57:43 -06:00
|
|
|
|
|
|
|
} /* end namespace openfpga */
|
|
|
|
|
|
|
|
#endif
|