Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Boxiang Sun
cython
Commits
6b36a27e
Commit
6b36a27e
authored
Mar 29, 2009
by
Dag Sverre Seljebotn
Browse files
Options
Browse Files
Download
Plain Diff
merge
parents
35fd3ad0
2779f4bd
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
63 additions
and
19 deletions
+63
-19
Cython/Compiler/ExprNodes.py
Cython/Compiler/ExprNodes.py
+30
-19
tests/run/cdef_decorator_directives_T183.pyx
tests/run/cdef_decorator_directives_T183.pyx
+16
-0
tests/run/cdivision_CEP_516.pyx
tests/run/cdivision_CEP_516.pyx
+4
-0
tests/run/float_floor_division_T260.pyx
tests/run/float_floor_division_T260.pyx
+13
-0
No files found.
Cython/Compiler/ExprNodes.py
View file @
6b36a27e
...
...
@@ -4249,7 +4249,7 @@ class DivNode(NumBinopNode):
or
not
self
.
type
.
signed
or
self
.
type
.
is_float
)
if
not
self
.
cdivision
:
code
.
globalstate
.
use_utility_code
(
div_utility_code
.
specialize
(
self
.
type
))
code
.
globalstate
.
use_utility_code
(
div_
int_
utility_code
.
specialize
(
self
.
type
))
NumBinopNode
.
generate_evaluation_code
(
self
,
code
)
if
not
self
.
type
.
is_pyobject
and
code
.
globalstate
.
directives
[
'cdivision_warnings'
]:
self
.
generate_div_warning_code
(
code
)
...
...
@@ -4265,7 +4265,11 @@ class DivNode(NumBinopNode):
code
.
putln
(
"}"
)
def
calculate_result_code
(
self
):
if
self
.
cdivision
:
if
self
.
type
.
is_float
and
self
.
operator
==
'//'
:
return
"floor(%s / %s)"
%
(
self
.
operand1
.
result
(),
self
.
operand2
.
result
())
elif
self
.
cdivision
:
return
"(%s / %s)"
%
(
self
.
operand1
.
result
(),
self
.
operand2
.
result
())
...
...
@@ -4290,11 +4294,10 @@ class ModNode(DivNode):
self
.
cdivision
=
code
.
globalstate
.
directives
[
'cdivision'
]
or
not
self
.
type
.
signed
if
not
self
.
cdivision
:
if
self
.
type
.
is_int
:
code
.
globalstate
.
use_utility_code
(
mod_int_helper_macro
)
math_h_modifier
=
'__Pyx_INT'
code
.
globalstate
.
use_utility_code
(
mod_int_utility_code
.
specialize
(
self
.
type
))
else
:
math_h_modifier
=
self
.
type
.
math_h_modifier
code
.
globalstate
.
use_utility_code
(
mod_utility_code
.
specialize
(
self
.
type
,
math_h_modifier
=
math_h_modifier
))
code
.
globalstate
.
use_utility_code
(
mod_float_utility_code
.
specialize
(
self
.
type
,
math_h_modifier
=
self
.
type
.
math_h_modifier
))
NumBinopNode
.
generate_evaluation_code
(
self
,
code
)
if
not
self
.
type
.
is_pyobject
and
code
.
globalstate
.
directives
[
'cdivision_warnings'
]:
self
.
generate_div_warning_code
(
code
)
...
...
@@ -5690,32 +5693,40 @@ static INLINE %(type)s %(func_name)s(%(type)s b, %(type)s e) {
# ------------------------------ Division ------------------------------------
# This is so we can treat floating point and integer mod simultaneously.
mod_int_helper_macro
=
UtilityCode
(
proto
=
"""
#define fmod__Pyx_INT(a, b) ((a) % (b))
div_int_utility_code
=
UtilityCode
(
proto
=
"""
static INLINE %(type)s __Pyx_div_%(type_name)s(%(type)s, %(type)s); /* proto */
"""
,
impl
=
"""
static INLINE %(type)s __Pyx_div_%(type_name)s(%(type)s a, %(type)s b) {
%(type)s q = a / b;
%(type)s r = a - q*b;
q -= ((r != 0) & ((r ^ b) < 0));
return q;
}
"""
)
mod_utility_code
=
UtilityCode
(
mod_
int_
utility_code
=
UtilityCode
(
proto
=
"""
static INLINE %(type)s __Pyx_mod_%(type_name)s(%(type)s, %(type)s); /* proto */
"""
,
impl
=
"""
static INLINE %(type)s __Pyx_mod_%(type_name)s(%(type)s a, %(type)s b) {
%(type)s r
es = fmod%(math_h_modifier)s(a, b)
;
r
es += ((res < 0) ^ (b
< 0)) * b;
return r
es
;
%(type)s r
= a %% b
;
r
+= ((r != 0) & ((r ^ b)
< 0)) * b;
return r;
}
"""
)
div
_utility_code
=
UtilityCode
(
mod_float
_utility_code
=
UtilityCode
(
proto
=
"""
static INLINE %(type)s __Pyx_
div
_%(type_name)s(%(type)s, %(type)s); /* proto */
static INLINE %(type)s __Pyx_
mod
_%(type_name)s(%(type)s, %(type)s); /* proto */
"""
,
impl
=
"""
static INLINE %(type)s __Pyx_
div
_%(type_name)s(%(type)s a, %(type)s b) {
%(type)s r
es = a / b
;
r
es -= (res < 0)
;
return r
es
;
static INLINE %(type)s __Pyx_
mod
_%(type_name)s(%(type)s a, %(type)s b) {
%(type)s r
= fmod%(math_h_modifier)s(a, b)
;
r
+= ((r != 0) & ((r < 0) ^ (b < 0))) * b
;
return r;
}
"""
)
...
...
tests/run/cdef_decorator_directives_T183.pyx
0 → 100644
View file @
6b36a27e
__doc__
=
u"""
>>> cdiv_decorator(-12, 5)
-2
>>> pydiv_decorator(-12, 5)
-3
"""
cimport
cython
@
cython
.
cdivision
(
True
)
cpdef
cdiv_decorator
(
int
a
,
int
b
):
return
a
/
b
@
cython
.
cdivision
(
False
)
cpdef
pydiv_decorator
(
int
a
,
int
b
):
return
a
/
b
tests/run/cdivision_CEP_516.pyx
View file @
6b36a27e
...
...
@@ -27,6 +27,10 @@ True
>>> [test_cdiv_cmod(a, b) for a, b in v]
[(1, 7), (-1, -7), (1, -7), (-1, 7)]
>>> all([mod_int_py(a,b) == a % b for a in range(-10, 10) for b in range(-10, 10) if b != 0])
True
>>> all([div_int_py(a,b) == a // b for a in range(-10, 10) for b in range(-10, 10) if b != 0])
True
>>> def simple_warn(msg, *args): print msg
>>> import warnings
...
...
tests/run/float_floor_division_T260.pyx
0 → 100644
View file @
6b36a27e
__doc__
=
u"""
>>> floor_div_float(2, 1.5)
1.0
>>> floor_div_float(2, -1.5)
-2.0
>>> floor_div_float(-2.3, 1.5)
-2.0
>>> floor_div_float(1e10, 1e-10)
1e+20
"""
def
floor_div_float
(
double
a
,
double
b
):
return
a
//
b
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment