Aleksandr Glyzov

Results 2 issues of Aleksandr Glyzov

Here is a minimal demonstration code: ```go package main import ( "fmt" "os" "gorgonia.org/tensor" ) func main() { a := tensor.New( tensor.WithShape(3, 2), tensor.WithBacking([]float64{1, 2, 3, 4, 5, 6}), )...

Here is a minimal failure demonstration: ```go package main import ( "fmt" "os" "gorgonia.org/tensor" ) func main() { m := tensor.New( tensor.WithShape(2, 2), tensor.WithBacking([]float64{1, 2, 3, 4}), ) x, err...