You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When we moved to loading packages instead of hugrs (#680) we removed the guppy-specific load_guppy_* methods. These actually were doing some hacky fixes that are currently required to load a function from guppy, so now loading such a function results in an error.
Guppy defines a CFG block inside each function definition, containing one or more DataflowBlocks with the actual circuit. In the guppy loaders we used to look inside the functions and extract the single dataflow block if possible.
The clean solution would be to finish implementing #750 and #636.
The quick-and-dirty solution is to bring back the load_guppy_* methods.
The text was updated successfully, but these errors were encountered:
When we moved to loading packages instead of hugrs (#680) we removed the guppy-specific
load_guppy_*
methods. These actually were doing some hacky fixes that are currently required to load a function from guppy, so now loading such a function results in an error.Guppy defines a CFG block inside each function definition, containing one or more
DataflowBlock
s with the actual circuit. In the guppy loaders we used to look inside the functions and extract the single dataflow block if possible.The clean solution would be to finish implementing #750 and #636.
The quick-and-dirty solution is to bring back the
load_guppy_*
methods.The text was updated successfully, but these errors were encountered: