We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents c68761f + cfcb8cb commit 7009d70Copy full SHA for 7009d70
3 files changed
gigl/distributed/cpp_extensions/__init__.py
@@ -0,0 +1,9 @@
1
+try:
2
+ from gigl.distributed.cpp_extensions.ppr_forward_push import PPRForwardPushState
3
+except ImportError as e:
4
+ raise ImportError(
5
+ "PPR C++ extension not compiled. "
6
+ "Run `uv pip install -e .` from the GiGL root to build it."
7
+ ) from e
8
+
9
+__all__ = ["PPRForwardPushState"]
0 commit comments