Skip to content
Merged
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
3 changes: 2 additions & 1 deletion index.bs
Original file line number Diff line number Diff line change
Expand Up @@ -3429,7 +3429,7 @@ partial dictionary MLOpSupportLimits {
- *add*: Add the values of the two input tensors, element-wise.
- *sub*: Subtract the values of the second input tensor from the values of the first input tensor, element-wise.
- *mul*: Multiply the values of the two input tensors, element-wise.
- *div*: Divide the values of the first input tensor with the values of the second tensor, element-wise.
- *div*: Divide the values of the first input tensor with the values of the second tensor, element-wise. Integer types are truncated toward zero.
- *max*: Select the greater values of the two input tensors, element-wise.
- *min*: Select the lesser values of the two input tensors, element-wise.
- *pow*: Compute the values of the values of the first input tensor to the power of the values of the second input tensor, element-wise.
Expand Down Expand Up @@ -8436,6 +8436,7 @@ partial dictionary MLOpSupportLimits {
vy1 = vx0y1 * (1 - tx) + vx1y1 * tx
output tensor value = vy0 * (1 - ty) + vy1 * ty
```

</dl>

: <dfn>scales</dfn>
Expand Down