FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
lpython/integration_tests/array_01_decl.py at main · srasgh/lpython · GitHub
srasgh
/
lpython
Public
forked from
lcompilers/lpython
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
lpython
/
integration_tests
/
array_01_decl.py
Copy path
More file actions
More file actions
Latest commit
History
History
History
43 lines (35 loc) · 1.25 KB
Breadcrumbs
lpython
/
integration_tests
/
array_01_decl.py
Copy path
File metadata and controls
43 lines (35 loc) · 1.25 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
from
lpython
import
i16
,
i32
,
i64
,
f32
,
f64
,
c32
,
c64
from
numpy
import
empty
,
int16
,
int32
,
int64
,
float32
,
float64
,
complex64
,
complex128
from
enum
import
Enum
class
ArraySizes
(
Enum
):
SIZE_3
:
i32
=
3
SIZE_10
:
i32
=
10
def
accept_i16_array
(
xi16
:
i16
[:])
->
i16
:
xi16
[
2
]
=
i16
(
32
)
return
xi16
[
2
]
def
accept_i32_array
(
xi32
:
i32
[:])
->
i32
:
xi32
[
1
]
=
32
return
xi32
[
1
]
def
accept_i64_array
(
xi64
:
i64
[:])
->
i64
:
xi64
[
1
]
=
i64
(
64
)
return
xi64
[
1
]
def
accept_f32_array
(
xf32
:
f32
[:])
->
f32
:
xf32
[
1
]
=
f32
(
32.0
)
return
xf32
[
1
]
def
accept_f64_array
(
xf64
:
f64
[:])
->
f64
:
xf64
[
0
]
=
64.0
return
xf64
[
0
]
def
declare_arrays
():
ai16
:
i16
[
ArraySizes
.
SIZE_3
.
value
]
=
empty
(
ArraySizes
.
SIZE_3
.
value
,
dtype
=
int16
)
ai32
:
i32
[
ArraySizes
.
SIZE_3
]
=
empty
(
ArraySizes
.
SIZE_3
.
value
,
dtype
=
int32
)
ai64
:
i64
[
10
]
=
empty
(
10
,
dtype
=
int64
)
af32
:
f32
[
3
]
=
empty
(
3
,
dtype
=
float32
)
af64
:
f64
[
ArraySizes
.
SIZE_10
]
=
empty
(
10
,
dtype
=
float64
)
ac32
:
c32
[
ArraySizes
.
SIZE_3
]
=
empty
(
3
,
dtype
=
complex64
)
ac64
:
c64
[
10
]
=
empty
(
10
,
dtype
=
complex128
)
print
(
accept_i16_array
(
ai16
))
print
(
accept_i32_array
(
ai32
))
print
(
accept_i64_array
(
ai64
))
print
(
accept_f32_array
(
af32
))
print
(
accept_f64_array
(
af64
))
declare_arrays
()
Back
|
FazBrowse Home
|
New Git URL