|
7564 | 7564 | device_check: NoCheck # TensorIterator
|
7565 | 7565 | variants: method, function
|
7566 | 7566 |
|
7567 |
| -# The following quantile signatures are DEPRECATED in favor of the new ones with the interpolation kwarg. |
7568 |
| -- func: quantile.scalar_out(Tensor self, float q, int? dim=None, bool keepdim=False, *, Tensor(a!) out) -> Tensor(a!) |
7569 |
| - |
7570 |
| -- func: quantile.scalar(Tensor self, float q, int? dim=None, bool keepdim=False) -> Tensor |
7571 |
| - variants: method, function |
7572 |
| - |
7573 |
| -- func: quantile.out(Tensor self, Tensor q, int? dim=None, bool keepdim=False, *, Tensor(a!) out) -> Tensor(a!) |
7574 |
| - |
7575 |
| -- func: quantile(Tensor self, Tensor q, int? dim=None, bool keepdim=False) -> Tensor |
7576 |
| - variants: method, function |
7577 |
| - |
7578 |
| -- func: nanquantile.scalar_out(Tensor self, float q, int? dim=None, bool keepdim=False, *, Tensor(a!) out) -> Tensor(a!) |
7579 |
| - |
7580 |
| -- func: nanquantile.scalar(Tensor self, float q, int? dim=None, bool keepdim=False) -> Tensor |
7581 |
| - variants: method, function |
7582 |
| - |
7583 |
| -- func: nanquantile.out(Tensor self, Tensor q, int? dim=None, bool keepdim=False, *, Tensor(a!) out) -> Tensor(a!) |
7584 |
| - |
7585 |
| -- func: nanquantile(Tensor self, Tensor q, int? dim=None, bool keepdim=False) -> Tensor |
| 7567 | +- func: quantile(Tensor self, Tensor q, int? dim=None, bool keepdim=False, *, str interpolation='linear') -> Tensor |
7586 | 7568 | variants: method, function
|
7587 | 7569 |
|
7588 |
| -# To keep backward and forward compatibility, and to avoid ambiguity with the original signatures, dim, keepdim and interpolation |
7589 |
| -# parameters are required for now. Once the deprecated signatures are removed they will be made optional. |
7590 |
| -- func: quantile.new_scalar_out(Tensor self, float q, int? dim, bool keepdim, *, str interpolation, Tensor(a!) out) -> Tensor(a!) |
| 7570 | +- func: quantile.out(Tensor self, Tensor q, int? dim=None, bool keepdim=False, *, str interpolation='linear', Tensor(a!) out) -> Tensor(a!) |
7591 | 7571 |
|
7592 |
| -- func: quantile.new_scalar(Tensor self, float q, int? dim, bool keepdim, *, str interpolation) -> Tensor |
| 7572 | +- func: quantile.scalar(Tensor self, float q, int? dim=None, bool keepdim=False, *, str interpolation='linear') -> Tensor |
7593 | 7573 | variants: method, function
|
7594 | 7574 |
|
7595 |
| -- func: quantile.new_out(Tensor self, Tensor q, int? dim, bool keepdim, *, str interpolation, Tensor(a!) out) -> Tensor(a!) |
| 7575 | +- func: quantile.scalar_out(Tensor self, float q, int? dim=None, bool keepdim=False, *, str interpolation='linear', Tensor(a!) out) -> Tensor(a!) |
7596 | 7576 |
|
7597 |
| -- func: quantile.new(Tensor self, Tensor q, int? dim, bool keepdim, *, str interpolation) -> Tensor |
| 7577 | +- func: nanquantile(Tensor self, Tensor q, int? dim=None, bool keepdim=False, *, str interpolation='linear') -> Tensor |
7598 | 7578 | variants: method, function
|
7599 | 7579 |
|
7600 |
| -- func: nanquantile.new_scalar_out(Tensor self, float q, int? dim, bool keepdim, *, str interpolation, Tensor(a!) out) -> Tensor(a!) |
| 7580 | +- func: nanquantile.out(Tensor self, Tensor q, int? dim=None, bool keepdim=False, *, str interpolation='linear', Tensor(a!) out) -> Tensor(a!) |
7601 | 7581 |
|
7602 |
| -- func: nanquantile.new_scalar(Tensor self, float q, int? dim, bool keepdim, *, str interpolation) -> Tensor |
| 7582 | +- func: nanquantile.scalar(Tensor self, float q, int? dim=None, bool keepdim=False, *, str interpolation='linear') -> Tensor |
7603 | 7583 | variants: method, function
|
7604 | 7584 |
|
7605 |
| -- func: nanquantile.new_out(Tensor self, Tensor q, int? dim, bool keepdim, *, str interpolation, Tensor(a!) out) -> Tensor(a!) |
7606 |
| - |
7607 |
| -- func: nanquantile.new(Tensor self, Tensor q, int? dim, bool keepdim, *, str interpolation) -> Tensor |
7608 |
| - variants: method, function |
| 7585 | +- func: nanquantile.scalar_out(Tensor self, float q, int? dim=None, bool keepdim=False, *, str interpolation='linear', Tensor(a!) out) -> Tensor(a!) |
7609 | 7586 |
|
7610 | 7587 | - func: sort.values(Tensor self, int dim=-1, bool descending=False, *, Tensor(a!) values, Tensor(b!) indices) -> (Tensor(a!) values, Tensor(b!) indices)
|
7611 | 7588 | device_check: NoCheck # TensorIterator
|
|
0 commit comments