Skip to content

Releases: Traxar/SPaDE

v0.0.3

29 May 07:02

Choose a tag to compare

v0.0.3 Pre-release
Pre-release

This release mostly serves to bump zig versions.

Added first draft of sparse tensors.

v0.0.2

10 Feb 00:57

Choose a tag to compare

v0.0.2 Pre-release
Pre-release

zig 0.13.0

features:

lazy diagonals with diag

This allows the user to operate on diagonals of a tensor. This is implemented in a lazy way, meaning that no memory is changed by selecting a diagonal, instead the returned tensor simply references the entries on the diagonal of the underlying tensor. This can be arbitrarily combined with f as well as any of the other lazy operations (t, sub, clamp).

improved inplace operation detection

This allows the user to perform various types of inplace operations, which previously were considered illegal. The only illegal operations remaining, are the ones, that depend on the order of their computation and thus being invalid anyway.

v0.0.1

30 Dec 11:39

Choose a tag to compare

v0.0.1 Pre-release
Pre-release

zig 0.13.0

Features the basics workings of dense tensors.
This release is meant for demo purposes.