mirror of
https://github.com/ROCm/jax.git
synced 2025-04-23 22:26:04 +00:00
73 lines
1.8 KiB
Python
73 lines
1.8 KiB
Python
# Copyright 2018 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
|
|
#
|
|
# 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.
|
|
|
|
from __future__ import absolute_import
|
|
|
|
from .core import JaxTuple, lattice_join
|
|
from .interpreters.partial_eval import Primitive
|
|
from .tree_util import register_pytree_node
|
|
from .util import safe_map
|
|
|
|
map = safe_map
|
|
|
|
jaxval_adders = {}
|
|
|
|
def add_jaxtuples(xs, ys):
|
|
assert len(xs) == len(ys)
|
|
return JaxTuple(map(add_impl, xs, ys))
|
|
|
|
jaxval_adders[JaxTuple] = add_jaxtuples
|
|
|
|
|
|
def add_jaxvals(x, y):
|
|
return add_jaxvals_p.bind(x, y)
|
|
|
|
add_jaxvals_p = Primitive('add_any')
|
|
|
|
@add_jaxvals_p.def_impl
|
|
def add_impl(xs, ys):
|
|
# assert type(xs) == type(ys), (xs, ys)
|
|
return jaxval_adders[type(xs)](xs, ys)
|
|
|
|
@add_jaxvals_p.def_abstract_eval
|
|
def add_abstract(xs, ys):
|
|
return lattice_join(xs, ys)
|
|
|
|
def zeros_like_impl_jaxtuple(xs):
|
|
return JaxTuple(map(zeros_like_impl, xs))
|
|
|
|
jaxval_zeros_likers = {}
|
|
jaxval_zeros_likers[JaxTuple] = zeros_like_impl_jaxtuple
|
|
|
|
|
|
def zeros_like_jaxval(val):
|
|
return zeros_like_p.bind(val)
|
|
|
|
zeros_like_p = Primitive('zeros_like')
|
|
|
|
@zeros_like_p.def_impl
|
|
def zeros_like_impl(example):
|
|
return jaxval_zeros_likers[type(example)](example)
|
|
|
|
zeros_like_p.def_abstract_eval(lambda x: x)
|
|
|
|
|
|
class Zero(object):
|
|
def __repr__(self):
|
|
return "Zero"
|
|
|
|
zero = Zero()
|
|
|
|
register_pytree_node(Zero, lambda z: ((), None), lambda _, xs: zero)
|