Skip to content

Commit

Permalink
Removed check for valid parameter set as it doesn't work when all tar…
Browse files Browse the repository at this point in the history
…gets are evaluated.
  • Loading branch information
Niels authored and Niels committed Jan 10, 2022
1 parent 3abf26f commit b4fe0da
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 6 deletions.
3 changes: 0 additions & 3 deletions RULES/hdl/questa.go
Original file line number Diff line number Diff line change
Expand Up @@ -236,9 +236,6 @@ func optimize(ctx core.Context, rule Simulation, deps []core.Path) {
for param, value := range params {
cmd = fmt.Sprintf("%s -G %s=%s", cmd, param, value)
}
} else {
log.Fatal(fmt.Sprintf("parameter set '%s' not defined for Simulation target '%s'!",
params, rule.Name))
}
}

Expand Down
3 changes: 0 additions & 3 deletions RULES/hdl/xsim.go
Original file line number Diff line number Diff line change
Expand Up @@ -181,9 +181,6 @@ func elaborate(ctx core.Context, rule Simulation, deps []core.Path) {
for param, value := range params {
cmd = fmt.Sprintf("%s -generic_top \"%s=%s\"", cmd, param, value)
}
} else {
log.Fatal(fmt.Sprintf("parameter set '%s' not defined for Simulation target '%s'!",
params, rule.Name))
}
}

Expand Down

0 comments on commit b4fe0da

Please sign in to comment.