Sha256: 67eec49bdae0cb48ee05d7f32600c616c9abc6e13a6569df00c64348096d14f4
Contents?: true
Size: 1.11 KB
Versions: 1
Compression:
Stored size: 1.11 KB
Contents
// // This file is part of the Bones source-to-source compiler examples. This C-code // example is meant to illustrate the use of Bones. For more information on Bones // use the contact information below. // // == More information on Bones // Contact............Cedric Nugteren <c.nugteren@tue.nl> // Web address........http://parse.ele.tue.nl/bones/ // // == File information // Filename...........shared/example1.c // Author.............Cedric Nugteren // Last modified on...16-April-2012 // #include <stdio.h> #include <stdlib.h> #define SIZE 512*1024 // This is 'example1', a basic associative and commutative reduction to scalar int main(void) { int i; // Declare input/output arrays int *A = (int *)malloc(SIZE*sizeof(int)); int B[1]; // Set the input data for(i=0;i<SIZE;i++) { A[i] = 1; } // Perform the computation B[0] = 0; #pragma scop { #pragma species kernel B[0:0]|full ^ A[0:SIZE-1]|element -> B[0:0]|shared for (i = 0; i < SIZE; i++) { B[0] = B[0] + A[i]; } #pragma species endkernel example01_k1 } #pragma endscop // Clean-up and exit the function fflush(stdout); return 0; }
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
bones-compiler-1.3.1 | test/examples/shared/example01_species.c |