FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
arrayfire-python/arrayfire/base.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
/
arrayfire
/
base.py
Copy path
More file actions
More file actions
Latest commit
History
History
History
22 lines (19 loc) · 571 Bytes
Breadcrumbs
arrayfire-python
/
arrayfire
/
base.py
Copy path
File metadata and controls
22 lines (19 loc) · 571 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
#######################################################
# 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
########################################################
"""
Implementation of BaseArray class.
"""
from
.
library
import
*
from
.
util
import
*
class
BaseArray
(
object
):
"""
Base array class for arrayfire. For internal use only.
"""
def
__init__
(
self
):
self
.
arr
=
c_void_ptr_t
(
0
)
Back
|
FazBrowse Home
|
New Git URL