Releases: derwind/mynumpy
Releases · derwind/mynumpy
v0.7
05 Mar 17:24
Compare
Sorry, something went wrong.
No results found
Added
eye
allclose
ndarray.conj
ndarray.copy
ndarray.astype
ndarray.tolist
linalg
norm
matrix_rank for real matrices
svd for real matrices
Improved
v0.6
02 Mar 11:56
Compare
Sorry, something went wrong.
No results found
Added
ndarray.dtype
ndarray.real
support math functions
Improved
einsum for three or more operands
zeros_like and ones_like inherit original dtype
v0.5
14 May 15:54
Compare
Sorry, something went wrong.
No results found
Roughly implemented __getitem__ and __setitem__ (not including fancy indexing)
v0.4
11 May 15:58
Compare
Sorry, something went wrong.
No results found
Improved broadcast
Fixed reshape
v0.3
02 May 08:20
Compare
Sorry, something went wrong.
No results found
Added
Improved
Improved einsum:
trace
inner product
transpose
v0.2
30 Apr 13:29
Compare
Sorry, something went wrong.
No results found
Roughly implemented einsum
vector, matrix -> vector
matrix, matrix -> matrix
higher order tensor, higher order tensor -> higher order tensor
But, some basic functionalities includingtrace, inner product are not implemented.
v0.1
29 Apr 17:44
Compare
Sorry, something went wrong.
No results found
Implemented mynumpy.ndarray's:
__str__
__repr__
__eq__
__ne__
__add__
__sub__
__mul__
__matmul__ (limited)
__truediv__
__len__
ndim
shape
size
T
flatten
reshape
and mynumpy's:
Note that the broadcasting is very restricted, i.e., only a tensor + a scaler is supported.