forked from arrayfire/arrayfire-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathblas.py
More file actions
30 lines (21 loc) · 765 Bytes
/
blas.py
File metadata and controls
30 lines (21 loc) · 765 Bytes
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
#!/usr/bin/env python
#######################################################
# Copyright (c) 2019, 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_blas(verbose=False):
display_func = _util.display_func(verbose)
a = af.randu(5, 5)
b = af.randu(5, 5)
display_func(af.matmul(a, b))
display_func(af.matmul(a, b, af.MATPROP.TRANS))
display_func(af.matmul(a, b, af.MATPROP.NONE, af.MATPROP.TRANS))
b = af.randu(5, 1)
display_func(af.dot(b, b))
_util.tests["blas"] = simple_blas