2021-05-07 12:22:01 -05:00
|
|
|
#ifndef REPORT_ARCH_BITSTREAM_DISTRIBUTION_H
|
|
|
|
#define REPORT_ARCH_BITSTREAM_DISTRIBUTION_H
|
|
|
|
|
|
|
|
/********************************************************************
|
|
|
|
* Include header files that are required by function declaration
|
|
|
|
*******************************************************************/
|
|
|
|
#include <string>
|
2022-10-06 19:08:50 -05:00
|
|
|
|
2021-05-07 12:22:01 -05:00
|
|
|
#include "bitstream_manager.h"
|
|
|
|
|
|
|
|
/********************************************************************
|
|
|
|
* Function declaration
|
|
|
|
*******************************************************************/
|
|
|
|
|
|
|
|
/* begin namespace openfpga */
|
|
|
|
namespace openfpga {
|
|
|
|
|
2022-10-06 19:08:50 -05:00
|
|
|
int report_architecture_bitstream_distribution(
|
|
|
|
std::fstream& fp, const BitstreamManager& bitstream_manager,
|
|
|
|
const size_t& max_hierarchy_level, const size_t& hierarchy_level);
|
2021-05-07 12:22:01 -05:00
|
|
|
|
|
|
|
} /* end namespace openfpga */
|
|
|
|
|
|
|
|
#endif
|