mlx-cluster 0.0.7__tar.gz → 0.0.9__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (27) hide show
  1. {mlx_cluster-0.0.7/mlx_cluster.egg-info → mlx_cluster-0.0.9}/PKG-INFO +1 -1
  2. {mlx_cluster-0.0.7 → mlx_cluster-0.0.9/mlx_cluster.egg-info}/PKG-INFO +1 -1
  3. {mlx_cluster-0.0.7 → mlx_cluster-0.0.9}/pyproject.toml +1 -1
  4. {mlx_cluster-0.0.7 → mlx_cluster-0.0.9}/setup.py +1 -1
  5. {mlx_cluster-0.0.7 → mlx_cluster-0.0.9}/CMakeLists.txt +0 -0
  6. {mlx_cluster-0.0.7 → mlx_cluster-0.0.9}/LICENSE +0 -0
  7. {mlx_cluster-0.0.7 → mlx_cluster-0.0.9}/MANIFEST.in +0 -0
  8. {mlx_cluster-0.0.7 → mlx_cluster-0.0.9}/README.md +0 -0
  9. {mlx_cluster-0.0.7 → mlx_cluster-0.0.9}/bindings.cpp +0 -0
  10. {mlx_cluster-0.0.7 → mlx_cluster-0.0.9}/mlx_cluster/__init__.py +0 -0
  11. {mlx_cluster-0.0.7 → mlx_cluster-0.0.9}/mlx_cluster/mlx_cluster.metallib +0 -0
  12. {mlx_cluster-0.0.7 → mlx_cluster-0.0.9}/mlx_cluster.egg-info/SOURCES.txt +0 -0
  13. {mlx_cluster-0.0.7 → mlx_cluster-0.0.9}/mlx_cluster.egg-info/dependency_links.txt +0 -0
  14. {mlx_cluster-0.0.7 → mlx_cluster-0.0.9}/mlx_cluster.egg-info/not-zip-safe +0 -0
  15. {mlx_cluster-0.0.7 → mlx_cluster-0.0.9}/mlx_cluster.egg-info/requires.txt +0 -0
  16. {mlx_cluster-0.0.7 → mlx_cluster-0.0.9}/mlx_cluster.egg-info/top_level.txt +0 -0
  17. {mlx_cluster-0.0.7 → mlx_cluster-0.0.9}/random_walks/BiasedRandomWalk.cpp +0 -0
  18. {mlx_cluster-0.0.7 → mlx_cluster-0.0.9}/random_walks/BiasedRandomWalk.h +0 -0
  19. {mlx_cluster-0.0.7 → mlx_cluster-0.0.9}/random_walks/NeighborSample.cpp +0 -0
  20. {mlx_cluster-0.0.7 → mlx_cluster-0.0.9}/random_walks/NeighborSample.h +0 -0
  21. {mlx_cluster-0.0.7 → mlx_cluster-0.0.9}/random_walks/RandomWalk.cpp +0 -0
  22. {mlx_cluster-0.0.7 → mlx_cluster-0.0.9}/random_walks/RandomWalk.h +0 -0
  23. {mlx_cluster-0.0.7 → mlx_cluster-0.0.9}/random_walks/random_walk.metal +0 -0
  24. {mlx_cluster-0.0.7 → mlx_cluster-0.0.9}/setup.cfg +0 -0
  25. {mlx_cluster-0.0.7 → mlx_cluster-0.0.9}/tests/test_neighbor_sample.py +0 -0
  26. {mlx_cluster-0.0.7 → mlx_cluster-0.0.9}/tests/test_random_walk.py +0 -0
  27. {mlx_cluster-0.0.7 → mlx_cluster-0.0.9}/tests/test_rejection_sampling.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: mlx_cluster
3
- Version: 0.0.7
3
+ Version: 0.0.9
4
4
  Summary: C++ extension for generating random graphs
5
5
  Author-email: Vinay Pandya <vinayharshadpandya27@gmail.com>
6
6
  Project-URL: Homepage, https://github.com/vinayhpandya/mlx_cluster
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: mlx_cluster
3
- Version: 0.0.7
3
+ Version: 0.0.9
4
4
  Summary: C++ extension for generating random graphs
5
5
  Author-email: Vinay Pandya <vinayharshadpandya27@gmail.com>
6
6
  Project-URL: Homepage, https://github.com/vinayhpandya/mlx_cluster
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "mlx_cluster"
3
- version = "0.0.7"
3
+ version = "0.0.9"
4
4
  authors = [
5
5
  { name = "Vinay Pandya", email = "vinayharshadpandya27@gmail.com" },
6
6
  ]
@@ -4,7 +4,7 @@ from mlx import extension
4
4
  if __name__ == "__main__":
5
5
  setup(
6
6
  name="mlx_cluster",
7
- version="0.0.7",
7
+ version="0.0.9",
8
8
  description="Sample C++ and Metal extensions for MLX primitives.",
9
9
  ext_modules=[extension.CMakeExtension("mlx_cluster._ext")],
10
10
  cmdclass={"build_ext": extension.CMakeBuild},
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes