Randall O'Reilly
Randall O'Reilly
ok.. I'll try to take a look in a few days. Meanwhile in the future, please run your code through gofmt -- that check is failing on test.
ps. thanks for submitting these fixes -- much appreciated!
Hmm. I haven't tested the docker setup at all -- it could well be entirely out of date. If you or someone else happens to be proficient with docker and...
I'm not really sure about the python side but anything that is fully contained and managed on the Go side should function as usual -- so if you have a...
sorry this is so late in responding: there is nothing about gopy that would be arm64 specific I think -- the tests seem to work fine on arm64 as far...
is that a new post-GIL thing? I don't know anything about that except that it has been announced. In any case, the go side should be fully robust to parallel...
this should be a relatively straightforward thing to add..
still not supported in new version...
Here's a bit more explanation of the logic: https://github.com/goki/ki/wiki/Naming If you need a solid "Go" motivation: the single strongest feature of Go is simplicity, and the standard naming conventions are...
Here's an example: ``` func (ts *Tensor) SizeTry() ([]int64, error) { ... } func (ts *Tensor) Size() []int64 { ... } ``` So, as a user, if you think you...