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
To reproduce
When running tutorial_QUBO_solver.ipynb, I get a module not found error on the first block with imports:
---------------------------------------------------------------------------
ModuleNotFoundError Traceback (most recent call last)
Cell In[1], [line 12](vscode-notebook-cell:?execution_count=1&line=12)
[9](vscode-notebook-cell:?execution_count=1&line=9) from lava.magma.compiler.subcompilers.nc.ncproc_compiler import CompilerOptions
[10](vscode-notebook-cell:?execution_count=1&line=10) from lava.magma.compiler.subcompilers.nc import partitionable
---> [12](vscode-notebook-cell:?execution_count=1&line=12) from lava.lib.optimization.solvers.qubo.process import QUBOSolverProcess
[13](vscode-notebook-cell:?execution_count=1&line=13) from lava.lib.optimization.solvers.qubo.utils.hyperparameters import QUBOHyperparameters
[14](vscode-notebook-cell:?execution_count=1&line=14) from lava.lib.optimization.solvers.qubo.utils.solver_config import SolverConfig
ModuleNotFoundError: No module named 'lava.lib.optimization.solvers.qubo'
It looks as if qubo should appear under src/lava/lib/optimization/solvers/, but I only see bayesian, generic, and lca. Was something missing in the commit that introduced this Jupyter notebook?
This is off a fresh install of lava and lava-optimization. The tutorial_04_lca.ipynb notebook runs without issue for me, so I believe my environment was created correctly.
Expected behavior
All code blocks in tutorial_QUBO_solver.ipynb should run without issue, and the QUBO solver should be available under src/lava/lib/optimization/solvers/.
Bug
Missing qubo solver.
To reproduce
When running
tutorial_QUBO_solver.ipynb
, I get a module not found error on the first block with imports:It looks as if
qubo
should appear undersrc/lava/lib/optimization/solvers/
, but I only seebayesian
,generic
, andlca
. Was something missing in the commit that introduced this Jupyter notebook?This is off a fresh install of lava and lava-optimization. The
tutorial_04_lca.ipynb
notebook runs without issue for me, so I believe my environment was created correctly.Expected behavior
All code blocks in
tutorial_QUBO_solver.ipynb
should run without issue, and the QUBO solver should be available undersrc/lava/lib/optimization/solvers/
.Environment:
The text was updated successfully, but these errors were encountered: