Nothing
#####
## DO NOT EDIT THIS FILE!! EDIT THE SOURCE INSTEAD: rsrc_tree/atoms/max.R
#####
## CVXPY SOURCE: atoms/max.py
## MaxEntries -- maximum entry of an expression, axis-aware
MaxEntries <- new_class("MaxEntries", parent = AxisAtom, package = "CVXR",
constructor = function(x, axis = NULL, keepdims = FALSE, id = NULL) {
if (FALSE) new_object(S7_object()) ## S7 static-check guard
if (is.null(id)) id <- next_expr_id()
x <- as_expr(x)
if (!is.null(axis)) .validate_axis(axis, length(.shape(x)))
shape <- .axis_shape(.shape(x), axis, keepdims)
obj <- .fast_new(MaxEntries, S7_object(),
id = as.integer(id),
.cache = new.env(parent = emptyenv()),
args = list(x),
shape = shape,
axis = axis,
keepdims = keepdims
)
validate_arguments(obj)
obj
}
)
# -- bounds: max reduction along axis (#3080) ---------------------
## CVXPY SOURCE: max.py:88-91. CVXR axis is 1-based -> numpy = 2 - axis;
## reshape the reduced bounds to the atom's 2D shape (cf. SumEntries).
method(bounds_from_args, MaxEntries) <- function(x) {
b <- get_bounds(.args(x)[[1L]])
npaxis <- if (is.null(x@axis)) NULL else 2L - x@axis
rb <- max_reduction_bounds(b[[1L]], b[[2L]], axis = npaxis, keepdims = x@keepdims)
lb <- rb[[1L]]; ub <- rb[[2L]]
dim(lb) <- .shape(x); dim(ub) <- .shape(x)
list(lb, ub)
}
# -- sign: same as arg --------------------------------------------
method(sign_from_args, MaxEntries) <- function(x) {
list(is_nonneg = is_nonneg(.args(x)[[1L]]),
is_nonpos = is_nonpos(.args(x)[[1L]]))
}
# -- curvature: convex --------------------------------------------
method(is_atom_convex, MaxEntries) <- function(x) TRUE
method(is_atom_concave, MaxEntries) <- function(x) FALSE
# -- log-log: convex only (CVXPY max.py) -------------------------
method(is_atom_log_log_convex, MaxEntries) <- function(x) TRUE
method(is_atom_log_log_concave, MaxEntries) <- function(x) FALSE
# -- monotonicity: always increasing ------------------------------
method(is_incr, MaxEntries) <- function(x, idx, ...) TRUE
method(is_decr, MaxEntries) <- function(x, idx, ...) FALSE
# -- PWL ----------------------------------------------------------
method(is_pwl, MaxEntries) <- function(x) is_pwl(.args(x)[[1L]])
# -- numeric ------------------------------------------------------
method(numeric_value, MaxEntries) <- function(x, values, ...) {
v <- values[[1L]]
if (is.null(x@axis)) {
matrix(max(v), 1L, 1L)
} else if (x@axis == 2L) {
res <- apply(v, 2L, max)
if (x@keepdims) matrix(res, nrow = 1L) else matrix(res, nrow = 1L)
} else {
res <- apply(v, 1L, max)
if (x@keepdims) matrix(res, ncol = 1L) else matrix(res, ncol = 1L)
}
}
# -- graph_implementation: stub -----------------------------------
method(graph_implementation, MaxEntries) <- function(x, arg_objs, shape, data = NULL, ...) {
cli_abort("graph_implementation for {.cls MaxEntries} not yet implemented.")
}
# -- .column_grad: indicator at the largest index -----------------
## CVXPY SOURCE: atoms/max.py:69-89 (max._column_grad).
## Subgradient: 1 at the (first) argmax, 0 elsewhere. .grad(MaxEntries)
## inherits from .grad(AxisAtom), which calls this per fiber.
method(.column_grad, MaxEntries) <- function(x, value, ...) {
v <- as.numeric(value)
D <- numeric(length(v))
D[which.max(v)] <- 1
D
}
#' Maximum entry of an expression
#'
#' @param x An Expression
#' @param axis NULL (all), 1 (row-wise), or 2 (column-wise)
#' @param keepdims Logical
#' @returns A MaxEntries atom
#' @export
max_entries <- function(x, axis = NULL, keepdims = FALSE) {
MaxEntries(x, axis, keepdims)
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.