[python-arrayfire] 27/250: Adding licenses to all source and test files

Ghislain Vaillant ghisvail-guest at moszumanska.debian.org
Mon Mar 28 22:59:27 UTC 2016


This is an automated email from the git hooks/post-receive script.

ghisvail-guest pushed a commit to branch debian/master
in repository python-arrayfire.

commit f7cdefc46fadb3147c26fc9d5cc2d141513b7e73
Author: Pavan Yalamanchili <pavan at arrayfire.com>
Date:   Wed Jul 15 13:48:16 2015 -0400

    Adding licenses to all source and test files
---
 arrayfire/__init__.py      | 9 +++++++++
 arrayfire/algorithm.py     | 9 +++++++++
 arrayfire/arith.py         | 9 +++++++++
 arrayfire/array.py         | 9 +++++++++
 arrayfire/blas.py          | 9 +++++++++
 arrayfire/data.py          | 9 +++++++++
 arrayfire/device.py        | 9 +++++++++
 arrayfire/library.py       | 9 +++++++++
 arrayfire/statistics.py    | 9 +++++++++
 arrayfire/util.py          | 9 +++++++++
 tests/simple_algorithm.py  | 9 +++++++++
 tests/simple_arith.py      | 9 +++++++++
 tests/simple_array.py      | 9 +++++++++
 tests/simple_blas.py       | 9 +++++++++
 tests/simple_data.py       | 9 +++++++++
 tests/simple_device.py     | 9 +++++++++
 tests/simple_statistics.py | 9 +++++++++
 17 files changed, 153 insertions(+)

diff --git a/arrayfire/__init__.py b/arrayfire/__init__.py
index fff3536..04b8a61 100644
--- a/arrayfire/__init__.py
+++ b/arrayfire/__init__.py
@@ -1,3 +1,12 @@
+#######################################################
+# Copyright (c) 2014, 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
+########################################################
+
 from .library import *
 from .data import *
 from .util import *
diff --git a/arrayfire/algorithm.py b/arrayfire/algorithm.py
index cbe10a6..4926169 100644
--- a/arrayfire/algorithm.py
+++ b/arrayfire/algorithm.py
@@ -1,3 +1,12 @@
+#######################################################
+# Copyright (c) 2014, 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
+########################################################
+
 from .library import *
 from .array import *
 
diff --git a/arrayfire/arith.py b/arrayfire/arith.py
index 3ccf4ad..9575ebe 100644
--- a/arrayfire/arith.py
+++ b/arrayfire/arith.py
@@ -1,3 +1,12 @@
+#######################################################
+# Copyright (c) 2014, 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
+########################################################
+
 from .library import *
 from .array import *
 
diff --git a/arrayfire/array.py b/arrayfire/array.py
index c0d01bd..75bb6d7 100644
--- a/arrayfire/array.py
+++ b/arrayfire/array.py
@@ -1,3 +1,12 @@
+#######################################################
+# Copyright (c) 2014, 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 array as host
 import inspect
 from .library import *
diff --git a/arrayfire/blas.py b/arrayfire/blas.py
index e302f01..3334f0c 100644
--- a/arrayfire/blas.py
+++ b/arrayfire/blas.py
@@ -1,3 +1,12 @@
+#######################################################
+# Copyright (c) 2014, 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
+########################################################
+
 from .library import *
 from .array import *
 
diff --git a/arrayfire/data.py b/arrayfire/data.py
index b480839..2ada061 100644
--- a/arrayfire/data.py
+++ b/arrayfire/data.py
@@ -1,3 +1,12 @@
+#######################################################
+# Copyright (c) 2014, 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
+########################################################
+
 from sys import version_info
 from .library import *
 from .array import *
diff --git a/arrayfire/device.py b/arrayfire/device.py
index 92311ae..82132b7 100644
--- a/arrayfire/device.py
+++ b/arrayfire/device.py
@@ -1,3 +1,12 @@
+#######################################################
+# Copyright (c) 2014, 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
+########################################################
+
 from .library import *
 from ctypes import *
 from .util import (safe_call, to_str)
