Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F92281066
cudpp_scan.h
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Tue, Nov 19, 01:46
Size
1 KB
Mime Type
text/x-c++
Expires
Thu, Nov 21, 01:46 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
22409285
Attached To
rLAMMPS lammps
cudpp_scan.h
View Options
// -------------------------------------------------------------
// cuDPP -- CUDA Data Parallel Primitives library
// -------------------------------------------------------------
// $Revision$
// $Date$
// -------------------------------------------------------------
// This source code is distributed under the terms of license.txt
// in the root directory of this source distribution.
// -------------------------------------------------------------
/**
* @file
* cudpp_scan.h
*
* @brief Scan functionality header file - contains CUDPP interface (not public)
*/
#ifndef _CUDPP_SCAN_H_
#define _CUDPP_SCAN_H_
class
CUDPPScanPlan
;
extern
"C"
void
allocScanStorage
(
CUDPPScanPlan
*
plan
);
extern
"C"
void
freeScanStorage
(
CUDPPScanPlan
*
plan
);
extern
"C"
void
cudppScanDispatch
(
void
*
d_out
,
const
void
*
d_in
,
size_t
numElements
,
size_t
numRows
,
const
CUDPPScanPlan
*
plan
);
#endif
// _CUDPP_SCAN_H_
Event Timeline
Log In to Comment