File size: 1,569 Bytes
8c31d70 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 |
# SPDX-FileCopyrightText: Copyright (c) 2025 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
# SPDX-License-Identifier: Apache-2.0
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# Functions for performing operations with broadcasting to the right axis
#
# Example
# input1: tensor of size (N1, N2)
# input2: tensor of size (N1, N2, N3, N4)
# batch_mul(input1, input2) = input1[:, :, None, None] * input2
#
# If the common dimensions don't match, we raise an assertion error.
from torch import Tensor
def common_broadcast(x: Tensor, y: Tensor) -> tuple[Tensor, Tensor]:
ndims1 = x.ndim
ndims2 = y.ndim
common_ndims = min(ndims1, ndims2)
for axis in range(common_ndims):
assert x.shape[axis] == y.shape[axis], "Dimensions not equal at axis {}".format(axis)
if ndims1 < ndims2:
x = x.reshape(x.shape + (1,) * (ndims2 - ndims1))
elif ndims2 < ndims1:
y = y.reshape(y.shape + (1,) * (ndims1 - ndims2))
return x, y
def batch_mul(x: Tensor, y: Tensor) -> Tensor:
x, y = common_broadcast(x, y)
return x * y
|