Skip to content

bmerry/clogs

master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Code

Latest commit

 

Git stats

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
doc
 
 
 
 
src
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
waf
 
 
 
 

Introduction

Note: CLOGS is no longer being actively developed. If you need new features, your best option is to develop and submit a pull request, or even better, offer to take over.

CLOGS is a library for higher-level operations on top of the OpenCL C++ API. It is designed to integrate with other OpenCL code, including synchronization using OpenCL events. Currently only three operations are supported: radix sorting, reduction, and exclusive scan. Radix sort supports all the unsigned integral types as keys, and all the built-in scalar and vector types suitable for storage in buffers as values. Scan supports all the integral types. It also supports vector types, which allows for limited multi-scan capabilities. Reduction supports all the built-in types, but the floating-point types are not tested.

For more information, refer to the user manual. There is also a paper comparing performance to other libraries.

Quick install instructions

For the impatient, the process is

$ ./waf configure [ --prefix=install-path ]
$ ./waf build
$ sudo ./waf install

which will build and install to the install path (defaults to /usr/local), and which will install the documentation in /usr/local/share/doc/clogs if you have xsltproc and doxygen installed.