Skip to content

Commit

Permalink
bitstream generation is not skipped now, even if flat_routing is enabled
Browse files Browse the repository at this point in the history
  • Loading branch information
coolbreeze413 committed Nov 11, 2024
1 parent 2f1a138 commit 8dd1c57
Showing 1 changed file with 10 additions and 9 deletions.
19 changes: 10 additions & 9 deletions src/Compiler/CompilerOpenFPGA_ql.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -4468,15 +4468,16 @@ bool CompilerOpenFPGA_ql::GenerateBitstream() {
return true;
}

// if flat_routing is enabled in VPR, skip bitstream generation
// OpenFPGA does not support bitstream generation with flat_routing (yet)
// ref: https://github.com/verilog-to-routing/vtr-verilog-to-routing/issues/2256#issuecomment-1498007179
if( QLSettingsManager::getStringValue("vpr", "route", "flat_routing") == "checked" ) {
Message("##################################################");
Message("Skipping Bitstream Generation since flat_routing is enabled in VPR!");
Message("##################################################");
return true;
}
// flat_routing enabled should be able to generate bitstream with updated OpenFPGA/vpr 11NOV2024.
// // if flat_routing is enabled in VPR, skip bitstream generation
// // OpenFPGA does not support bitstream generation with flat_routing (yet)
// // ref: https://github.com/verilog-to-routing/vtr-verilog-to-routing/issues/2256#issuecomment-1498007179
// if( QLSettingsManager::getStringValue("vpr", "route", "flat_routing") == "checked" ) {
// Message("##################################################");
// Message("Skipping Bitstream Generation since flat_routing is enabled in VPR!");
// Message("##################################################");
// return true;
// }

#if UPSTREAM_UNUSED
if (BitsOpt() == BitstreamOpt::EnableSimulation) {
Expand Down

0 comments on commit 8dd1c57

Please sign in to comment.