Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
arraycontext
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
Package Registry
Model registry
Operate
Environments
Terraform modules
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
arraycontext
Commits
3c4e3048
Commit
3c4e3048
authored
3 years ago
by
Kaushik Kulkarni
Committed by
Andreas Klöckner
3 years ago
Browse files
Options
Downloads
Patches
Plain Diff
adds tests specific to PytatoArrayContexts
parent
91a94fc3
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
test/test_pytato_arraycontext.py
+106
-0
106 additions, 0 deletions
test/test_pytato_arraycontext.py
with
106 additions
and
0 deletions
test/test_pytato_arraycontext.py
0 → 100644
+
106
−
0
View file @
3c4e3048
"""
PytatoArrayContext specific tests
"""
__copyright__
=
"
Copyright (C) 2021 University of Illinois Board of Trustees
"
__license__
=
"""
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the
"
Software
"
), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED
"
AS IS
"
, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
"""
from
arraycontext
import
(
freeze
,
thaw
,
PytatoPyOpenCLArrayContext
)
from
arraycontext
import
pytest_generate_tests_for_array_contexts
from
arraycontext.pytest
import
_PytestPytatoPyOpenCLArrayContextFactory
from
pytools.tag
import
Tag
import
logging
logger
=
logging
.
getLogger
(
__name__
)
# {{{ pytato-array context fixture
class
_PytatoPyOpenCLArrayContextForTests
(
PytatoPyOpenCLArrayContext
):
"""
Like :class:`PytatoPyOpenCLArrayContext`, but applies no program
transformations whatsoever. Only to be used for testing internal to
:mod:`arraycontext`.
"""
def
transform_loopy_program
(
self
,
t_unit
):
return
t_unit
class
_PytatoPyOpenCLArrayContextForTestsFactory
(
_PytestPytatoPyOpenCLArrayContextFactory
):
actx_class
=
_PytatoPyOpenCLArrayContextForTests
pytest_generate_tests
=
pytest_generate_tests_for_array_contexts
([
_PytatoPyOpenCLArrayContextForTestsFactory
,
])
# }}}
# {{{ dummy tag types
class
FooTag
(
Tag
):
"""
Foo
"""
class
BarTag
(
Tag
):
"""
Bar
"""
class
BazTag
(
Tag
):
"""
Baz
"""
# }}}
def
test_tags_preserved_after_freeze
(
actx_factory
):
from
numpy.random
import
default_rng
rng
=
default_rng
()
actx
=
actx_factory
()
foo
=
thaw
(
freeze
(
actx
.
from_numpy
(
rng
.
random
((
10
,
4
)))
.
tagged
(
FooTag
())
.
with_tagged_axis
(
0
,
BarTag
())
.
with_tagged_axis
(
1
,
BazTag
()),
actx
),
actx
)
assert
foo
.
tags_of_type
(
FooTag
)
assert
foo
.
axes
[
0
].
tags_of_type
(
BarTag
)
assert
foo
.
axes
[
1
].
tags_of_type
(
BazTag
)
if
__name__
==
"
__main__
"
:
import
sys
if
len
(
sys
.
argv
)
>
1
:
exec
(
sys
.
argv
[
1
])
else
:
from
pytest
import
main
main
([
__file__
])
# vim: fdm=marker
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