Skip to content

Releases: Graphegon/pygraphblas

pygraphblas 3.4.0

24 Aug 16:01
Compare
Choose a tag to compare

This release includes a lot of changes:
  - The result type of an operation is now determined by the types of its inputs, not just the type of the left input.  If an explicit semiring is provided, the result type is now always the ztype of the binaryop of the semiring monoid.  If no explicit semiring is provided then types are promoted according to C like rules.

  - Matrices and vectors now support apply_first and apply_second, and also support Matrix/Vector with scalar math, so A * 3 will apply TIMES with apply_second to A.

  - Binary math operators (+ - * /) and their in place forms now all are equivalent to A.eadd(B, op=...).  This makes them more consistent with the above apply operations.
  - New operators | and & now map to eadd and emult.  So the old behavior of doing an emult with * can be had with:
   with TIMES:        C = A & B
which is the same as C = A.emult(B, TIMES).  There are also |= and &= in place versions.

  - Coverage has gone up about 8% to 92%.  I'm aiming for 100% coverage soon.
  - New docker images are a bit leaner.  I'm not using the new images by Tobias Bergkvist yet but I hope to by the next release.
  - And finally I'm disconnecting from tracking the same version numbers as SuiteSparse, it was convenient for a time but as of 3.4.0 pygraphblas versions will diverge.  I may still keep major numbers in sync with SuiteSparse major releases but the minor numbers are now unrelated.

pygraphblas 3.3.3

08 Aug 21:14
Compare
Choose a tag to compare

This release includes a lot of changes that mirror the changes in SuiteSparse 3.3.3 including:
  - per object wait() methods like Matrix.wait()  - apply_first() and apply_second() methods for Matrix/Vector
  - FC32/64 complex types and their operations  - all the new 3.3.3 bitwise operations  - all the deprecated GxB->GrB renames in prep for 4.0 removal  - Matrix/Vector removeElement support with del statement

And a lot of bug fixes!  Many thanks to Márton Elekes and Gabor Szarnyas for hunting down some of the issues and of course to Tim Davis for his very detailed explanations.

3.2.0

22 Feb 01:58
95a626f
Compare
Choose a tag to compare
Add string representation of matrices and vectors (#24)

Thank you!

pygraphblas 3.1.1.2

15 Dec 20:46
Compare
Choose a tag to compare

Added beginning of jupyter notebooks tutorial. Fixed several bugs found during translation of LAGraph algorithms.

3.1.1.1

23 Nov 16:48
Compare
Choose a tag to compare

Targets SuiteSparse 3.1.1.

beta release to go along with SS 3.0.1

29 Jul 02:24
Compare
Choose a tag to compare
v3.0.1-beta1

some tweaks to dockerfile and readme.