-
Hi there, I'm interested in understanding if
Furthermore, would users be interested in accelerated nx algorithms via a GPU backend? This would involve zero code change. Any insight into this topic would be greatly appreciated! Thank you. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 6 replies
-
From my understanding, I think a I'm not sure if NetworkX is used elsewhere and for other purposes besides the |
Beta Was this translation helpful? Give feedback.
From my understanding, I think a
base.py
incore/pipeline
takes the inputs of a haystack Pipeline and makes it into aNetworkX MultiDiGraph
. That graph is then passed into the.draw()
method and converted to text to be used for theMermaid.ink
server that is used for visuals. I can't speak for whether or not this is efficient as the biggest pipeline's I've created were bottlenecked by a Mermaid server issue which is now resolved.I'm not sure if NetworkX is used elsewhere and for other purposes besides the
draw()
call.