2023-02-17 12:45:39 -08:00
|
|
|
# Copyright 2023 The JAX Authors.
|
|
|
|
#
|
|
|
|
# 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
|
|
|
|
#
|
|
|
|
# https://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.
|
|
|
|
"""Utilities for tracing stateful functions."""
|
|
|
|
|
[pallas] Fix the handling of captured consts
There was an attempt to handle consts captured by the kernel,
but it was incomplete and with errors: the calling convention was
wrong, and the support for handling consts along with scalar
prefetch and scratch values was incomplete.
I expanded the tests: one in pallas_tests.py and two tests
in tpu_pallas_test.py (to handle scalar prefetch, with and
without scratch inputs).
The calling convention now: `*scalar_refs, *consts, *ins, *outs, *scratch`.
This is different from before (`*consts, *scalar_refs, *ins, ...`) so that
it keeps the block arguments (consts, ins, outs) together and makes it
easier to write the lowering.
I will follow up with a cleanup PR for the handling of grid_mapping.
Here I attempted to minimize the changes.
2024-07-19 20:22:21 +03:00
|
|
|
from typing import Callable
|
|
|
|
|
2024-01-25 22:20:36 -08:00
|
|
|
from jax._src.interpreters import partial_eval as pe
|
2023-02-17 12:45:39 -08:00
|
|
|
from jax._src import core
|
|
|
|
from jax._src import linear_util as lu
|
|
|
|
from jax._src.state import AbstractRef
|
2024-07-11 19:24:22 +01:00
|
|
|
from jax._src.util import split_list, safe_map, safe_zip
|
2023-02-17 12:45:39 -08:00
|
|
|
from jax._src.state.primitives import ref_get
|
|
|
|
|
|
|
|
map, unsafe_map = safe_map, map
|
|
|
|
zip, unsafe_zip = safe_zip, zip
|
|
|
|
|
2024-07-11 19:24:22 +01:00
|
|
|
|
[pallas] Fix the handling of captured consts
There was an attempt to handle consts captured by the kernel,
but it was incomplete and with errors: the calling convention was
wrong, and the support for handling consts along with scalar
prefetch and scratch values was incomplete.
I expanded the tests: one in pallas_tests.py and two tests
in tpu_pallas_test.py (to handle scalar prefetch, with and
without scratch inputs).
The calling convention now: `*scalar_refs, *consts, *ins, *outs, *scratch`.
This is different from before (`*consts, *scalar_refs, *ins, ...`) so that
it keeps the block arguments (consts, ins, outs) together and makes it
easier to write the lowering.
I will follow up with a cleanup PR for the handling of grid_mapping.
Here I attempted to minimize the changes.
2024-07-19 20:22:21 +03:00
|
|
|
def hoist_consts_to_refs(
|
|
|
|
jaxpr: core.Jaxpr,
|
|
|
|
*,
|
|
|
|
index: int = 0,
|
|
|
|
make_abstract_ref: Callable[[core.AbstractValue], AbstractRef] = lambda aval: AbstractRef(aval)
|
|
|
|
) -> core.Jaxpr:
|
2024-07-11 19:24:22 +01:00
|
|
|
"""Hoists the constants in the given jaxpr into invars.
|
|
|
|
|
|
|
|
Args:
|
|
|
|
jaxpr: The jaxpr.
|
|
|
|
index: The index where the invars for the constants should be inserted.
|
|
|
|
By default, the new invars are inserted *before* any existing invars.
|
[pallas] Fix the handling of captured consts
There was an attempt to handle consts captured by the kernel,
but it was incomplete and with errors: the calling convention was
wrong, and the support for handling consts along with scalar
prefetch and scratch values was incomplete.
I expanded the tests: one in pallas_tests.py and two tests
in tpu_pallas_test.py (to handle scalar prefetch, with and
without scratch inputs).
The calling convention now: `*scalar_refs, *consts, *ins, *outs, *scratch`.
This is different from before (`*consts, *scalar_refs, *ins, ...`) so that
it keeps the block arguments (consts, ins, outs) together and makes it
easier to write the lowering.
I will follow up with a cleanup PR for the handling of grid_mapping.
Here I attempted to minimize the changes.
2024-07-19 20:22:21 +03:00
|
|
|
make_abstract_ref: a callable to construct an AbstractRef, or subtype
|
|
|
|
thereof, from a constant AbstractValue.
|
2024-07-11 19:24:22 +01:00
|
|
|
|
|
|
|
Returns:
|
|
|
|
A new jaxpr where the constants were hoisted into invars as ``Ref``s.
|
|
|
|
"""
|
|
|
|
if not jaxpr.constvars:
|
|
|
|
return jaxpr # Nothing to hoist.
|
|
|
|
|
|
|
|
is_const_ref = [
|
|
|
|
isinstance(var.aval, AbstractRef) for var in jaxpr.constvars
|
|
|
|
]
|
|
|
|
const_avals = [
|
[pallas] Fix the handling of captured consts
There was an attempt to handle consts captured by the kernel,
but it was incomplete and with errors: the calling convention was
wrong, and the support for handling consts along with scalar
prefetch and scratch values was incomplete.
I expanded the tests: one in pallas_tests.py and two tests
in tpu_pallas_test.py (to handle scalar prefetch, with and
without scratch inputs).
The calling convention now: `*scalar_refs, *consts, *ins, *outs, *scratch`.
This is different from before (`*consts, *scalar_refs, *ins, ...`) so that
it keeps the block arguments (consts, ins, outs) together and makes it
easier to write the lowering.
I will follow up with a cleanup PR for the handling of grid_mapping.
Here I attempted to minimize the changes.
2024-07-19 20:22:21 +03:00
|
|
|
var.aval if is_ref else make_abstract_ref(var.aval)
|
2024-07-11 19:24:22 +01:00
|
|
|
for is_ref, var in zip(is_const_ref, jaxpr.constvars)
|
|
|
|
]
|
|
|
|
in_avals = [var.aval for var in jaxpr.invars]
|
|
|
|
in_avals[index:index] = const_avals
|
2023-02-17 12:45:39 -08:00
|
|
|
|
|
|
|
def _hoist(*consts_args):
|
2024-07-11 19:24:22 +01:00
|
|
|
args0, all_consts, args1 = split_list(
|
|
|
|
consts_args, [index, len(const_avals)]
|
|
|
|
)
|
2023-02-17 12:45:39 -08:00
|
|
|
# We immediately read the const values out of the `Ref`s.
|
2024-07-11 19:24:22 +01:00
|
|
|
all_consts = [
|
|
|
|
c if is_ref else ref_get(c, ())
|
|
|
|
for is_ref, c in zip(is_const_ref, all_consts)
|
|
|
|
]
|
|
|
|
return core.eval_jaxpr(jaxpr, all_consts, *args0, *args1)
|
|
|
|
|
2024-01-25 22:20:36 -08:00
|
|
|
hoisted_jaxpr, _, consts, () = pe.trace_to_jaxpr_dynamic(
|
2023-02-17 12:45:39 -08:00
|
|
|
lu.wrap_init(_hoist), in_avals)
|
|
|
|
assert not consts, "All consts should have been converted to refs"
|
|
|
|
return hoisted_jaxpr
|
|
|
|
|
2024-07-11 19:24:22 +01:00
|
|
|
|
2023-02-17 12:45:39 -08:00
|
|
|
def val_to_ref_aval(x) -> AbstractRef:
|
|
|
|
aval = core.raise_to_shaped(core.get_aval(x))
|
|
|
|
if type(aval) is not core.ShapedArray:
|
2024-07-11 19:24:22 +01:00
|
|
|
raise TypeError(f"can't make ref from {x}")
|
2023-02-17 12:45:39 -08:00
|
|
|
return AbstractRef(aval)
|