diff options
| author | azidar | 2016-01-15 18:34:04 -0800 |
|---|---|---|
| committer | azidar | 2016-01-16 14:28:18 -0800 |
| commit | e35cbaaa77d6723e088b25c08015492a9164df3d (patch) | |
| tree | 2f62b682cb8ffc5f5068360e1be72adb19d52780 /src | |
| parent | cf5c616fc8cfe17ac0c99f8fc0ece70e9ecc466d (diff) | |
Commented back in Starting and Finishing for testing
Diffstat (limited to 'src')
| -rw-r--r-- | src/main/stanza/compilers.stanza | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/main/stanza/compilers.stanza b/src/main/stanza/compilers.stanza index e6cc8229..34e5d28d 100644 --- a/src/main/stanza/compilers.stanza +++ b/src/main/stanza/compilers.stanza @@ -166,16 +166,16 @@ public defn run-passes (c:Circuit,ls:List<Pass>) -> Circuit: var t = start-time val time-table = Vector<[String,Int]>() for p in ls do : - ;println-all(["Starting " name(p)]) + println-all(["Starting " name(p)]) if PRINT-CIRCUITS : println(name(p)) c* = pass(p)(c*) if PRINT-CIRCUITS : print(c*) val current-time = to-int(to-string(current-time-us() / to-long(1000))) - ;println-all(["Finished " name(p)]) - ;println-all(["Milliseconds since start: " current-time - start-time]) - ;println-all(["Milliseconds for this pass: " current-time - t]) - ;println-all(["\n"]) - println-all([current-time - t]) + println-all(["Finished " name(p)]) + println-all(["Milliseconds since start: " current-time - start-time]) + println-all(["Milliseconds for this pass: " current-time - t]) + println-all(["\n"]) + ;println-all([current-time - t]) add(time-table,[name(p), current-time - t]) t = current-time |
