Skip to content

Commit

Permalink
disable bitstream generation for GF 12nm devices
Browse files Browse the repository at this point in the history
  • Loading branch information
w0lek committed Dec 13, 2024
1 parent d58e6c6 commit 3292535
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions src/Compiler/CompilerOpenFPGA_ql.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -4545,6 +4545,14 @@ bool CompilerOpenFPGA_ql::GenerateBitstream() {
return false;
}

if(QLSettingsManager::getStringValue("general", "device", "foundry") == "GF" &&
QLSettingsManager::getStringValue("general", "device", "node") == "12nm") {
Message("##################################################");
Message("Skipping Bitstream Generation for GF 12nm devices!");
Message("##################################################");
return true;
}

if( QLSettingsManager::getStringValue("openfpga", "general", "bitstream_generation") == "checked" ) {
// bitstream generation is enabled, we can continue.
}
Expand Down

0 comments on commit 3292535

Please sign in to comment.