mirror of
https://github.com/pytorch/pytorch.git
synced 2025-10-21 05:34:18 +08:00
Fix incorrect param names in get_testing_overrides (#87625)
This PR fixes incorrect parameter names for lambda in `get_testing_overrides()` Pull Request resolved: https://github.com/pytorch/pytorch/pull/87625 Approved by: https://github.com/kit1980
This commit is contained in:
committed by
PyTorch MergeBot
parent
d4aa811593
commit
0fab8df0b6
@ -416,7 +416,7 @@ def get_testing_overrides() -> Dict[Callable, Callable]:
|
||||
torch.concatenate: lambda tensors, dim=0, out=None: -1, # alias for torch.concatenate
|
||||
torch.cdist: lambda x1, x2, p=2.0, compute_mode='use_mm_for_euclid_dist_if_necessary': -1,
|
||||
torch.ceil: lambda input, out=None: -1,
|
||||
torch.celu: lambda input, alhpa=1., inplace=False: -1,
|
||||
torch.celu: lambda input, alpha=1., inplace=False: -1,
|
||||
torch.chain_matmul: lambda *matrices, out=None: -1,
|
||||
torch.channel_shuffle: lambda input, groups : -1,
|
||||
torch.cholesky: lambda input, upper=False, out=None: -1,
|
||||
@ -572,7 +572,7 @@ def get_testing_overrides() -> Dict[Callable, Callable]:
|
||||
torch.grid_sampler_2d: lambda input, grid, interpolation_mode, padding_mode, align_corners: -1,
|
||||
torch.grid_sampler_3d: lambda input, grid, interpolation_mode, padding_mode, align_corners: -1,
|
||||
torch.group_norm: lambda input, num_groups, weight=None, bias=None, eps=1e-05, cudnn_enabled=True: -1,
|
||||
torch.gru: lambda input, hx, params, has_biases, num_layers, gropout, train, bidirectional, batch_first: -1,
|
||||
torch.gru: lambda input, hx, params, has_biases, num_layers, dropout, train, bidirectional, batch_first: -1,
|
||||
torch.gru_cell: lambda input, hx, w_ih, w_hh, b_ih=None, b_hh=None: -1,
|
||||
torch.gt: lambda input, other, out=None: -1,
|
||||
torch.greater: lambda input, other, out=None: -1,
|
||||
|
Reference in New Issue
Block a user