From 4337a2f235fac172d20e41fab8d0438e7800a951 Mon Sep 17 00:00:00 2001 From: Bartosz Sledz Date: Mon, 12 Apr 2021 17:04:33 +0200 Subject: [PATCH] Fix specification of result sign (#5188) --- docs/ops/arithmetic/FloorMod_1.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/ops/arithmetic/FloorMod_1.md b/docs/ops/arithmetic/FloorMod_1.md index 26986df0f3c..042ffb7f428 100644 --- a/docs/ops/arithmetic/FloorMod_1.md +++ b/docs/ops/arithmetic/FloorMod_1.md @@ -13,7 +13,7 @@ As a first step input tensors *a* and *b* are broadcasted if their shapes differ o_{i} = a_{i} % b_{i} \f] -*FloorMod* operation computes a reminder of a floored division. It is the same behaviour like in Python programming language: `floor(x / y) * y + floor_mod(x, y) = x`. The sign of the result is equal to a sign of a dividend. The result of division by zero is undefined. +*FloorMod* operation computes a reminder of a floored division. It is the same behaviour like in Python programming language: `floor(x / y) * y + floor_mod(x, y) = x`. The sign of the result is equal to a sign of a divisor. The result of division by zero is undefined. **Attributes**: