Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
L
loopy
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Andreas Klöckner
loopy
Commits
d1617b11
Commit
d1617b11
authored
3 years ago
by
Kaushik Kulkarni
Committed by
Andreas Klöckner
3 years ago
Browse files
Options
Downloads
Patches
Plain Diff
avoid 'if' by appropriately using sub-classes
parent
06d9db43
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!426
Discussion: kernel_callables_v3-edit2
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
loopy/library/reduction.py
+57
-50
57 additions, 50 deletions
loopy/library/reduction.py
with
57 additions
and
50 deletions
loopy/library/reduction.py
+
57
−
50
View file @
d1617b11
...
@@ -334,8 +334,7 @@ class _SegmentedScalarReductionOperation(ReductionOperation):
...
@@ -334,8 +334,7 @@ class _SegmentedScalarReductionOperation(ReductionOperation):
other
.
inner_reduction
)
other
.
inner_reduction
)
def
__call__
(
self
,
dtypes
,
operand1
,
operand2
,
callables_table
,
target
):
def
__call__
(
self
,
dtypes
,
operand1
,
operand2
,
callables_table
,
target
):
segmented_scalar_callable
=
ReductionCallable
(
segmented_scalar_callable
=
SegmentOpCallable
(
SegmentedOp
(
self
))
SegmentedOp
(
self
))
# type specialize the callable
# type specialize the callable
segmented_scalar_callable
,
callables_table
=
(
segmented_scalar_callable
,
callables_table
=
(
...
@@ -440,7 +439,7 @@ class _ArgExtremumReductionOperation(ReductionOperation):
...
@@ -440,7 +439,7 @@ class _ArgExtremumReductionOperation(ReductionOperation):
return
2
return
2
def
__call__
(
self
,
dtypes
,
operand1
,
operand2
,
callables_table
,
target
):
def
__call__
(
self
,
dtypes
,
operand1
,
operand2
,
callables_table
,
target
):
arg_ext_scalar_callable
=
Reduction
Callable
(
ArgExtOp
(
self
))
arg_ext_scalar_callable
=
ArgExtOp
Callable
(
ArgExtOp
(
self
))
# type specialize the callable
# type specialize the callable
arg_ext_scalar_callable
,
callables_table
=
(
arg_ext_scalar_callable
,
callables_table
=
(
...
@@ -561,58 +560,66 @@ class ReductionCallable(ScalarCallable):
...
@@ -561,58 +560,66 @@ class ReductionCallable(ScalarCallable):
self
.
copy
(
arg_id_to_descr
=
arg_id_to_descr
),
self
.
copy
(
arg_id_to_descr
=
arg_id_to_descr
),
callables_table
)
callables_table
)
class
ArgExtOpCallable
(
ReductionCallable
):
def
generate_preambles
(
self
,
target
):
def
generate_preambles
(
self
,
target
):
if
isinstance
(
self
.
name
,
ArgExtOp
):
op
=
self
.
name
.
reduction_op
op
=
self
.
name
.
reduction_op
scalar_dtype
=
self
.
arg_id_to_dtype
[
-
1
]
scalar_dtype
=
self
.
arg_id_to_dtype
[
-
1
]
index_dtype
=
self
.
arg_id_to_dtype
[
-
2
]
index_dtype
=
self
.
arg_id_to_dtype
[
-
2
]
prefix
=
op
.
prefix
(
scalar_dtype
,
index_dtype
)
prefix
=
op
.
prefix
(
scalar_dtype
,
index_dtype
)
yield
(
prefix
,
"""
yield
(
prefix
,
"""
inline {scalar_t} {prefix}_op(
inline {scalar_t} {prefix}_op(
{scalar_t} op1, {index_t} index1,
{scalar_t} op1, {index_t} index1,
{scalar_t} op2, {index_t} index2,
{scalar_t} op2, {index_t} index2,
{index_t} *index_out)
{index_t} *index_out)
{{
if (op2 {comp} op1)
{{
{{
if (op2 {comp} op1)
*index_out = index2;
{{
return op2;
*index_out = index2;
return op2;
}}
else
{{
*index_out = index1;
return op1;
}}
}}
}}
"""
.
format
(
else
scalar_t
=
target
.
dtype_to_typename
(
scalar_dtype
),
prefix
=
prefix
,
index_t
=
target
.
dtype_to_typename
(
index_dtype
),
comp
=
op
.
update_comparison
,
))
elif
isinstance
(
self
.
name
,
SegmentedOp
):
op
=
self
.
name
.
reduction_op
scalar_dtype
=
self
.
arg_id_to_dtype
[
-
1
]
segment_flag_dtype
=
self
.
arg_id_to_dtype
[
-
2
]
prefix
=
op
.
prefix
(
scalar_dtype
,
segment_flag_dtype
)
yield
(
prefix
,
"""
inline {scalar_t} {prefix}_op(
{scalar_t} op1, {segment_flag_t} segment_flag1,
{scalar_t} op2, {segment_flag_t} segment_flag2,
{segment_flag_t} *segment_flag_out)
{{
{{
*
segment_flag_out = segment_flag1 | segment_flag2
;
*
index_out = index1
;
return
segment_flag2 ? op2 : {combined}
;
return
op1
;
}}
}}
"""
.
format
(
}}
scalar_t
=
target
.
dtype_to_typename
(
scalar_dtype
),
"""
.
format
(
prefix
=
prefix
,
scalar_t
=
target
.
dtype_to_typename
(
scalar_dtype
),
segment_flag_t
=
target
.
dtype_to_typename
(
segment_flag_dtype
),
prefix
=
prefix
,
combined
=
op
.
op
%
(
"
op1
"
,
"
op2
"
),
index_t
=
target
.
dtype_to_typename
(
index_dtype
),
))
comp
=
op
.
update_comparison
,
))
return
class
SegmentOpCallable
(
ReductionCallable
):
def
generate_preambles
(
self
,
target
):
op
=
self
.
name
.
reduction_op
scalar_dtype
=
self
.
arg_id_to_dtype
[
-
1
]
segment_flag_dtype
=
self
.
arg_id_to_dtype
[
-
2
]
prefix
=
op
.
prefix
(
scalar_dtype
,
segment_flag_dtype
)
yield
(
prefix
,
"""
inline {scalar_t} {prefix}_op(
{scalar_t} op1, {segment_flag_t} segment_flag1,
{scalar_t} op2, {segment_flag_t} segment_flag2,
{segment_flag_t} *segment_flag_out)
{{
*segment_flag_out = segment_flag1 | segment_flag2;
return segment_flag2 ? op2 : {combined};
}}
"""
.
format
(
scalar_t
=
target
.
dtype_to_typename
(
scalar_dtype
),
prefix
=
prefix
,
segment_flag_t
=
target
.
dtype_to_typename
(
segment_flag_dtype
),
combined
=
op
.
op
%
(
"
op1
"
,
"
op2
"
),
))
return
return
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment