// This is a quick example program that shows // multiple processing elements executing a // single statement. #include #include #include int main(void) { // The standard libraries provide standard printf and a poly printfp function printf("Hello world\n"); // "Normal" Sequential instruction printfp("Hello world from PE %d\n",get_penum()); //SIMD parallel instruction return 0; }