View source: R/gen-namespace.R
torch_logical_or | R Documentation |
Logical_or
torch_logical_or(self, other)
self |
(Tensor) the input tensor. |
other |
(Tensor) the tensor to compute OR with |
Computes the element-wise logical OR of the given input tensors. Zeros are treated as FALSE
and nonzeros are
treated as TRUE
.
if (torch_is_installed()) {
torch_logical_or(torch_tensor(c(TRUE, FALSE, TRUE)), torch_tensor(c(TRUE, FALSE, FALSE)))
a = torch_tensor(c(0, 1, 10, 0), dtype=torch_int8())
b = torch_tensor(c(4, 0, 1, 0), dtype=torch_int8())
torch_logical_or(a, b)
## Not run:
torch_logical_or(a$double(), b$double())
torch_logical_or(a$double(), b)
torch_logical_or(a, b, out=torch_empty(4, dtype=torch_bool()))
## End(Not run)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.