Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
T
typon-compiler
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
typon
typon-compiler
Commits
a45dfe8e
Commit
a45dfe8e
authored
Apr 12, 2023
by
Tom Niget
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Make example accelerated_fork work (fix decltype for nested async var decls)
parent
02310e9a
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
35 additions
and
5 deletions
+35
-5
trans/tests/naive_fibonacci_accelerated_fork.py
trans/tests/naive_fibonacci_accelerated_fork.py
+24
-0
trans/transpiler/scope.py
trans/transpiler/scope.py
+4
-3
trans/transpiler/visitors/block.py
trans/transpiler/visitors/block.py
+6
-2
trans/transpiler/visitors/expr.py
trans/transpiler/visitors/expr.py
+1
-0
No files found.
trans/tests/naive_fibonacci_accelerated_fork.py
0 → 100644
View file @
a45dfe8e
from
typon
import
fork
,
sync
def
fibo
(
n
:
int
)
->
int
:
if
n
<
2
:
return
n
a
=
fibo
(
n
-
1
)
b
=
fibo
(
n
-
2
)
return
a
+
b
def
parallel_fibo
(
n
:
int
)
->
int
:
if
n
<
2
:
return
n
if
n
<
25
:
a
=
fibo
(
n
-
1
)
b
=
fibo
(
n
-
2
)
return
a
+
b
x
=
fork
(
lambda
:
fibo
(
n
-
1
))
y
=
fork
(
lambda
:
fibo
(
n
-
2
))
sync
()
return
x
+
y
if
__name__
==
"__main__"
:
print
(
fibo
(
30
))
# should display 832040
\ No newline at end of file
trans/transpiler/scope.py
View file @
a45dfe8e
# coding: utf-8
# coding: utf-8
import
ast
from
dataclasses
import
dataclass
,
field
from
dataclasses
import
dataclass
,
field
from
enum
import
Enum
from
enum
import
Enum
from
typing
import
Optional
,
Dict
from
typing
import
Optional
,
Dict
,
Tuple
class
VarKind
(
Enum
):
class
VarKind
(
Enum
):
...
@@ -15,7 +16,7 @@ class VarKind(Enum):
...
@@ -15,7 +16,7 @@ class VarKind(Enum):
@
dataclass
@
dataclass
class
VarDecl
:
class
VarDecl
:
kind
:
VarKind
kind
:
VarKind
val
:
Optional
[
str
]
val
:
Optional
[
Tuple
[
str
,
ast
.
AST
]
]
future
:
bool
=
False
future
:
bool
=
False
...
@@ -90,7 +91,7 @@ class Scope:
...
@@ -90,7 +91,7 @@ class Scope:
return
self
.
parent
.
vars
return
self
.
parent
.
vars
return
None
return
None
def
declare
(
self
,
name
:
str
,
val
:
Optional
[
str
]
=
None
,
future
:
bool
=
False
)
->
Optional
[
str
]:
def
declare
(
self
,
name
:
str
,
val
:
Optional
[
Tuple
[
str
,
ast
.
AST
]
]
=
None
,
future
:
bool
=
False
)
->
Optional
[
str
]:
if
self
.
exists_local
(
name
):
if
self
.
exists_local
(
name
):
# If the variable already exists in the current function or global scope, we don't need to declare it again.
# If the variable already exists in the current function or global scope, we don't need to declare it again.
# This is simply an assignment.
# This is simply an assignment.
...
...
trans/transpiler/visitors/block.py
View file @
a45dfe8e
...
@@ -147,7 +147,11 @@ class BlockVisitor(NodeVisitor):
...
@@ -147,7 +147,11 @@ class BlockVisitor(NodeVisitor):
# Hoist inner variables to the root scope.
# Hoist inner variables to the root scope.
for
var
,
decl
in
child_visitor
.
scope
.
vars
.
items
():
for
var
,
decl
in
child_visitor
.
scope
.
vars
.
items
():
if
decl
.
kind
==
VarKind
.
LOCAL
:
# Nested declarations become `decltype` declarations.
if
decl
.
kind
==
VarKind
.
LOCAL
:
# Nested declarations become `decltype` declarations.
yield
f"decltype(
{
decl
.
val
}
)
{
var
}
;"
if
getattr
(
decl
.
val
[
1
],
"in_await"
,
False
):
# TODO(zdimension): really?
yield
f"decltype(
{
decl
.
val
[
0
][
9
:]
}
.operator co_await().await_resume())
{
var
}
;"
else
:
yield
f"decltype(
{
decl
.
val
[
0
]
}
)
{
var
}
;"
elif
decl
.
kind
in
(
VarKind
.
GLOBAL
,
VarKind
.
NONLOCAL
):
# `global` and `nonlocal` just get hoisted as-is.
elif
decl
.
kind
in
(
VarKind
.
GLOBAL
,
VarKind
.
NONLOCAL
):
# `global` and `nonlocal` just get hoisted as-is.
inner_scope
.
vars
[
var
]
=
decl
inner_scope
.
vars
[
var
]
=
decl
yield
from
child_code
# Yeet back the child node code.
yield
from
child_code
# Yeet back the child node code.
...
@@ -165,7 +169,7 @@ class BlockVisitor(NodeVisitor):
...
@@ -165,7 +169,7 @@ class BlockVisitor(NodeVisitor):
name
=
self
.
fix_name
(
lvalue
.
id
)
name
=
self
.
fix_name
(
lvalue
.
id
)
# if name not in self._scope.vars:
# if name not in self._scope.vars:
if
not
self
.
scope
.
exists_local
(
name
):
if
not
self
.
scope
.
exists_local
(
name
):
yield
self
.
scope
.
declare
(
name
,
" "
.
join
(
self
.
expr
().
visit
(
val
)
)
if
val
else
None
,
yield
self
.
scope
.
declare
(
name
,
(
" "
.
join
(
self
.
expr
().
visit
(
val
)),
val
)
if
val
else
None
,
getattr
(
val
,
"is_future"
,
False
))
getattr
(
val
,
"is_future"
,
False
))
yield
name
yield
name
elif
isinstance
(
lvalue
,
ast
.
Subscript
):
elif
isinstance
(
lvalue
,
ast
.
Subscript
):
...
...
trans/transpiler/visitors/expr.py
View file @
a45dfe8e
...
@@ -126,6 +126,7 @@ class ExpressionVisitor(NodeVisitor):
...
@@ -126,6 +126,7 @@ class ExpressionVisitor(NodeVisitor):
# TODO: precedence needed?
# TODO: precedence needed?
if
CoroutineMode
.
ASYNC
in
self
.
generator
:
if
CoroutineMode
.
ASYNC
in
self
.
generator
:
yield
"co_await "
yield
"co_await "
node
.
in_await
=
True
elif
CoroutineMode
.
FAKE
in
self
.
generator
:
elif
CoroutineMode
.
FAKE
in
self
.
generator
:
func
=
ast
.
Attribute
(
value
=
func
,
attr
=
"sync"
,
ctx
=
ast
.
Load
())
func
=
ast
.
Attribute
(
value
=
func
,
attr
=
"sync"
,
ctx
=
ast
.
Load
())
yield
from
self
.
prec
(
"()"
).
visit
(
func
)
yield
from
self
.
prec
(
"()"
).
visit
(
func
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment