blob: a7c7d699efda478f4719580c0ee55703d5d10f3e [file] [log] [blame] [edit]
#ifndef OUTPUT_CLUSTERING_H
#define OUTPUT_CLUSTERING_H
#include <vector>
#include <unordered_set>
#include "vpr_types.h"
#include "pack_types.h"
void output_clustering(const vtr::vector<ClusterBlockId, std::vector<t_intra_lb_net>*> &intra_lb_routing, bool global_clocks,
const std::unordered_set<AtomNetId>& is_clock, const std::string& architecture_id, const char *out_fname, bool skip_clustering);
#endif