dv-flow-mgr 0.0.1.13849962851a1__py3-none-any.whl → 0.0.1.13862522550a1__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
dv_flow/mgr/task_node.py CHANGED
@@ -58,8 +58,8 @@ class TaskNode(object):
58
58
  if subdep not in dep_m.keys():
59
59
  dep_m[subdep] = []
60
60
  dep_m[subdep].extend(need.output.dep_m[subdep])
61
+ self._log.debug("input dep_m: %s %s" % (self.name, str(dep_m)))
61
62
 
62
- self._log.debug("input dep_m: %s" % str(dep_m))
63
63
  sorted = toposort.toposort(dep_m)
64
64
 
65
65
  in_params_m = {}
@@ -127,10 +127,12 @@ class TaskNode(object):
127
127
 
128
128
  self._log.debug("output[1]: %s" % str(output))
129
129
 
130
+ # Pass-through all dependencies
131
+ # Add an entry for ourselves
132
+ dep_m[self.name] = list(need.name for need in self.needs)
133
+
130
134
  if self.passthrough:
131
135
  self._log.debug("passthrough: %s" % self.name)
132
- # Add an entry for ourselves
133
- dep_m[self.name] = list(need.name for need in self.needs)
134
136
 
135
137
  if self.consumes is None and len(self.consumes):
136
138
  self._log.debug("Propagating all input parameters to output")
@@ -167,11 +169,11 @@ class TaskNode(object):
167
169
  else:
168
170
  self._log.debug("non-passthrough: %s (only local outputs propagated)" % self.name)
169
171
  # empty dependency map
170
- dep_m = {
171
- self.name : []
172
- }
172
+ # dep_m = {
173
+ # self.name : []
174
+ # }
173
175
 
174
- self._log.debug("output dep_m: %s" % str(dep_m))
176
+ self._log.debug("output dep_m: %s %s" % (self.name, str(dep_m)))
175
177
  self._log.debug("output[2]: %s" % str(output))
176
178
 
177
179
  # Store the result
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: dv-flow-mgr
3
- Version: 0.0.1.13849962851a1
3
+ Version: 0.0.1.13862522550a1
4
4
  Summary: DV Flow Manager is a build system for silicon design
5
5
  Author-email: Matthew Ballance <matt.ballance@gmail.com>
6
6
  License: Apache License
@@ -25,7 +25,7 @@ dv_flow/mgr/task_graph_runner_local.py,sha256=OrydPwtQ8E7hYWvSXx0h7lI3nfUNFyklUL
25
25
  dv_flow/mgr/task_impl_data.py,sha256=bFPijoKrh9x7fZN2DsvRJp0UHo-gGM0VjtDQISyfhFk,321
26
26
  dv_flow/mgr/task_listener_log.py,sha256=d4GQcT3n_0Dq-XWQP-WNJIhuxvw948RbFPSiJ6X1_eI,2683
27
27
  dv_flow/mgr/task_memento.py,sha256=C7VTQpBhDEoYuDmE6YTM-6TLMLnqHp6Y0Vat1aTgtCs,1096
28
- dv_flow/mgr/task_node.py,sha256=jgOBTnQicKc9cvEl8j3IK5KWG9xZyoJmfypliO_Vaoc,14160
28
+ dv_flow/mgr/task_node.py,sha256=I1wbq-EpuZZ94R42rtBSQRnk-2Yf6ZQhctsxjn2Vbus,14228
29
29
  dv_flow/mgr/task_output.py,sha256=dkJhhNRFGFQSkVsw_bGirK0_0ghTxBYq1LjRMZCVWnA,245
30
30
  dv_flow/mgr/task_params_ctor.py,sha256=aXgB8o9xFPjaEjGW_xYkEC0N0apzGzGUPDj7g2ZLvus,1112
31
31
  dv_flow/mgr/task_runner.py,sha256=NFGAAlOKMeXkWQtSX3YcZ6RMPn5xlZ92R6q57xPpueg,7922
@@ -40,9 +40,9 @@ dv_flow/mgr/std/fileset.py,sha256=nW5Cg4IyCs-ccKKsIxA5W5aZvaluFk6LXDyFh9Jixcs,30
40
40
  dv_flow/mgr/std/flow.dv,sha256=CcQOvSfT0JgsaNf7dH8gfbG8lPvQQXw9W9gqrT52Pw0,2025
41
41
  dv_flow/mgr/std/message.py,sha256=T8Ye44784rD6CT2qIAP5SD7sKPdAlGMFimc4IaPCxxE,200
42
42
  dv_flow/mgr/std/task_null.py,sha256=UKwUnqwFPBY8BO44ZAPcgehQB59kHZFa1qyZc1TwUqE,196
43
- dv_flow_mgr-0.0.1.13849962851a1.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
44
- dv_flow_mgr-0.0.1.13849962851a1.dist-info/METADATA,sha256=pIYBUpQhQceq3XD3tt6vigL7Se3kH-kvexTVCh_DI2I,13314
45
- dv_flow_mgr-0.0.1.13849962851a1.dist-info/WHEEL,sha256=52BFRY2Up02UkjOa29eZOS2VxUrpPORXg1pkohGGUS8,91
46
- dv_flow_mgr-0.0.1.13849962851a1.dist-info/entry_points.txt,sha256=1roy8wAFM48LabOvr6jiOw0MUs-qE8X3Vf8YykPazxk,50
47
- dv_flow_mgr-0.0.1.13849962851a1.dist-info/top_level.txt,sha256=amfVTkggzYPtWwLqNmRukfz1Buu0pGS2SrYBBLhXm04,8
48
- dv_flow_mgr-0.0.1.13849962851a1.dist-info/RECORD,,
43
+ dv_flow_mgr-0.0.1.13862522550a1.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
44
+ dv_flow_mgr-0.0.1.13862522550a1.dist-info/METADATA,sha256=B8h8L4Nr9ywSDxAGO4ElhZg4cIHndSyJCmNRMJGP4d4,13314
45
+ dv_flow_mgr-0.0.1.13862522550a1.dist-info/WHEEL,sha256=52BFRY2Up02UkjOa29eZOS2VxUrpPORXg1pkohGGUS8,91
46
+ dv_flow_mgr-0.0.1.13862522550a1.dist-info/entry_points.txt,sha256=1roy8wAFM48LabOvr6jiOw0MUs-qE8X3Vf8YykPazxk,50
47
+ dv_flow_mgr-0.0.1.13862522550a1.dist-info/top_level.txt,sha256=amfVTkggzYPtWwLqNmRukfz1Buu0pGS2SrYBBLhXm04,8
48
+ dv_flow_mgr-0.0.1.13862522550a1.dist-info/RECORD,,