[compute] 11/49: Add missing Boost license info and copyrights

Ghislain Vaillant ghisvail-guest at moszumanska.debian.org
Fri Dec 18 17:58:16 UTC 2015


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

ghisvail-guest pushed a commit to branch master
in repository compute.

commit 7e12f63a8179b3ade8fdfd85f8e83d7acabb5d37
Author: Jakub Szuppe <j.szuppe at gmail.com>
Date:   Thu Jul 16 20:58:47 2015 +0200

    Add missing Boost license info and copyrights
---
 CMakeLists.txt                                   |  9 ++++
 doc/Jamfile.v2                                   |  9 ++++
 doc/advanced_topics.qbk                          |  8 +++
 doc/compute.qbk                                  |  8 +++
 doc/design.qbk                                   |  8 +++
 doc/faq.qbk                                      |  8 +++
 doc/getting_started.qbk                          |  8 +++
 doc/interop.qbk                                  |  8 +++
 doc/introduction.qbk                             |  8 +++
 doc/performance.qbk                              |  8 +++
 doc/platforms_and_compilers.qbk                  |  8 +++
 doc/porting_guide.qbk                            |  8 +++
 doc/reference.qbk                                |  8 +++
 doc/tutorial.qbk                                 |  8 +++
 example/CMakeLists.txt                           |  9 ++++
 example/qimage_blur.cpp                          | 10 ++++
 include/boost/compute/random/threefry_engine.hpp | 69 +++++++++++++-----------
 perf/CMakeLists.txt                              |  9 ++++
 perf/perf.py                                     |  7 +++
 perf/perf_exclusive_scan.cpp                     | 10 ++++
 perf/perf_tbb_merge.cpp                          | 10 ++++
 perf/perf_thrust_exclusive_scan.cu               |  2 +-
 perf/perfdoc.py                                  |  7 +++
 test/CMakeLists.txt                              |  9 ++++
 test/context_setup.hpp                           | 10 ++++
 test/extra/CMakeLists.txt                        |  9 ++++
 test/opencl_version_check.hpp                    | 10 ++++
 27 files changed, 253 insertions(+), 32 deletions(-)

diff --git a/CMakeLists.txt b/CMakeLists.txt
index cce290c..3695681 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -1,3 +1,12 @@
+# ---------------------------------------------------------------------------
+#  Copyright (c) 2013 Kyle Lutz <kyle.r.lutz at gmail.com>
+# 
+#  Distributed under the Boost Software License, Version 1.0
+#  See accompanying file LICENSE_1_0.txt or copy at
+#  http://www.boost.org/LICENSE_1_0.txt
+#
+# ---------------------------------------------------------------------------
+
 cmake_minimum_required(VERSION 2.8)
 
 project(BoostCompute)
diff --git a/doc/Jamfile.v2 b/doc/Jamfile.v2
index 3cb9a61..366af76 100644
--- a/doc/Jamfile.v2
+++ b/doc/Jamfile.v2
@@ -1,3 +1,12 @@
+# ---------------------------------------------------------------------------
+#  Copyright (c) 2013 Kyle Lutz <kyle.r.lutz at gmail.com>
+# 
+#  Distributed under the Boost Software License, Version 1.0
+#  See accompanying file LICENSE_1_0.txt or copy at
+#  http://www.boost.org/LICENSE_1_0.txt
+#
+# ---------------------------------------------------------------------------
+
 import quickbook ;
 import boostbook ;
 import doxygen ;
diff --git a/doc/advanced_topics.qbk b/doc/advanced_topics.qbk
index 9608e1c..d607d9b 100644
--- a/doc/advanced_topics.qbk
+++ b/doc/advanced_topics.qbk
@@ -1,3 +1,11 @@
+[/===========================================================================
+ Copyright (c) 2013-2015 Kyle Lutz <kyle.r.lutz at gmail.com>
+
+ Distributed under the Boost Software License, Version 1.0
+ See accompanying file LICENSE_1_0.txt or copy at
+ http://www.boost.org/LICENSE_1_0.txt
+=============================================================================/]
+
 [section Advanced Topics]
 
 The following topics show advanced features of the Boost Compute library.
