Source code for qwix._src.core.dot
# Copyright 2025 Google LLC
#
# 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.
"""Quantized jax.numpy.dot with subchannel support."""
from typing import Callable
import jax
from qwix._src.core import dot_general
from qwix._src.core import qarray
[docs]
def dot(
a: qarray.MaybeQArray,
b: qarray.MaybeQArray,
precision: jax.lax.PrecisionLike = None,
preferred_element_type: jax.typing.DTypeLike | None = None,
out_sharding=None,
*,
_qwix_dot_general: Callable[..., jax.Array] = dot_general.dot_general,
):
"""jnp.dot with QArray support."""
if a.ndim == 0 or b.ndim == 0:
contract_dims = ((), ())
elif b.ndim == 1:
contract_dims = ((a.ndim - 1,), (0,))
else:
contract_dims = ((a.ndim - 1,), (b.ndim - 2,))
return _qwix_dot_general(
a,
b,
dimension_numbers=(contract_dims, ((), ())),
precision=precision,
preferred_element_type=preferred_element_type,
out_sharding=out_sharding,
)