Skip to content

Commit

Permalink
Kmedoids warm restart implementation (#197)
Browse files Browse the repository at this point in the history
* Kmedoids warm restart implementation

* Added args.Clusterer option for KMedoids

* Wrote test for kmedoids warm start

* Add intermediate saves option for kmedoids/khybrid 

---------

Co-authored-by: Justin-J-Miller <[email protected]>
Co-authored-by: Justin Miller <[email protected]>
  • Loading branch information
3 people authored May 9, 2024
1 parent 3b8c23e commit 61bbfcd
Show file tree
Hide file tree
Showing 12 changed files with 1,190 additions and 451 deletions.
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,14 +45,15 @@ installed then, from the enspara directory, run:
```bash
pytest
```
By default this runs without MPI.

If you wish to skip the MPI tests, you can run:
If you wish to explicitly skip the MPI tests, you can run:
```bash
pytest -m 'not mpi'
```

If you want to run the MPI tests, you can run:

```bash
mpiexec -n 2 pytests -m 'mpi'
mpirun -n 2 python -m pytest -m 'mpi' --with-mpi
```
Loading

0 comments on commit 61bbfcd

Please sign in to comment.