Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
P
pyopencl
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
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
pyopencl
Commits
3867c5a2
Commit
3867c5a2
authored
12 years ago
by
Andreas Klöckner
Browse files
Options
Downloads
Plain Diff
Merge box:src/pyopencl
parents
cde5d84f
c33b95ec
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
pyopencl/__init__.py
+18
-12
18 additions, 12 deletions
pyopencl/__init__.py
with
18 additions
and
12 deletions
pyopencl/__init__.py
+
18
−
12
View file @
3867c5a2
...
@@ -688,33 +688,39 @@ def create_some_context(interactive=True, answers=None):
...
@@ -688,33 +688,39 @@ def create_some_context(interactive=True, answers=None):
if
not
answer
:
if
not
answer
:
platform
=
platforms
[
0
]
platform
=
platforms
[
0
]
else
:
else
:
platform
=
None
try
:
try
:
choice
=
int
(
answer
)
int_
choice
=
int
(
answer
)
except
ValueError
:
except
ValueError
:
pass
else
:
if
0
<=
int_choice
<
len
(
platforms
):
platform
=
platforms
[
int_choice
]
if
platform
is
None
:
answer
=
answer
.
lower
()
answer
=
answer
.
lower
()
platform
=
None
for
i
,
pf
in
enumerate
(
platforms
):
for
i
,
pf
in
enumerate
(
platforms
):
if
answer
in
pf
.
name
.
lower
():
if
answer
in
pf
.
name
.
lower
():
platform
=
pf
platform
=
pf
if
platform
is
None
:
if
platform
is
None
:
raise
RuntimeError
(
"
input did not match any platform
"
)
raise
RuntimeError
(
"
input did not match any platform
"
)
else
:
platform
=
platforms
[
choice
]
devices
=
platform
.
get_devices
()
devices
=
platform
.
get_devices
()
def
parse_device
(
choice
):
def
parse_device
(
choice
):
try
:
try
:
choice
=
int
(
choice
)
int_
choice
=
int
(
choice
)
except
ValueError
:
except
ValueError
:
choice
=
choice
.
lower
()
pass
for
i
,
dev
in
enumerate
(
devices
):
if
choice
in
dev
.
name
.
lower
():
return
dev
raise
RuntimeError
(
"
input did not match any platform
"
)
else
:
else
:
return
devices
[
choice
]
if
0
<=
int_choice
<
len
(
devices
):
return
devices
[
int_choice
]
choice
=
choice
.
lower
()
for
i
,
dev
in
enumerate
(
devices
):
if
choice
in
dev
.
name
.
lower
():
return
dev
raise
RuntimeError
(
"
input did not match any platform
"
)
if
not
devices
:
if
not
devices
:
raise
Error
(
"
no devices found
"
)
raise
Error
(
"
no devices found
"
)
...
...
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