Skip to content

Latest commit

 

History

History
35 lines (29 loc) · 1.37 KB

README.md

File metadata and controls

35 lines (29 loc) · 1.37 KB
  • Stands for vectorized N-dimensional numerical arrays. Tensor / Nd Array library.

  • Currently capable of creating CPU Tensors of type T and performing

    • broadcasted algebraic operations
    • Nd matrix multiplication (naive)
    • 1d and 2d convolution / cross-correlation (naive) with strides
    • reduction operations such as sum, product, max, min
    • transformations such as view/reshape, permute/transpose, flip, expand, pad, slice, squeeze, unsqueeze
  • Clone the repo and run examples

cargo run -r --example <example_name>
  • Use as library
cargo add --git https://github.com/shettysach/veNum
credits
resources