BitwiseAnd#
Versioned name: BitwiseAnd-13
Category: Bitwise binary
Short description: BitwiseAnd performs a bitwise logical AND operation with two given tensors element-wise, applying multi-directional broadcast rules.
Detailed description: Before performing the operation, input tensors a and b are broadcasted if their shapes are different and the auto_broadcast
attribute is not none
. Broadcasting is performed according to the auto_broadcast
value.
After broadcasting input tensors a and b, BitwiseAnd performs a bitwise logical AND operation for each corresponding element in the given tensors, based on the following algorithm.
For boolean
type tensors, BitwiseAnd is equivalent to LogicalAnd.
If tensor is of any supported integer
type, for each element of the tensor:
Convert values from input tensors to their binary representation according to the input tensor datatype.
Perform a logical AND on each bit in the binary representation of values from a and b, where value
0
representsfalse
and value1
representstrue
.Convert the results of AND in binary representation to the input datatype.
Example 1 - BitwiseAnd output for boolean tensor:
# For given boolean inputs:
a = [True, False, False]
b = [True, True, False]
# Perform logical AND operation same as in LogicalAnd operator:
output = [True, False, False]
Example 2 - BitwiseAnd output for uint8 tensor:
# For given uint8 inputs:
a = [21, 120]
b = [3, 37]
# Create a binary representation of uint8:
# binary a: [00010101, 01111000]
# binary b: [00000011, 00100101]
# Perform bitwise AND of corresponding elements in a and b:
# [00000001, 00100000]
# Convert binary values to uint8:
output = [1, 32]
Attributes:
auto_broadcast
Description: specifies the rules used for auto-broadcasting of input tensors.
Range of values:
none - no auto-broadcasting is allowed, all input shapes must match,
numpy - numpy broadcasting rules, description is available in Broadcast Rules For Elementwise Operations,
pdpd - PaddlePaddle-style implicit broadcasting, description is available in Broadcast Rules For Elementwise Operations.
Type: string
Default value: “numpy”
Required: no
Inputs
1: A tensor of type T and arbitrary shape. Required.
2: A tensor of type T and arbitrary shape. Required.
Outputs
1: The result of element-wise BitwiseAnd operation. A tensor of type T and the same shape equal to the broadcasted shape of two inputs.
Types
T:
any supported integer or boolean type
.
Examples
Example 1: no broadcast
<layer ... type="BitwiseAnd">
<input>
<port id="0">
<dim>256</dim>
<dim>56</dim>
</port>
<port id="1">
<dim>256</dim>
<dim>56</dim>
</port>
</input>
<output>
<port id="2">
<dim>256</dim>
<dim>56</dim>
</port>
</output>
</layer>
Example 2: numpy broadcast
<layer ... type="BitwiseAnd">
<input>
<port id="0">
<dim>8</dim>
<dim>1</dim>
<dim>6</dim>
<dim>1</dim>
</port>
<port id="1">
<dim>7</dim>
<dim>1</dim>
<dim>5</dim>
</port>
</input>
<output>
<port id="2">
<dim>8</dim>
<dim>7</dim>
<dim>6</dim>
<dim>5</dim>
</port>
</output>
</layer>