Add missing <set> includes
Signed-off-by: gatecat <gatecat@ds0.me>
This commit is contained in:
parent
06eaffc57c
commit
7845b66512
@ -34,6 +34,8 @@
|
||||
#include <fstream>
|
||||
#include <iostream>
|
||||
#include <random>
|
||||
#include <set>
|
||||
|
||||
#include "command.h"
|
||||
#include "design_utils.h"
|
||||
#include "json_frontend.h"
|
||||
|
@ -34,6 +34,7 @@
|
||||
#include <deque>
|
||||
#include <fstream>
|
||||
#include <queue>
|
||||
#include <set>
|
||||
|
||||
#include "log.h"
|
||||
#include "nextpnr.h"
|
||||
|
@ -1087,10 +1087,9 @@ struct Arch : BaseArch<ArchRanges>
|
||||
mutable std::vector<TileStatus> tile_status;
|
||||
|
||||
// -------------------------------------------------
|
||||
bool is_dsp_location_valid(CellInfo* cell) const;
|
||||
bool is_dsp_location_valid(CellInfo *cell) const;
|
||||
void remap_dsp_blocks();
|
||||
void remap_dsp_cell(CellInfo* ci, const std::array<IdString, 4> &ports,
|
||||
std::array<NetInfo*, 4> &assigned_nets);
|
||||
void remap_dsp_cell(CellInfo *ci, const std::array<IdString, 4> &ports, std::array<NetInfo *, 4> &assigned_nets);
|
||||
};
|
||||
|
||||
NEXTPNR_NAMESPACE_END
|
||||
|
@ -20,7 +20,9 @@
|
||||
#include "config.h"
|
||||
#include <boost/range/adaptor/reversed.hpp>
|
||||
#include <iomanip>
|
||||
#include <set>
|
||||
#include "log.h"
|
||||
|
||||
NEXTPNR_NAMESPACE_BEGIN
|
||||
|
||||
#define fmt(x) (static_cast<const std::ostringstream &>(std::ostringstream() << x).str())
|
||||
|
@ -28,6 +28,7 @@
|
||||
#include <cmath>
|
||||
#include <cstring>
|
||||
#include <queue>
|
||||
#include <set>
|
||||
|
||||
#include "constraints.impl.h"
|
||||
#include "fpga_interchange.h"
|
||||
|
@ -22,6 +22,7 @@
|
||||
#define MACHXO2_ARCH_H
|
||||
|
||||
#include <cstdint>
|
||||
#include <set>
|
||||
|
||||
#include "base_arch.h"
|
||||
#include "nextpnr_namespaces.h"
|
||||
|
@ -21,7 +21,9 @@
|
||||
#include "config.h"
|
||||
#include <boost/range/adaptor/reversed.hpp>
|
||||
#include <iomanip>
|
||||
#include <set>
|
||||
#include "log.h"
|
||||
|
||||
NEXTPNR_NAMESPACE_BEGIN
|
||||
|
||||
#define fmt(x) (static_cast<const std::ostringstream &>(std::ostringstream() << x).str())
|
||||
|
@ -24,6 +24,7 @@
|
||||
|
||||
#include <boost/range/adaptor/reversed.hpp>
|
||||
#include <queue>
|
||||
#include <set>
|
||||
|
||||
NEXTPNR_NAMESPACE_BEGIN
|
||||
namespace {
|
||||
|
@ -25,6 +25,7 @@
|
||||
|
||||
#include <boost/algorithm/string.hpp>
|
||||
#include <queue>
|
||||
#include <set>
|
||||
|
||||
NEXTPNR_NAMESPACE_BEGIN
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user