Source code for cr.sparse._src.opt.projections
# Copyright 2021 CR-Suite Development Team
#
# 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.
import jax.numpy as jnp
norm = jnp.linalg.norm
from cr.nimble import norms_l2_cw
[docs]def project_to_ball(x, radius=1.0):
"""Projects a vector to the :math:`\\ell_2` ball of a specified radius.
"""
x_norm = norm(x)
factor = radius / x_norm
return jnp.where(x_norm > radius, factor * x, x)
[docs]def project_to_box(x, radius=1.0):
"""Projects a vector to the box (:math:`\\ell_{\\infty}` ball) of a specified radius.
"""
abs_x = jnp.abs(x)
factors = jnp.maximum(abs_x, radius)
factors = radius / factors
return x * factors
[docs]def project_to_real_upper_limit(x, limit=1.0):
"""Projects a (possibly complex) vector to its real part with an upper limit on each entry.
"""
return jnp.minimum(jnp.real(x), limit)