kurtamohler
kurtamohler
### Description Change the type of the `dim` arg for `std_mean/var_mean/nanmean/nansum` to `int[1]?` in `native_functions.yaml` ### Issue Part of #29137 ### Testing
This change makes `np.reciprocal(0+0j)` return the same result as `1 / np.array(0+0j)`. See #17425
Fixes #68972 cc @EikanWang @jgong5 @wenzhe-nrv @sanchitintel
`TORCH_CHECK_TENSOR_ALL(cond, ...)` is a wrapper around `TORCH_CHECK` which allows the condition argument to be a tensor, batched or unbatched. `cond` can be a boolean tensor of any size. If any...
Stack from [ghstack](https://github.com/ezyang/ghstack) (oldest at bottom): * __->__ #119507 * #120455 Part of #97856
RFC for a consistent C++/Python message logging system in PyTorch Feature was requested in https://github.com/pytorch/pytorch/issues/72948
Stack from [ghstack](https://github.com/ezyang/ghstack) (oldest at bottom): * __->__ #126129 Part of #109833 cc @voznesenskym @penguinwu @EikanWang @jgong5 @Guobing-Chen @XiaobingSuper @zhuhaozhe @blzheng @wenzhe-nrv @jiayisunx @chenyang78 @kadeng @chauhang
Would it be possible to convert a `pyspiel` game's `State` object to a dictionary of array-likes and back again, in an efficient way? If that is currently not supported, would...