Mario Lezcano Casado

Results 23 issues of Mario Lezcano Casado

When one writes code with spaces like ``` ``input = L @ L.T`` ``` this is rendered in a rather awkward as ![image](https://user-images.githubusercontent.com/3291265/123665647-620d4a00-d830-11eb-93fd-e9d789935683.png) 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 ![image](https://user-images.githubusercontent.com/3291265/123652280-12288600-d824-11eb-9365-b86e7b2e7ff5.png)...

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

open source
release notes: inductor

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...

open source
ciflow/trunk
topic: docs
release notes: dynamo
merging

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...