clangformat
Signed-off-by: gatecat <gatecat@ds0.me>
This commit is contained in:
parent
5ff701d45e
commit
df7e26c1aa
@ -23,8 +23,8 @@
|
|||||||
#if !defined(__wasm)
|
#if !defined(__wasm)
|
||||||
|
|
||||||
#include "fast_bels.h"
|
#include "fast_bels.h"
|
||||||
#include "timing.h"
|
|
||||||
#include "scope_lock.h"
|
#include "scope_lock.h"
|
||||||
|
#include "timing.h"
|
||||||
|
|
||||||
#include <chrono>
|
#include <chrono>
|
||||||
#include <mutex>
|
#include <mutex>
|
||||||
@ -952,10 +952,7 @@ NEXTPNR_NAMESPACE_END
|
|||||||
|
|
||||||
NEXTPNR_NAMESPACE_BEGIN
|
NEXTPNR_NAMESPACE_BEGIN
|
||||||
|
|
||||||
bool parallel_refine(Context *ctx, ParallelRefineCfg cfg)
|
bool parallel_refine(Context *ctx, ParallelRefineCfg cfg) { log_abort(); }
|
||||||
{
|
|
||||||
log_abort();
|
|
||||||
}
|
|
||||||
|
|
||||||
NEXTPNR_NAMESPACE_END
|
NEXTPNR_NAMESPACE_END
|
||||||
|
|
||||||
|
@ -51,9 +51,9 @@ struct SiteLutMappingKey
|
|||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
int32_t tileType; // Tile type
|
int32_t tileType; // Tile type
|
||||||
int32_t siteType; // Site type in that tile type
|
int32_t siteType; // Site type in that tile type
|
||||||
size_t numCells; // LUT cell count
|
size_t numCells; // LUT cell count
|
||||||
std::vector<Cell> cells; // LUT cell data
|
std::vector<Cell> cells; // LUT cell data
|
||||||
|
|
||||||
unsigned int hash_; // Precomputed hash
|
unsigned int hash_; // Precomputed hash
|
||||||
|
@ -883,7 +883,8 @@ struct NexusPacker
|
|||||||
for (size_t i = 0; i < std::min<size_t>(clk_fanout.size(), available_globals); i++) {
|
for (size_t i = 0; i < std::min<size_t>(clk_fanout.size(), available_globals); i++) {
|
||||||
NetInfo *net = ctx->nets.at(clk_fanout.at(i).second).get();
|
NetInfo *net = ctx->nets.at(clk_fanout.at(i).second).get();
|
||||||
log_info(" promoting clock net '%s'\n", ctx->nameOf(net));
|
log_info(" promoting clock net '%s'\n", ctx->nameOf(net));
|
||||||
insert_buffer(net, id_DCC, "glb_clk", id_CLKI, id_CLKO, [&](const PortRef &port) { return port.cell->type != id_DCC; });
|
insert_buffer(net, id_DCC, "glb_clk", id_CLKI, id_CLKO,
|
||||||
|
[&](const PortRef &port) { return port.cell->type != id_DCC; });
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user