merge fixes
This commit is contained in:
34
benchmarks/opencl/reduce0/oclReduction.h
Normal file
34
benchmarks/opencl/reduce0/oclReduction.h
Normal file
@@ -0,0 +1,34 @@
|
||||
/*
|
||||
* Copyright 1993-2010 NVIDIA Corporation. All rights reserved.
|
||||
*
|
||||
* Please refer to the NVIDIA end user license agreement (EULA) associated
|
||||
* with this source code for terms and conditions that govern your use of
|
||||
* this software. Any use, reproduction, disclosure, or distribution of
|
||||
* this software and related documentation outside the terms of the EULA
|
||||
* is strictly prohibited.
|
||||
*
|
||||
*/
|
||||
|
||||
#ifndef __REDUCTION_H__
|
||||
#define __REDUCTION_H__
|
||||
|
||||
template <class T>
|
||||
void reduce_sm10(int size, int threads, int blocks,
|
||||
int whichKernel, T *d_idata, T *d_odata);
|
||||
|
||||
template <class T>
|
||||
void reduce_sm13(int size, int threads, int blocks,
|
||||
int whichKernel, T *d_idata, T *d_odata);
|
||||
|
||||
// CL objects
|
||||
cl_platform_id cpPlatform;
|
||||
cl_uint uiNumDevices;
|
||||
cl_device_id* cdDevices;
|
||||
cl_context cxGPUContext;
|
||||
cl_command_queue cqCommandQueue;
|
||||
cl_device_id device;
|
||||
cl_int ciErrNum;
|
||||
const char* source_path;
|
||||
bool smallBlock = true;
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user