aboutsummaryrefslogtreecommitdiffstats
path: root/src/SoftwarePipelining/SPIMS.ml
diff options
context:
space:
mode:
authorYann Herklotz <git@yannherklotz.com>2020-12-17 10:03:30 +0000
committerYann Herklotz <git@yannherklotz.com>2020-12-17 10:03:30 +0000
commit82b3cfa677c21e7d1fab907f1824bb101f819291 (patch)
tree3be6d494b1da4562f36ac98ed43b5a016cb3f345 /src/SoftwarePipelining/SPIMS.ml
parent51e3a17d2e65b095861c243807f4e8d76c60ea0e (diff)
downloadvericert-82b3cfa677c21e7d1fab907f1824bb101f819291.tar.gz
vericert-82b3cfa677c21e7d1fab907f1824bb101f819291.zip
Modify software pipelining for build
Diffstat (limited to 'src/SoftwarePipelining/SPIMS.ml')
-rw-r--r--src/SoftwarePipelining/SPIMS.ml4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/SoftwarePipelining/SPIMS.ml b/src/SoftwarePipelining/SPIMS.ml
index a31f3d2..48e7339 100644
--- a/src/SoftwarePipelining/SPIMS.ml
+++ b/src/SoftwarePipelining/SPIMS.ml
@@ -11,7 +11,7 @@
open Graph.Pack.Digraph
-open Basic
+open SPBasic
module NI = Map.Make (struct type t = G.V.t let compare = compare end)
@@ -173,6 +173,6 @@ let pipeliner ddg heightr =
let print_schedule sched =
NI.iter (fun node time ->
- Printf.fprintf Debug.dc "%s |---> %i \n" (string_of_node node) time
+ Printf.fprintf SPDebug.dc "%s |---> %i \n" (string_of_node node) time
) sched