-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
19 lines (15 loc) · 959 Bytes
/
index.html
File metadata and controls
19 lines (15 loc) · 959 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
---
layout: default
title: CUDPP
---
<h2>CUDA Data Parallel Primitives Library</h2>
<p>CUDPP is a library of data-parallel algorithm primitives such as parallel prefix-sum (“scan”), parallel sort, and parallel reduction. Primitives such as these are important building blocks for a wide variety of data-parallel algorithms, including sorting, stream compaction, and building data structures such as trees and summed-area tables. CUDPP runs on processors that support CUDA.</p>
<p>For detailed information, see the <a href="http://cudpp.github.io/cudpp/2.3/">CUDPP Documentation</a>. A good place to start is the <a href="http://cudpp.github.io/cudpp/2.3/example_simple_c_u_d_p_p.html">simpleCUDPP Example</a>.
<div id="home">
<h2>News</h2>
<ul class="posts">
{% for post in site.posts %}
<li><span>{{ post.date | date_to_string }}</span> » <a href="{{ post.url }}">{{ post.title }}</a></li>
{% endfor %}
</ul>
</div>