diff --git a/doc/compute.qbk b/doc/compute.qbk
index b605454..e1235e3 100644
--- a/doc/compute.qbk
+++ b/doc/compute.qbk
@@ -1,3 +1,11 @@
+[/===========================================================================
+ Copyright (c) 2013-2015 Kyle Lutz <kyle.r.lutz at gmail.com>
+
+ Distributed under the Boost Software License, Version 1.0
+ See accompanying file LICENSE_1_0.txt or copy at
+ http://www.boost.org/LICENSE_1_0.txt
+=============================================================================/]
+
 [library Boost.Compute
     [quickbook 1.5]
     [authors [Lutz, Kyle]]
diff --git a/doc/design.qbk b/doc/design.qbk
index 2ac9493..485c732 100644
--- a/doc/design.qbk
+++ b/doc/design.qbk
@@ -1,3 +1,11 @@
+[/===========================================================================
+ Copyright (c) 2013-2015 Kyle Lutz <kyle.r.lutz at gmail.com>
+
+ Distributed under the Boost Software License, Version 1.0
+ See accompanying file LICENSE_1_0.txt or copy at
+ http://www.boost.org/LICENSE_1_0.txt
+=============================================================================/]
+
 [section:design Design]
 
 [section Library Architecture]
diff --git a/doc/faq.qbk b/doc/faq.qbk
index 23479a4..e5785ce 100644
--- a/doc/faq.qbk
+++ b/doc/faq.qbk
@@ -1,3 +1,11 @@
+[/===========================================================================
+ Copyright (c) 2013-2015 Kyle Lutz <kyle.r.lutz at gmail.com>
+
+ Distributed under the Boost Software License, Version 1.0
+ See accompanying file LICENSE_1_0.txt or copy at
+ http://www.boost.org/LICENSE_1_0.txt
+=============================================================================/]
+
 [section:faq Frequently Asked Questions]
 
 [h3 How do I report a bug, issue, or feature request?]
diff --git a/doc/getting_started.qbk b/doc/getting_started.qbk
index 8c1a222..e24d052 100644
--- a/doc/getting_started.qbk
+++ b/doc/getting_started.qbk
@@ -1,3 +1,11 @@
+[/===========================================================================
+ Copyright (c) 2013-2015 Kyle Lutz <kyle.r.lutz at gmail.com>
+
+ Distributed under the Boost Software License, Version 1.0
+ See accompanying file LICENSE_1_0.txt or copy at
+ http://www.boost.org/LICENSE_1_0.txt
+=============================================================================/]
+
 [section:getting_started Getting Started]
 
 [section Downloading]
diff --git a/doc/interop.qbk b/doc/interop.qbk
index 7845306..cf8a1e2 100644
--- a/doc/interop.qbk
+++ b/doc/interop.qbk
@@ -1,3 +1,11 @@
+[/===========================================================================
+ Copyright (c) 2013-2015 Kyle Lutz <kyle.r.lutz at gmail.com>
+
+ Distributed under the Boost Software License, Version 1.0
+ See accompanying file LICENSE_1_0.txt or copy at
+ http://www.boost.org/LICENSE_1_0.txt
+=============================================================================/]
+
 [section:interop Interoperability]
 
 Boost.Compute provides a number of facilities to ease interoperability with
diff --git a/doc/introduction.qbk b/doc/introduction.qbk
index fc54472..c65fb62 100644
--- a/doc/introduction.qbk
+++ b/doc/introduction.qbk
@@ -1,3 +1,11 @@
+[/===========================================================================
+ Copyright (c) 2013-2015 Kyle Lutz <kyle.r.lutz at gmail.com>
+
+ Distributed under the Boost Software License, Version 1.0
+ See accompanying file LICENSE_1_0.txt or copy at
+ http://www.boost.org/LICENSE_1_0.txt
+=============================================================================/]
+
 [section:introduction Introduction]
 
 The Boost Compute library provides a C++ interface to multi-core CPU and GPGPU
diff --git a/doc/performance.qbk b/doc/performance.qbk
index 789eb9c..deb01e1 100644
--- a/doc/performance.qbk
+++ b/doc/performance.qbk
@@ -1,3 +1,11 @@
+[/===========================================================================
+ Copyright (c) 2013-2015 Kyle Lutz <kyle.r.lutz at gmail.com>
+
+ Distributed under the Boost Software License, Version 1.0
+ See accompanying file LICENSE_1_0.txt or copy at
+ http://www.boost.org/LICENSE_1_0.txt
+=============================================================================/]
+
 [section:performance Performance]
 
 The following tests were run with an NVIDIA Tesla K40c GPU on a system
diff --git a/doc/platforms_and_compilers.qbk b/doc/platforms_and_compilers.qbk
index 9d6d6cf..94ed28e 100644
--- a/doc/platforms_and_compilers.qbk
+++ b/doc/platforms_and_compilers.qbk
@@ -1,3 +1,11 @@
+[/===========================================================================
+ Copyright (c) 2013-2015 Kyle Lutz <kyle.r.lutz at gmail.com>
+
+ Distributed under the Boost Software License, Version 1.0
+ See accompanying file LICENSE_1_0.txt or copy at
+ http://www.boost.org/LICENSE_1_0.txt
+=============================================================================/]
+
 [section:platforms_and_compilers Platforms and Compilers]
 
 Boost.Compute has been tested on the following:
diff --git a/doc/porting_guide.qbk b/doc/porting_guide.qbk
index 912ef2d..42957d4 100644
--- a/doc/porting_guide.qbk
+++ b/doc/porting_guide.qbk
@@ -1,3 +1,11 @@
+[/===========================================================================
+ Copyright (c) 2013-2015 Kyle Lutz <kyle.r.lutz at gmail.com>
+
+ Distributed under the Boost Software License, Version 1.0
+ See accompanying file LICENSE_1_0.txt or copy at
+ http://www.boost.org/LICENSE_1_0.txt
+=============================================================================/]
+
 [section Porting Guide]
 
 [section OpenCL API]
diff --git a/doc/reference.qbk b/doc/reference.qbk
index e9e116e..e0b0a1f 100644
--- a/doc/reference.qbk
+++ b/doc/reference.qbk
@@ -1,3 +1,11 @@
+[/===========================================================================
+ Copyright (c) 2013-2015 Kyle Lutz <kyle.r.lutz at gmail.com>
+
+ Distributed under the Boost Software License, Version 1.0
+ See accompanying file LICENSE_1_0.txt or copy at
+ http://www.boost.org/LICENSE_1_0.txt
+=============================================================================/]
+
 [section:reference Reference]
 
 [section API Overview]
diff --git a/doc/tutorial.qbk b/doc/tutorial.qbk
index 7c24353..56b8bb8 100644
--- a/doc/tutorial.qbk
+++ b/doc/tutorial.qbk
@@ -1,3 +1,11 @@
+[/===========================================================================
+ Copyright (c) 2013-2015 Kyle Lutz <kyle.r.lutz at gmail.com>
+
+ Distributed under the Boost Software License, Version 1.0
+ See accompanying file LICENSE_1_0.txt or copy at
+ http://www.boost.org/LICENSE_1_0.txt
+=============================================================================/]
+
 [section:tutorial Tutorial]
 
 [section Hello World]
diff --git a/example/CMakeLists.txt b/example/CMakeLists.txt
index 9b26ad5..a58c4ab 100644
--- a/example/CMakeLists.txt
+++ b/example/CMakeLists.txt
@@ -1,3 +1,12 @@
+# ---------------------------------------------------------------------------
+#  Copyright (c) 2013-2014 Kyle Lutz <kyle.r.lutz at gmail.com>
+# 
+#  Distributed under the Boost Software License, Version 1.0
+#  See accompanying file LICENSE_1_0.txt or copy at
+#  http://www.boost.org/LICENSE_1_0.txt
+#
+# ---------------------------------------------------------------------------
+
 include_directories(../include)
 
 set(EXAMPLES
diff --git a/example/qimage_blur.cpp b/example/qimage_blur.cpp
index 0e322ff..cbfa314 100644
--- a/example/qimage_blur.cpp
+++ b/example/qimage_blur.cpp
@@ -1,3 +1,13 @@
+//---------------------------------------------------------------------------//
+// Copyright (c) 2014 Kyle Lutz <kyle.r.lutz at gmail.com>
+//
+// Distributed under the Boost Software License, Version 1.0
+// See accompanying file LICENSE_1_0.txt or copy at
+// http://www.boost.org/LICENSE_1_0.txt
+//
+// See http://boostorg.github.com/compute for more information.
+//---------------------------------------------------------------------------//
+
 #include <iostream>
 #include <algorithm>
 
diff --git a/include/boost/compute/random/threefry_engine.hpp b/include/boost/compute/random/threefry_engine.hpp
index 97af34d..5e54322 100644
--- a/include/boost/compute/random/threefry_engine.hpp
+++ b/include/boost/compute/random/threefry_engine.hpp
@@ -1,34 +1,12 @@
-// Added By: Muhammad Junaid Muzammil <mjunaidmuzammil at gmail.com>
-// Copyright 2010-2012, D. E. Shaw Research.
-// All rights reserved.
-
-// Redistribution and use in source and binary forms, with or without
-// modification, are permitted provided that the following conditions are
-// met:
-
-// * Redistributions of source code must retain the above copyright
-//   notice, this list of conditions, and the following disclaimer.
-
-// * Redistributions in binary form must reproduce the above copyright
-//   notice, this list of conditions, and the following disclaimer in the
-//   documentation and/or other materials provided with the distribution.
-
-// * Neither the name of D. E. Shaw Research nor the names of its
-//   contributors may be used to endorse or promote products derived from
-//   this software without specific prior written permission.
-
-// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
-// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
-// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
-// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
-// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
-// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
-// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
-// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
-// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
+//---------------------------------------------------------------------------//
+// Copyright (c) 2015 Muhammad Junaid Muzammil <mjunaidmuzammil at gmail.com>
+//
+// Distributed under the Boost Software License, Version 1.0
+// See accompanying file LICENSE_1_0.txt or copy at
+// http://www.boost.org/LICENSE_1_0.txt
+//
+// See http://boostorg.github.com/compute for more information.
+//---------------------------------------------------------------------------//
 
 #ifndef BOOST_COMPUTE_RANDOM_THREEFRY_HPP
 #define BOOST_COMPUTE_RANDOM_THREEFRY_HPP
@@ -97,6 +75,35 @@ private:
         std::string cache_key =
             std::string("threefry_engine_32x2");
 
+        // Copyright 2010-2012, D. E. Shaw Research.
+        // All rights reserved.
+
+        // Redistribution and use in source and binary forms, with or without
+        // modification, are permitted provided that the following conditions are
+        // met:
+
+        // * Redistributions of source code must retain the above copyright
+        //   notice, this list of conditions, and the following disclaimer.
+
+        // * Redistributions in binary form must reproduce the above copyright
+        //   notice, this list of conditions, and the following disclaimer in the
+        //   documentation and/or other materials provided with the distribution.
+
+        // * Neither the name of D. E. Shaw Research nor the names of its
+        //   contributors may be used to endorse or promote products derived from
+        //   this software without specific prior written permission.
+
+        // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
+        // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
+        // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
+        // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
+        // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
+        // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
+        // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
+        // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
+        // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+        // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
+        // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
         const char source[] =
             "#define THREEFRY2x32_DEFAULT_ROUNDS 20\n"
             "#define SKEIN_KS_PARITY_32 0x1BD11BDA\n"
diff --git a/perf/CMakeLists.txt b/perf/CMakeLists.txt
index 726e66d..7f7851e 100644
--- a/perf/CMakeLists.txt
+++ b/perf/CMakeLists.txt
@@ -1,3 +1,12 @@
+# ---------------------------------------------------------------------------
+#  Copyright (c) 2013 Kyle Lutz <kyle.r.lutz at gmail.com>
+# 
+#  Distributed under the Boost Software License, Version 1.0
+#  See accompanying file LICENSE_1_0.txt or copy at
+#  http://www.boost.org/LICENSE_1_0.txt
+#
+# ---------------------------------------------------------------------------
+
 include_directories(../include)
 
 set(PERF_BOOST_COMPONENTS system timer chrono program_options)
diff --git a/perf/perf.py b/perf/perf.py
index f3ff1fe..d2e2bb3 100755
--- a/perf/perf.py
+++ b/perf/perf.py
@@ -1,5 +1,12 @@
 #!/usr/bin/python
 
+# Copyright (c) 2014 Kyle Lutz <kyle.r.lutz at gmail.com>
+# Distributed under the Boost Software License, Version 1.0
+# See accompanying file LICENSE_1_0.txt or copy at
+# http://www.boost.org/LICENSE_1_0.txt
+#
+# See http://boostorg.github.com/compute for more information.
+
 # driver script for boost.compute benchmarking. will run a
 # benchmark for a given function (e.g. accumulate, sort).
 
diff --git a/perf/perf_exclusive_scan.cpp b/perf/perf_exclusive_scan.cpp
index 37fe114..e6c6513 100644
--- a/perf/perf_exclusive_scan.cpp
+++ b/perf/perf_exclusive_scan.cpp
@@ -1,3 +1,13 @@
+//---------------------------------------------------------------------------//
+// Copyright (c) 2014 Benoit
+//
+// Distributed under the Boost Software License, Version 1.0
+// See accompanying file LICENSE_1_0.txt or copy at
+// http://www.boost.org/LICENSE_1_0.txt
+//
+// See http://boostorg.github.com/compute for more information.
+//---------------------------------------------------------------------------//
+
 #include <algorithm>
 #include <iostream>
 #include <numeric>
diff --git a/perf/perf_tbb_merge.cpp b/perf/perf_tbb_merge.cpp
index 27927c6..a7aa814 100644
--- a/perf/perf_tbb_merge.cpp
+++ b/perf/perf_tbb_merge.cpp
@@ -1,3 +1,13 @@
+//---------------------------------------------------------------------------//
+// Copyright (c) 2014 Kyle Lutz <kyle.r.lutz at gmail.com>
+//
+// Distributed under the Boost Software License, Version 1.0
+// See accompanying file LICENSE_1_0.txt or copy at
+// http://www.boost.org/LICENSE_1_0.txt
+//
+// See http://boostorg.github.com/compute for more information.
+//---------------------------------------------------------------------------//
+
 #include <algorithm>
 #include <iostream>
 #include <vector>
diff --git a/perf/perf_thrust_exclusive_scan.cu b/perf/perf_thrust_exclusive_scan.cu
index 11f7aa8..e857618 100644
--- a/perf/perf_thrust_exclusive_scan.cu
+++ b/perf/perf_thrust_exclusive_scan.cu
@@ -1,5 +1,5 @@
 //---------------------------------------------------------------------------//
-// Copyright (c) 2013-2014 Kyle Lutz <kyle.r.lutz at gmail.com>
+// Copyright (c) 2014 Benoit
 //
 // Distributed under the Boost Software License, Version 1.0
 // See accompanying file LICENSE_1_0.txt or copy at
diff --git a/perf/perfdoc.py b/perf/perfdoc.py
index dea82eb..e9c6036 100755
--- a/perf/perfdoc.py
+++ b/perf/perfdoc.py
@@ -1,5 +1,12 @@
 #!/usr/bin/python
 
+# Copyright (c) 2014 Kyle Lutz <kyle.r.lutz at gmail.com>
+# Distributed under the Boost Software License, Version 1.0
+# See accompanying file LICENSE_1_0.txt or copy at
+# http://www.boost.org/LICENSE_1_0.txt
+#
+# See http://boostorg.github.com/compute for more information.
+
 import os
 import sys
 import pylab
diff --git a/test/CMakeLists.txt b/test/CMakeLists.txt
index ff2532c..7cd6af0 100644
--- a/test/CMakeLists.txt
+++ b/test/CMakeLists.txt
@@ -1,3 +1,12 @@
+# ---------------------------------------------------------------------------
+#  Copyright (c) 2013 Kyle Lutz <kyle.r.lutz at gmail.com>
+# 
+#  Distributed under the Boost Software License, Version 1.0
+#  See accompanying file LICENSE_1_0.txt or copy at
+#  http://www.boost.org/LICENSE_1_0.txt
+#
+# ---------------------------------------------------------------------------
+
 include_directories(../include)
 
 set(BOOST_COMPONENTS unit_test_framework)
diff --git a/test/context_setup.hpp b/test/context_setup.hpp
index a68d686..bff606e 100644
--- a/test/context_setup.hpp
+++ b/test/context_setup.hpp
@@ -1,3 +1,13 @@
+//---------------------------------------------------------------------------//
+// Copyright (c) 2013-2014 Denis Demidov
+//
+// Distributed under the Boost Software License, Version 1.0
+// See accompanying file LICENSE_1_0.txt or copy at
+// http://www.boost.org/LICENSE_1_0.txt
+//
+// See http://boostorg.github.com/compute for more information.
+//---------------------------------------------------------------------------//
+
 #ifndef BOOST_COMPUTE_TEST_CONTEXT_SETUP_HPP
 #define BOOST_COMPUTE_TEST_CONTEXT_SETUP_HPP
 
diff --git a/test/extra/CMakeLists.txt b/test/extra/CMakeLists.txt
index 267532b..2fb58a2 100644
--- a/test/extra/CMakeLists.txt
+++ b/test/extra/CMakeLists.txt
@@ -1,3 +1,12 @@
+# ---------------------------------------------------------------------------
+#  Copyright (c) 2015 Kyle Lutz <kyle.r.lutz at gmail.com>
+# 
+#  Distributed under the Boost Software License, Version 1.0
+#  See accompanying file LICENSE_1_0.txt or copy at
+#  http://www.boost.org/LICENSE_1_0.txt
+#
+# ---------------------------------------------------------------------------
+
 # include local test headers
 include_directories(..)
 
diff --git a/test/opencl_version_check.hpp b/test/opencl_version_check.hpp
index 6245651..c992e19 100644
--- a/test/opencl_version_check.hpp
+++ b/test/opencl_version_check.hpp
@@ -1,3 +1,13 @@
+//---------------------------------------------------------------------------//
+// Copyright (c) 2014 Denis Demidov
+//
+// Distributed under the Boost Software License, Version 1.0
+// See accompanying file LICENSE_1_0.txt or copy at
+// http://www.boost.org/LICENSE_1_0.txt
+//
+// See http://boostorg.github.com/compute for more information.
+//---------------------------------------------------------------------------//
+
 #ifndef BOOST_COMPUTE_TEST_OPENCL_VERSION_CHECK_HPP
 #define BOOST_COMPUTE_TEST_OPENCL_VERSION_CHECK_HPP
 

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



More information about the debian-science-commits mailing list