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
Wiki
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
Ben Sepanski
loopy
Commits
0384e073
Commit
0384e073
authored
9 years ago
by
Andreas Klöckner
Browse files
Options
Downloads
Patches
Plain Diff
Limit number of tested kernels in auto_test_vs_ref
parent
532b9202
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
loopy/auto_test.py
+18
-20
18 additions, 20 deletions
loopy/auto_test.py
with
18 additions
and
20 deletions
loopy/auto_test.py
+
18
−
20
View file @
0384e073
...
...
@@ -353,14 +353,15 @@ def auto_test_vs_ref(
ref_knl
,
ctx
,
test_knl
,
op_count
=
[],
op_label
=
[],
parameters
=
{},
print_ref_code
=
False
,
print_code
=
True
,
warmup_rounds
=
2
,
dump_binary
=
False
,
fills_entire_output
=
None
,
do_check
=
True
,
check_result
=
None
):
fills_entire_output
=
None
,
do_check
=
True
,
check_result
=
None
,
max_test_kernel_count
=
1
):
"""
Compare results of `ref_knl` to the kernels generated by
scheduling *test_knl*.
:arg check_result: a callable with :class:`numpy.ndarray` arguments
*(result, reference_result)* returning a a tuple (class:`bool`,
message) indicating correctness/acceptability of the result
:arg max_test_kernel_count: Stop testing after this many *test_knl*
"""
import
pyopencl
as
cl
...
...
@@ -488,28 +489,25 @@ def auto_test_vs_ref(
properties
=
cl
.
command_queue_properties
.
PROFILING_ENABLE
)
args
=
None
from
loopy.kernel
import
LoopKernel
if
not
isinstance
(
test_knl
,
LoopKernel
):
warn
(
"
Passing an iterable of kernels to auto_test_vs_ref
"
"
is deprecated--just pass the kernel instead.
"
"
Scheduling will be performed in auto_test_vs_ref.
"
,
DeprecationWarning
,
stacklevel
=
2
)
test_kernels
=
test_knl
from
loopy.kernel
import
kernel_state
if
test_knl
.
state
not
in
[
kernel_state
.
PREPROCESSED
,
kernel_state
.
SCHEDULED
]:
test_knl
=
lp
.
preprocess_kernel
(
test_knl
)
if
not
test_knl
.
schedule
:
test_kernels
=
lp
.
generate_loop_schedules
(
test_knl
)
else
:
from
loopy.kernel
import
kernel_state
if
test_knl
.
state
not
in
[
kernel_state
.
PREPROCESSED
,
kernel_state
.
SCHEDULED
]:
test_knl
=
lp
.
preprocess_kernel
(
test_knl
)
if
not
test_knl
.
schedule
:
test_kernels
=
lp
.
generate_loop_schedules
(
test_knl
)
else
:
test_kernels
=
[
test_knl
]
test_kernels
=
[
test_knl
]
test_kernel_count
=
0
from
loopy.preprocess
import
infer_unknown_types
for
i
,
kernel
in
enumerate
(
test_kernels
):
test_kernel_count
+=
1
if
test_kernel_count
>
max_test_kernel_count
:
break
kernel
=
infer_unknown_types
(
kernel
,
expect_completion
=
True
)
compiled
=
CompiledKernel
(
ctx
,
kernel
)
...
...
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