Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion spec/API_specification/elementwise_functions.md
Original file line number Diff line number Diff line change
Expand Up @@ -495,7 +495,7 @@ Calculates the division for each element `x1_i` of the input array `x1` with the
- If `x1_i` is either `+infinity` or `-infinity` and `x2_i` is either `+infinity` or `-infinity`, the result is `NaN`.
- If `x1_i` is either `+0` or `-0` and `x2_i` is either `+0` or `-0`, the result is `NaN`.
- If `x1_i` is `+0` and `x2_i` is greater than `0`, the result is `+0`.
- If `x1_i` is `-0` and `x2_i` is greater than `0`, the result `-0`.
- If `x1_i` is `-0` and `x2_i` is greater than `0`, the result is `-0`.
- If `x1_i` is `+0` and `x2_i` is less than `0`, the result is `-0`.
- If `x1_i` is `-0` and `x2_i` is less than `0`, the result is `+0`.
- If `x1_i` is greater than `0` and `x2_i` is `+0`, the result is `+infinity`.
Expand Down