FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
arrayfire-python/tests/simple/sparse.py at master · arrayfire/arrayfire-python · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
arrayfire
/
arrayfire-python
Public
Notifications
You must be signed in to change notification settings
Fork
64
Star
422
Code
Issues
57
Pull requests
3
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
arrayfire-python
/
tests
/
simple
/
sparse.py
Copy path
More file actions
More file actions
Latest commit
History
History
History
32 lines (24 loc) · 900 Bytes
Breadcrumbs
arrayfire-python
/
tests
/
simple
/
sparse.py
Copy path
File metadata and controls
32 lines (24 loc) · 900 Bytes
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
#!/usr/bin/env python
#######################################################
# Copyright (c) 2015, ArrayFire
# All rights reserved.
#
# This file is distributed under 3-clause BSD license.
# The complete license agreement can be obtained at:
# http://arrayfire.com/licenses/BSD-3-Clause
########################################################
import
arrayfire
as
af
from
.
import
_util
def
simple_sparse
(
verbose
=
False
):
display_func
=
_util
.
display_func
(
verbose
)
print_func
=
_util
.
print_func
(
verbose
)
dd
=
af
.
randu
(
5
,
5
)
ds
=
dd
*
(
dd
>
0.5
)
sp
=
af
.
create_sparse_from_dense
(
ds
)
display_func
(
af
.
sparse_get_info
(
sp
))
display_func
(
af
.
sparse_get_values
(
sp
))
display_func
(
af
.
sparse_get_row_idx
(
sp
))
display_func
(
af
.
sparse_get_col_idx
(
sp
))
print_func
(
af
.
sparse_get_nnz
(
sp
))
print_func
(
af
.
sparse_get_storage
(
sp
))
_util
.
tests
[
"sparse"
]
=
simple_sparse
Back
|
FazBrowse Home
|
New Git URL