Skip to content

Releases: libmir/mir

upgrade mir-algorithm version

25 Oct 17:31
@9il 9il
f54c721
Compare
Choose a tag to compare
v3.0.0

upgrade mir-algorithm version (#400)

Upgrade ndslice API

09 Sep 16:27
@9il 9il
427e0e9
Compare
Choose a tag to compare
upgrade ndslice api (#397)

* upgrade ndslice api

* fix dub

* fix hoffman and appveyor

* fix example

* fix circle ci

* fix circle ci

* ditto

* ditto

New GLAS API, Native Complex Numbers

17 Oct 14:56
@9il 9il
Compare
Choose a tag to compare
switch to native complex numbers (#367)

* rework glas

* add const

* use native complex numbers

* remove complex and update sum

* fix style

Matrix Multiplication, GSoC

23 Sep 10:30
@9il 9il
Compare
Choose a tag to compare

Changes since v0.15.0

  • GLAS part 1 was added. This is generic BLAS implementation. Single thread for now.
    • GLAS Level 3 GEMM[1] and SYMM was added. It implements GEMM, SYMM and HEMM BLAS functionality. It is fully optimised. See also Mir GLAS vs OpenBLAS benchmark.
    • GLAS Level 1 was added. It contains full BLAS Level 1 api except rotg. It is partially optimised for now, but much faster then common loops.
    • Experimental GLAS Level 2 GEMV[2] was added. It implements (S/D)GEMV BLAS functionality. It is partially optimised for now, but faster then common loops.
  • Tinflex and discrete RNGs implementations was added. This is GSoC project by @wilzbach. See also the blog post.
  • A couple of new functions was added to ndslice.
  • ndslice.algorithm was added. It is partially optimised for now, but much faster then common loops.
  • Mir requires LDC compiler since this release. DMD is not supported anymore.
  • Mir organization is home for dcompute project by @thewilsonator. This project is designed to work with LDC to enable native execution of D on GPUs (and other more exotic targets of OpenCL).

[1] - general matrix-matrix multiplication.
[1] - general matrix-vector multiplication.

Sparse Tensors

23 Apr 21:07
@9il 9il
Compare
Choose a tag to compare

New packages

  • mir.sparse Sparse Tensors
    • Sparse - DOK format
    • Different ranges for COO format
    • CompressedTensor - CSR/CSC formats
  • mir.sparse.blas - Sparse BLAS for CompressedTensor
  • mir.blas - this is slow snail, it is for experiments with BLAS API. Don't use for now.
  • mir.model.lda.hoffman - Online variational Bayes for latent Dirichlet allocation (Online VB LDA) for sparse documents. LDA is used for topic modeling.

API Changes

  • mir.las.sum was moved to mir.sum.

Examples

  • lda_hoffman_sparse is a single-batch LDA example with a huge dictionary.

Addition

Sebastian Wilzbach has done a huge work on infrastructure setup. Arch package was added.

Bugs fixed

See fixed bugs for ndslice.

Contributors are wanted!

See our TODO List.
Mir is very young and we are open for contributing to source code, documentation, examples and benchmarks.