~ubuntu-branches/ubuntu/trusty/libthrust/trusty

« back to all changes in this revision

Viewing changes to detail/device/cuda/detail/launch_closure.h

  • Committer: Bazaar Package Importer
  • Author(s): Andreas Beckmann
  • Date: 2011-05-28 09:32:48 UTC
  • Revision ID: james.westby@ubuntu.com-20110528093248-np3euv5sj7fw3nyv
Tags: upstream-1.4.0
ImportĀ upstreamĀ versionĀ 1.4.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 *  Copyright 2008-2011 NVIDIA Corporation
 
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
#pragma once
 
18
 
 
19
#include <thrust/detail/config.h>
 
20
 
 
21
namespace thrust
 
22
{
 
23
 
 
24
namespace detail
 
25
{
 
26
 
 
27
namespace device
 
28
{
 
29
 
 
30
namespace cuda
 
31
{
 
32
 
 
33
namespace detail
 
34
{
 
35
 
 
36
template<typename NullaryFunction>
 
37
  size_t block_size_with_maximal_occupancy(size_t dynamic_smem_bytes_per_thread = 0);
 
38
 
 
39
template<typename NullaryFunction, typename Size1, typename Size2>
 
40
  size_t num_blocks_with_maximal_occupancy(Size1 n, Size2 block_size, size_t dynamic_smem_bytes_per_block = 0);
 
41
 
 
42
template<typename NullaryFunction, typename Size>
 
43
  void launch_closure(NullaryFunction f, Size n);
 
44
 
 
45
template<typename NullaryFunction, typename Size1, typename Size2>
 
46
  void launch_closure(NullaryFunction f, Size1 num_blocks, Size2 block_size);
 
47
 
 
48
template<typename NullaryFunction, typename Size1, typename Size2, typename Size3>
 
49
  void launch_closure(NullaryFunction f, Size1 num_blocks, Size2 block_size, Size3 smem_size);
 
50
 
 
51
} // end detail
 
52
 
 
53
} // end cuda
 
54
  
 
55
} // end device
 
56
  
 
57
} // end detail
 
58
 
 
59
} // end thrust
 
60
 
 
61
#include <thrust/detail/device/cuda/detail/launch_closure.inl>
 
62