Mario Lezcano Casado
Mario Lezcano Casado
When one writes code with spaces like ``` ``input = L @ L.T`` ``` this is rendered in a rather awkward as  Interestingly enough, this problem does not happen...
The spacing when nesting a `.. code` directive inside a `warning` or a `note` is not rendered correctly. See for example the end of the first warning in https://pytorch.org/docs/stable/generated/torch.qr.html ...
The current template puts too much space when a list is rendered within a `.. note::` directive. See for example the first note in https://pytorch.org/docs/1.9.0/generated/torch.svd.html I believe that the spacing...
Stack from [ghstack](https://github.com/ezyang/ghstack) (oldest at bottom): * __->__ #125973 The previous fix was not general enough. Fixes https://github.com/pytorch/pytorch/pull/125952
In [this commit](https://github.com/openai/triton/commit/133333123e37a561ec79d8b432c125e323f3f5de), yapf formats the long line ```python assert f32_backend.lower() in builder.options.allowed_dot_f32_backends, f"f32 _backend must be one of {builder.options.allowed_dot_f32_backends}. Got {f32_backend}" ``` within `semantic.py` as ```python assert f32_backend.lower( )...
Stack from [ghstack](https://github.com/ezyang/ghstack) (oldest at bottom): * __->__ #126872 We were calling backward on a tensor not a scalar...
Initial implementation using mma. Missing to test that it plays ball with the pipeliner.
The semantics of `%` in triton used to be type dependant (!!). With this PR, we make `%` always follow C semantics, similar to `//`. We update the type promotion...
I recently wrote some [documentation](https://triton-lang.org/main/python-api/triton-semantics.html) describing the triton promotion semantics. It turns out that part of it was not entirely correct. The reality is much murkier. The type promotion semantics...