![]() |
Blaze
3.6
|
Via the logical OR operator (i.e. operator||()) it is possible to perform an elementwise logical OR with dense vectors:
Note that it is necessary that both operands have exactly the same dimensions. Violating this precondition results in an exception. Also note that it is only possible to use vectors with the same transpose flag:
The logical OR operator (i.e. operator||()) can also be used to perform an elementwise logical OR with dense matrices:
Note that it is necessary that both operands have exactly the same dimensions. Violating this precondition results in an exception. It is possible to use any combination of row-major and column-major matrices. Note however that in favor of performance using two matrices with the same storage order is favorable.
Previous: Logical AND Next: Shared Memory Parallelization