We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 452d087 commit 0ae2b56Copy full SHA for 0ae2b56
flow/scripts/global_route.tcl
@@ -35,11 +35,13 @@ if {[info exists ::env(GLOBAL_ROUTE_ARGS)]} {
35
global_route {*}$common_args {*}$congestion_args -congestion_iterations 20 -congestion_report_iter_step 1
36
break
37
} else {
38
- try {
39
- global_route {*}$common_args {*}$congestion_args -congestion_iterations 5
40
- break
41
- } catch {
42
- puts "First attempt failed. Retrying, reporting each iteration..."
+ set result [catch {
+ global_route {*}$common_args {*}$congestion_args -congestion_iterations 5
+ break
+ } errMsg]
+ if {$result} {
43
+ puts "First attempt failed. Retrying, reporting each iteration..."
44
+ puts "Error message: $errMsg"
45
}
46
47
0 commit comments