gorgonia / tensor

package tensor provides efficient and generic n-dimensional arrays in Go that are useful for machine learning and deep learning purposes
Apache License 2.0
359 stars 49 forks source link

unable to get gorgonia.org/tensor@v0.9.10 ... #78

Closed jay-jayasimha closed 4 years ago

jay-jayasimha commented 4 years ago

I am trying to run a gorgonia app that import gorgonia/tensor. in trying to get the tensor v0.9.10, i am getting the following error... go: gorgonia.org/tensor: gorgonia.org/tensor@v0.9.10: parsing go.mod: go.mod:6: require github.com/apache/arrow/go/arrow: version "latest" invalid: must be of the form v1.2.3

I am running go version 1.13.6 on macOS Mojave

Any help with resolving this would be greatly appreciated. Thanks in advance - jay

chewxy commented 4 years ago

My bad... it looks like I did a Go mod tidy but then accidentally reverted the Go mod file

chewxy commented 4 years ago

@jay-jayasimha fixed. You can now get @v0.9.11

jay-jayasimha commented 4 years ago

Thanks @chewxy ! i have gone past the previous issue and am getting the following error:

../../pkg/mod/gorgonia.org/gorgonia@v0.9.13/blas.go:46:12: cannot use b (type BLAS) as type "gorgonia.org/tensor".BLAS in argument to "gorgonia.org/tensor".Use: BLAS does not implement "gorgonia.org/tensor".BLAS (missing Caxpy method)

Thanks!!

chewxy commented 4 years ago

There is no version v0.9.13.... I don't know where the issue might arise

jay-jayasimha commented 4 years ago

It is referring to gorgonia v0.9.13 and not tensor. I did get the latest tensor 0.9,11.

Thanks, Jay

chewxy commented 4 years ago

Will look into it

jay-jayasimha commented 4 years ago

Thanks !! Appreciate your help.

On Wed, Sep 9, 2020 at 3:03 PM Chewxy notifications@github.com wrote:

Will look into it

— You are receiving this because you were mentioned. Reply to this email directly, view it on GitHub https://github.com/gorgonia/tensor/issues/78#issuecomment-689845766, or unsubscribe https://github.com/notifications/unsubscribe-auth/AISYN7KQKQONAX6LZ5YORBDSE73TXANCNFSM4RAY6JXQ .

-- Thanks and with best wishes, Jay

strigi-form commented 4 years ago

Hello,

I think I have a related issue:

# gorgonia.org/gorgonia ../../gorgonia.org/gorgonia/blas.go:46:12: cannot use b (type BLAS) as type "gorgonia.org/tensor".BLAS in argument to "gorgonia.org/tensor".Use: BLAS does not implement "gorgonia.org/tensor".BLAS (missing Caxpy method)

FYI: NO ISSUE with tensor v0.9.9 (but same problem with tensor v0.9.10)

chewxy commented 4 years ago

Pushed a change to Gorgonia that fixes it. Will put out a new release now

jay-jayasimha commented 4 years ago

Thanks! all good!