Bolt  1.1
C++ template library with support for OpenCL
min_element.h
Go to the documentation of this file.
1 /***************************************************************************
2 * Copyright 2012 - 2013 Advanced Micro Devices, Inc.
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 
16 ***************************************************************************/
17 
18 #if !defined( BOLT_CL_MIN_ELEMENT_H )
19 #define BOLT_CL_MIN_ELEMENT_H
20 #pragma once
21 
22 #include <bolt/cl/bolt.h>
23 #include <bolt/cl/functional.h>
24 #include <bolt/cl/device_vector.h>
25 
26 #include <string>
27 #include <iostream>
28 
34 namespace bolt {
35  namespace cl {
36 
76  template<typename ForwardIterator>
77  ForwardIterator min_element(bolt::cl::control &ctl,
78  ForwardIterator first,
79  ForwardIterator last,
80  const std::string& cl_code="");
81 
82  template<typename ForwardIterator>
83  ForwardIterator min_element(ForwardIterator first,
84  ForwardIterator last,
85  const std::string& cl_code="");
86 
87 
120  template<typename ForwardIterator, typename BinaryPredicate>
121  ForwardIterator min_element(bolt::cl::control &ctl,
122  ForwardIterator first,
123  ForwardIterator last,
124  BinaryPredicate binary_op,
125  const std::string& cl_code="") ;
126 
127  template<typename ForwardIterator, typename BinaryPredicate>
128  ForwardIterator min_element(ForwardIterator first,
129  ForwardIterator last,
130  BinaryPredicate binary_op,
131  const std::string& cl_code="") ;
132 
133 
134 
137  };
138 };
139 
140 #include <bolt/cl/detail/min_element.inl>
141 #endif