SomeNet
/
public repos
/
pub
/
astra
/
parallel.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
comments, return value
[pub/astra/parallel.git]
/
openmp
/
prefix
/
algorithm_3.h
1
/*
2
* O(nlog n) work algorithm (Hillis-Steele)
3
*/
4
#include <stdio.h>
5
#include "prefix.h"
6
7
int algorithm_3 (numtype y[], int n, int ops[]);