From f4d00cc3d8304ab9af1a310bf03359ea618c7ecc Mon Sep 17 00:00:00 2001 From: Andreas Kloeckner Date: Fri, 1 Jul 2016 20:33:14 -0500 Subject: [PATCH] Fix thrust links --- LICENSE | 2 +- pyopencl/scan.py | 6 +----- 2 files changed, 2 insertions(+), 6 deletions(-) diff --git a/LICENSE b/LICENSE index a830ab0f..8dc93f47 100644 --- a/LICENSE +++ b/LICENSE @@ -24,7 +24,7 @@ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. PyOpenCL includes derivatives of parts of the `Thrust -`_ computing package (in particular the scan +`_ computing package (in particular the scan implementation). These parts are licensed as follows: Copyright 2008-2011 NVIDIA Corporation diff --git a/pyopencl/scan.py b/pyopencl/scan.py index 272e6996..7787041c 100644 --- a/pyopencl/scan.py +++ b/pyopencl/scan.py @@ -24,14 +24,10 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. -Derived from thrust/detail/backend/cuda/detail/fast_scan.inl -within the Thrust project, https://code.google.com/p/thrust/ +Derived from code within the Thrust project, https://github.com/thrust/thrust/ """ -# Direct link to thrust source: -# https://code.google.com/p/thrust/source/browse/thrust/detail/backend/cuda/detail/fast_scan.inl # noqa - import numpy as np import pyopencl as cl -- GitLab