Implementation Wrap ScalableFM #50
Annotations
3 errors and 1 warning
build (ubuntu-latest, 3.12):
tests/cases/laplacian/_base.py#L32
TestLaplacianSpectrumFinderCmp.test_eigenvals_cmp[spectrum_finders1-shape0-0.1]
RuntimeError: Factor is exactly singular
|
build (ubuntu-latest, 3.12):
tests/scripts/parametrizer.py#L12
TestNotebooks.test_scalable_FM
nbclient.exceptions.CellExecutionError: An error occurred while executing the following cell:
------------------
hmesh_a = HierarchicalMesh.from_registry( mesh_a, min_n_samples=1000,which="scalablefm")
hmesh_b = HierarchicalMesh.from_registry(mesh_b, min_n_samples=1000,which="scalablefm")
(
(hmesh_a.low.n_points),
(hmesh_b.low.n_points),
)
------------------
---------------------------------------------------------------------------
ModuleNotFoundError Traceback (most recent call last)
Cell In[3], line 1
----> 1 hmesh_a = HierarchicalMesh.from_registry( mesh_a, min_n_samples=1000,which="scalablefm")
2 hmesh_b = HierarchicalMesh.from_registry(mesh_b, min_n_samples=1000,which="scalablefm")
4 (
5 (hmesh_a.low.n_points),
6 (hmesh_b.low.n_points),
7 )
File ~/work/geomfum/geomfum/geomfum/_registry.py:190, in WhichRegistryMixins.from_registry(cls, which, *args, **kwargs)
176 @classmethod
177 def from_registry(cls, *args, which=None, **kwargs):
178 """Instantiate registered implementation.
179
180 Parameters
(...)
188 Instantiated object.
189 """
--> 190 return cls._Registry.get(which)(*args, **kwargs)
File ~/work/geomfum/geomfum/geomfum/_registry.py:128, in WhichRegistry.get(cls, which)
114 @classmethod
115 def get(cls, which):
116 """Get register object.
117
118 Parameters
(...)
126 Registered object.
127 """
--> 128 return super().get(which)
File ~/work/geomfum/geomfum/geomfum/_registry.py:62, in Registry.get(cls, key)
58 raise ModuleNotFoundError(missing_package)
60 package_name = key if isinstance(key, str) else key[0]
---> 62 module = __import__(f"geomfum.wrap.{package_name}", fromlist=[""])
63 Obj = getattr(module, obj_name)
65 return Obj
File ~/w
|
build (ubuntu-latest, 3.12)
Process completed with exit code 1.
|
build (ubuntu-latest, 3.12)
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|