Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Ql accu mingw #6

Merged
merged 2 commits into from
Feb 28, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion vpr/src/base/vpr_api.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -370,6 +370,7 @@ void vpr_show_resource_usage(const t_vpr_setup& vpr_setup, const t_arch& Arch)
{
vtr::ScopedStartFinishTimer timer("Build Device Grid");
/* Read in netlist file for placement and routing */
auto& cluster_ctx = g_vpr_ctx.clustering();
auto& device_ctx = g_vpr_ctx.mutable_device();

device_ctx.arch = &Arch;
Expand Down Expand Up @@ -853,7 +854,6 @@ RouteStatus vpr_route_flow(const Netlist<>& net_list,

//Initialize the delay calculator
std::shared_ptr<SetupHoldTimingInfo> timing_info = nullptr;

std::shared_ptr<RoutingDelayCalculator> routing_delay_calc = nullptr;
if (vpr_setup.Timing.timing_analysis_enabled) {
auto& atom_ctx = g_vpr_ctx.atom();
Expand Down
1 change: 1 addition & 0 deletions vpr/src/draw/draw_basic.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
#include <cstdio>
#include <cfloat>
#include <cstring>
#define _USE_MATH_DEFINES // ensure (non-standard) value of M_PI is brought in from math.h
#include <cmath>
#include <algorithm>
#include <sstream>
Expand Down
2 changes: 1 addition & 1 deletion vpr/src/server/task.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ void Task::bakeResponse()

std::optional<std::string> bodyOpt;
uint8_t compressorId = comm::NONE_COMPRESSOR_ID;
#ifndef DISABLE_ZLIB_TELEGRAM_DATA_FIELD_COMPRESSION
#ifndef FORCE_DISABLE_ZLIB_TELEGRAM_COMPRESSION
bodyOpt = tryCompress(ss.str());
if (bodyOpt) {
compressorId = comm::ZLIB_COMPRESSOR_ID;
Expand Down
Loading