diff --git a/arrayfire/library.py b/arrayfire/library.py
index fca32ad..96c7e85 100644
--- a/arrayfire/library.py
+++ b/arrayfire/library.py
@@ -1,3 +1,12 @@
+#######################################################
+# Copyright (c) 2014, 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 platform
 from ctypes import *
 
diff --git a/arrayfire/statistics.py b/arrayfire/statistics.py
index 78d547e..5d7bcb3 100644
--- a/arrayfire/statistics.py
+++ b/arrayfire/statistics.py
@@ -1,3 +1,12 @@
+#######################################################
+# Copyright (c) 2014, 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
+########################################################
+
 from .library import *
 from .array import *
 
diff --git a/arrayfire/util.py b/arrayfire/util.py
index 3e527cd..e7d3560 100644
--- a/arrayfire/util.py
+++ b/arrayfire/util.py
@@ -1,3 +1,12 @@
+#######################################################
+# Copyright (c) 2014, 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
+########################################################
+
 from .library import *
 
 def dim4(d0=1, d1=1, d2=1, d3=1):
diff --git a/tests/simple_algorithm.py b/tests/simple_algorithm.py
old mode 100644
new mode 100755
index 7a16049..98b3510
--- a/tests/simple_algorithm.py
+++ b/tests/simple_algorithm.py
@@ -1,4 +1,13 @@
 #!/usr/bin/python
+#######################################################
+# Copyright (c) 2014, 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
 
 a = af.randu(3, 3)
diff --git a/tests/simple_arith.py b/tests/simple_arith.py
old mode 100644
new mode 100755
index 3ea85d2..dfbd2aa
--- a/tests/simple_arith.py
+++ b/tests/simple_arith.py
@@ -1,4 +1,13 @@
 #!/usr/bin/python
+#######################################################
+# Copyright (c) 2014, 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
 
 a = af.randu(3,3,dtype=af.u32)
diff --git a/tests/simple_array.py b/tests/simple_array.py
old mode 100644
new mode 100755
index b97fa1b..96e774d
--- a/tests/simple_array.py
+++ b/tests/simple_array.py
@@ -1,4 +1,13 @@
 #!/usr/bin/python
+#######################################################
+# Copyright (c) 2014, 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
 import array as host
 
diff --git a/tests/simple_blas.py b/tests/simple_blas.py
old mode 100644
new mode 100755
index d6094de..1cedca3
--- a/tests/simple_blas.py
+++ b/tests/simple_blas.py
@@ -1,4 +1,13 @@
 #!/usr/bin/python
+#######################################################
+# Copyright (c) 2014, 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
 
 a = af.randu(5,5)
diff --git a/tests/simple_data.py b/tests/simple_data.py
old mode 100644
new mode 100755
index 9381671..56bfcd4
--- a/tests/simple_data.py
+++ b/tests/simple_data.py
@@ -1,4 +1,13 @@
 #!/usr/bin/python
+#######################################################
+# Copyright (c) 2014, 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
 
 af.print_array(af.constant(100, 3,3, dtype=af.f32))
diff --git a/tests/simple_device.py b/tests/simple_device.py
old mode 100644
new mode 100755
index e703a2b..db259b7
--- a/tests/simple_device.py
+++ b/tests/simple_device.py
@@ -1,4 +1,13 @@
 #!/usr/bin/python
+#######################################################
+# Copyright (c) 2014, 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
 
 af.info()
diff --git a/tests/simple_statistics.py b/tests/simple_statistics.py
old mode 100644
new mode 100755
index c2c0301..3c7d033
--- a/tests/simple_statistics.py
+++ b/tests/simple_statistics.py
@@ -1,4 +1,13 @@
 #!/usr/bin/python
+#######################################################
+# Copyright (c) 2014, 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
 
 a = af.randu(5, 5)

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/debian-science/packages/python-arrayfire.git



More information about the debian-science-commits mailing list