summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--numpy/core/src/umath/loops_arithmetic.dispatch.c.src12
1 files changed, 6 insertions, 6 deletions
diff --git a/numpy/core/src/umath/loops_arithmetic.dispatch.c.src b/numpy/core/src/umath/loops_arithmetic.dispatch.c.src
index 19e05f2b5..1ddf7c3b1 100644
--- a/numpy/core/src/umath/loops_arithmetic.dispatch.c.src
+++ b/numpy/core/src/umath/loops_arithmetic.dispatch.c.src
@@ -22,17 +22,17 @@
** Defining the SIMD kernels
*
* Floor division of signed is based on T. Granlund and P. L. Montgomery
- * “Division by invariant integers using multiplication(see [Figure 6.1]
+ * "Division by invariant integers using multiplication(see [Figure 6.1]
* http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.1.2556)"
* For details on TRUNC division see simd/intdiv.h for more clarification
***********************************************************************************
- ** Figure 6.1: Signed division by run–time invariant divisor, rounded towards -INF
+ ** Figure 6.1: Signed division by run-time invariant divisor, rounded towards -INF
***********************************************************************************
* For q = FLOOR(a/d), all sword:
- * sword −dsign = SRL(d, N − 1);
- * uword −nsign = (n < −dsign);
- * uword −qsign = EOR(−nsign, −dsign);
- * q = TRUNC((n − (−dsign ) + (−nsign))/d) − (−qsign);
+ * sword -dsign = SRL(d, N - 1);
+ * uword -nsign = (n < -dsign);
+ * uword -qsign = EOR(-nsign, -dsign);
+ * q = TRUNC((n - (-dsign ) + (-nsign))/d) - (-qsign);
********************************************************************************/
#if NPY_SIMD