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
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
Isuru Fernando
loopy
Commits
b4d8934f
Commit
b4d8934f
authored
8 years ago
by
Andreas Klöckner
Browse files
Options
Downloads
Plain Diff
Merge branch 'master' of gitlab.tiker.net:inducer/loopy
parents
03ccb2a1
d4a1b476
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
loopy/kernel/instruction.py
+0
-4
0 additions, 4 deletions
loopy/kernel/instruction.py
with
0 additions
and
4 deletions
loopy/kernel/instruction.py
+
0
−
4
View file @
b4d8934f
...
...
@@ -166,7 +166,6 @@ class InstructionBase(Record):
from
pymbolic.primitives
import
LogicalNot
from
loopy.symbolic
import
parse
if
pred
.
startswith
(
"
!
"
):
from
warnings
import
warn
warn
(
"
predicates starting with
'
!
'
are deprecated.
"
"
Simply use
'
not
'
instead
"
)
pred
=
LogicalNot
(
parse
(
pred
[
1
:]))
...
...
@@ -405,14 +404,12 @@ class InstructionBase(Record):
def
copy
(
self
,
**
kwargs
):
if
"
insn_deps
"
in
kwargs
:
from
warnings
import
warn
warn
(
"
insn_deps is deprecated, use depends_on
"
,
DeprecationWarning
,
stacklevel
=
2
)
kwargs
[
"
depends_on
"
]
=
kwargs
.
pop
(
"
insn_deps
"
)
if
"
insn_deps_is_final
"
in
kwargs
:
from
warnings
import
warn
warn
(
"
insn_deps_is_final is deprecated, use depends_on
"
,
DeprecationWarning
,
stacklevel
=
2
)
...
...
@@ -831,7 +828,6 @@ class Assignment(MultiAssignmentBase):
class
ExpressionInstruction
(
Assignment
):
def
__init__
(
self
,
*
args
,
**
kwargs
):
from
warnings
import
warn
warn
(
"
ExpressionInstruction is deprecated. Use Assignment instead
"
,
DeprecationWarning
,
stacklevel
=
2
)
...
...
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