Skip to content

Commit

Permalink
bitblast exe path fix (#1705)
Browse files Browse the repository at this point in the history
  • Loading branch information
alaindargelas authored Sep 23, 2024
1 parent 0e23893 commit e822056
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/Simulation/Simulator.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1212,9 +1212,8 @@ bool Simulator::SimulatePNR(SimulatorType type) {
const auto& path = std::filesystem::current_path();
std::string workingDir =
std::filesystem::path(path / ProjManager()->projectName()).string();
std::filesystem::path bitblast_exe = m_compiler->GetBinPath() / ".." /
"Raptor_Tools" / "netlist_bitblast" /
"bin" / "bitblast";
std::filesystem::path bitblast_exe =
m_compiler->GetBinPath() / "bitblast";
std::filesystem::path datapath = m_compiler->GetDataPath().parent_path();
std::filesystem::path tech_datapath = datapath / "raptor" / "sim_models" /
"rapidsilicon" /
Expand Down

0 comments on commit e822056

Please sign in to comment.