Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions NAMESPACE
Original file line number Diff line number Diff line change
Expand Up @@ -691,6 +691,7 @@ export(torch_kaiser_window)
export(torch_kron)
export(torch_kthvalue)
export(torch_lcm)
export(torch_ldexp)
export(torch_le)
export(torch_lerp)
export(torch_less)
Expand Down
22 changes: 22 additions & 0 deletions R/gen-namespace-docs.R
Original file line number Diff line number Diff line change
Expand Up @@ -6368,6 +6368,28 @@ NULL
NULL


#' Ldexp
#'
#' @section ldexp(input, other, out=NULL) -> Tensor :
#'
#' Multiplies `input` by \eqn{2^{other}}.
#'
#' \deqn{
#' \text{out}_i = \text{input}_i * 2^{\text{other}_i}
#' }
#'
#' Typically this function is used to construct floating point numbers by multiplying
#' mantissas in `input` with integral powers of two created from the exponents in `other`.
#'
#' @param self (Tensor) the tensor of mantissas
#' @param other (Tensor) the tensor of exponents, must be an integer dtype
#'
#' @name torch_ldexp
#'
#' @export
NULL


#' Kaiser_window
#'
#' @section kaiser_window(window_length, periodic=TRUE, beta=12.0, *, dtype=None, layout=torch.strided, device=None, requires_grad=FALSE) -> Tensor :
Expand Down
29 changes: 29 additions & 0 deletions man/torch_ldexp.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading