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
766de527
Commit
766de527
authored
9 years ago
by
Andreas Klöckner
Browse files
Options
Downloads
Patches
Plain Diff
Add support for colorization in loopy terminal output
parent
71123367
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
loopy/kernel/__init__.py
+10
-4
10 additions, 4 deletions
loopy/kernel/__init__.py
loopy/options.py
+36
-0
36 additions, 0 deletions
loopy/options.py
setup.py
+1
-0
1 addition, 0 deletions
setup.py
with
47 additions
and
4 deletions
loopy/kernel/__init__.py
+
10
−
4
View file @
766de527
...
@@ -1012,6 +1012,9 @@ class LoopKernel(RecordWithoutPickling):
...
@@ -1012,6 +1012,9 @@ class LoopKernel(RecordWithoutPickling):
printed_insn_ids
=
set
()
printed_insn_ids
=
set
()
Fore
=
self
.
options
.
_fore
Style
=
self
.
options
.
_style
def
print_insn
(
insn
):
def
print_insn
(
insn
):
if
insn
.
id
in
printed_insn_ids
:
if
insn
.
id
in
printed_insn_ids
:
return
return
...
@@ -1035,7 +1038,7 @@ class LoopKernel(RecordWithoutPickling):
...
@@ -1035,7 +1038,7 @@ class LoopKernel(RecordWithoutPickling):
loop_list
=
"
,
"
.
join
(
sorted
(
kernel
.
insn_inames
(
insn
)))
loop_list
=
"
,
"
.
join
(
sorted
(
kernel
.
insn_inames
(
insn
)))
options
=
[
insn
.
id
]
options
=
[
Fore
.
GREEN
+
insn
.
id
+
Style
.
RESET_ALL
]
if
insn
.
priority
:
if
insn
.
priority
:
options
.
append
(
"
priority=%d
"
%
insn
.
priority
)
options
.
append
(
"
priority=%d
"
%
insn
.
priority
)
if
insn
.
tags
:
if
insn
.
tags
:
...
@@ -1048,12 +1051,15 @@ class LoopKernel(RecordWithoutPickling):
...
@@ -1048,12 +1051,15 @@ class LoopKernel(RecordWithoutPickling):
if
len
(
loop_list
)
>
loop_list_width
:
if
len
(
loop_list
)
>
loop_list_width
:
lines
.
append
(
"
[%s]
"
%
loop_list
)
lines
.
append
(
"
[%s]
"
%
loop_list
)
lines
.
append
(
"
%s%s <- %s # %s
"
%
(
lines
.
append
(
"
%s%s <- %s # %s
"
%
(
(
loop_list_width
+
2
)
*
"
"
,
lhs
,
(
loop_list_width
+
2
)
*
"
"
,
Fore
.
BLUE
+
lhs
+
Style
.
RESET_ALL
,
rhs
,
"
,
"
.
join
(
options
)))
Fore
.
MAGENTA
+
rhs
+
Style
.
RESET_ALL
,
"
,
"
.
join
(
options
)))
else
:
else
:
lines
.
append
(
"
[%s]%s%s <- %s # %s
"
%
(
lines
.
append
(
"
[%s]%s%s <- %s # %s
"
%
(
loop_list
,
"
"
*
(
loop_list_width
-
len
(
loop_list
)),
loop_list
,
"
"
*
(
loop_list_width
-
len
(
loop_list
)),
lhs
,
rhs
,
"
,
"
.
join
(
options
)))
Fore
.
BLUE
+
lhs
+
Style
.
RESET_ALL
,
Fore
.
MAGENTA
+
rhs
+
Style
.
RESET_ALL
,
"
,
"
.
join
(
options
)))
lines
.
extend
(
trailing
)
lines
.
extend
(
trailing
)
...
...
This diff is collapsed.
Click to expand it.
loopy/options.py
+
36
−
0
View file @
766de527
...
@@ -27,6 +27,11 @@ from pytools import Record
...
@@ -27,6 +27,11 @@ from pytools import Record
import
re
import
re
class
_ColoramaStub
(
object
):
def
getattribute
(
self
,
name
):
return
""
class
Options
(
Record
):
class
Options
(
Record
):
"""
"""
Unless otherwise specified, these options are Boolean-valued
Unless otherwise specified, these options are Boolean-valued
...
@@ -105,6 +110,11 @@ class Options(Record):
...
@@ -105,6 +110,11 @@ class Options(Record):
Options to pass to the OpenCL compiler when building the kernel.
Options to pass to the OpenCL compiler when building the kernel.
A list of strings.
A list of strings.
.. attribute:: allow_terminal_colors
A :class:`bool`. Whether to allow colors in terminal output
"""
"""
def
__init__
(
def
__init__
(
...
@@ -124,6 +134,7 @@ class Options(Record):
...
@@ -124,6 +134,7 @@ class Options(Record):
write_wrapper
=
False
,
highlight_wrapper
=
False
,
write_wrapper
=
False
,
highlight_wrapper
=
False
,
write_cl
=
False
,
highlight_cl
=
False
,
write_cl
=
False
,
highlight_cl
=
False
,
edit_cl
=
False
,
cl_build_options
=
[],
edit_cl
=
False
,
cl_build_options
=
[],
allow_terminal_colors
=
True
):
):
Record
.
__init__
(
Record
.
__init__
(
self
,
self
,
...
@@ -137,6 +148,7 @@ class Options(Record):
...
@@ -137,6 +148,7 @@ class Options(Record):
write_wrapper
=
write_wrapper
,
highlight_wrapper
=
highlight_wrapper
,
write_wrapper
=
write_wrapper
,
highlight_wrapper
=
highlight_wrapper
,
write_cl
=
write_cl
,
highlight_cl
=
highlight_cl
,
write_cl
=
write_cl
,
highlight_cl
=
highlight_cl
,
edit_cl
=
edit_cl
,
cl_build_options
=
cl_build_options
,
edit_cl
=
edit_cl
,
cl_build_options
=
cl_build_options
,
allow_terminal_colors
=
allow_terminal_colors
,
)
)
def
update
(
self
,
other
):
def
update
(
self
,
other
):
...
@@ -150,6 +162,30 @@ class Options(Record):
...
@@ -150,6 +162,30 @@ class Options(Record):
for
field_name
in
sorted
(
self
.
__class__
.
fields
):
for
field_name
in
sorted
(
self
.
__class__
.
fields
):
key_builder
.
rec
(
key_hash
,
getattr
(
self
,
field_name
))
key_builder
.
rec
(
key_hash
,
getattr
(
self
,
field_name
))
@property
def
_fore
(
self
):
if
self
.
allow_terminal_colors
:
import
colorama
return
colorama
.
Fore
else
:
return
_ColoramaStub
()
@property
def
_back
(
self
):
if
self
.
allow_terminal_colors
:
import
colorama
return
colorama
.
Back
else
:
return
_ColoramaStub
()
@property
def
_style
(
self
):
if
self
.
allow_terminal_colors
:
import
colorama
return
colorama
.
Style
else
:
return
_ColoramaStub
()
KEY_VAL_RE
=
re
.
compile
(
"
^([a-zA-Z0-9]+)=(.*)$
"
)
KEY_VAL_RE
=
re
.
compile
(
"
^([a-zA-Z0-9]+)=(.*)$
"
)
...
...
This diff is collapsed.
Click to expand it.
setup.py
+
1
−
0
View file @
766de527
...
@@ -42,6 +42,7 @@ setup(name="loo.py",
...
@@ -42,6 +42,7 @@ setup(name="loo.py",
"
cgen>=2016.1
"
,
"
cgen>=2016.1
"
,
"
islpy>=2016.1.2
"
,
"
islpy>=2016.1.2
"
,
"
six>=1.8.0
"
,
"
six>=1.8.0
"
,
"
colorama
"
,
],
],
extras_require
=
{
extras_require
=
{
...
...
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