代码搜索:Parallel

找到约 6,530 项符合「Parallel」的源代码

代码结果 6,530
www.eeworm.com/read/366702/2877239

f90 crayptr4.f90

! { dg-do compile } ! { dg-options "-fopenmp -fcray-pointer" } subroutine foo (n) integer :: a, b (38), n pointer (ip, a (n + 1)) b = 2 n = 36 ip = loc (b) !$omp parallel default (none) sh
www.eeworm.com/read/366702/2877248

f90 a.30.1.f90

! { dg-do compile } SUBROUTINE A30(N, A, B) INTEGER N REAL A(*), B(*) INTEGER I !$OMP PARALLEL !$OMP DO LASTPRIVATE(I) DO I=1,N-1 A(I) = B(I) + B(I+1)
www.eeworm.com/read/366702/2877260

f90 a.1.1.f90

! { dg-do compile } SUBROUTINE A1(N, A, B) INTEGER I, N REAL B(N), A(N) !$OMP PARALLEL DO !I is private by default DO I=2,N B(I) = (A(I) + A(I-1)) / 2.0 ENDDO !
www.eeworm.com/read/366702/2883457

c combined-1.c

/* { dg-do compile } */ /* { dg-options "-O1 -fopenmp -fdump-tree-final_cleanup" } */ int a[10]; int foo (void) { int i; #pragma omp parallel for schedule(runtime) for (i = 0; i < 10; i++)
www.eeworm.com/read/366702/2883500

c a.35.1.c

/* { dg-do compile } */ void work (int i, int j) { } void wrong1 (int n) { #pragma omp parallel default(shared) { int i, j; #pragma omp for for (i = 0; i < n; i++) { /* incorrect ne
www.eeworm.com/read/366702/2883510

c a.34.1.c

/* { dg-do compile } */ void work (int i, int j) { } void good_nesting (int n) { int i, j; #pragma omp parallel default(shared) { #pragma omp for for (i = 0; i < n; i++) { #pragma omp
www.eeworm.com/read/366702/2883584

c pr27573.c

/* PR middle-end/27573 */ /* { dg-do compile } */ /* { dg-options "-O2 -fopenmp -fprofile-generate" } */ extern int puts (const char *); int main (void) { int i, j = 8; #pragma omp parallel {
www.eeworm.com/read/362989/2924540

h baycom.h

/* * The Linux BAYCOM driver for the Baycom serial 1200 baud modem * and the parallel 9600 baud modem * (C) 1997-1998 by Thomas Sailer, HB9JNX/AE4WA */ #ifndef _BAYCOM_H #define _BAYCOM_H /* ---
www.eeworm.com/read/357083/3030285

h baycom.h

/* * The Linux BAYCOM driver for the Baycom serial 1200 baud modem * and the parallel 9600 baud modem * (C) 1997-1998 by Thomas Sailer, HB9JNX/AE4WA */ #ifndef _BAYCOM_H #define _BAYCOM_H /* ---
www.eeworm.com/read/356690/3040170

c byteblaster.c

/* * $Id: byteblaster.c,v 1.8 2003/08/22 22:42:02 telka Exp $ * * Altera ByteBlaster/ByteBlaster II/ByteBlasterMV Parallel Port Download Cable Driver * Copyright (C) 2002, 2003 ETC s.r.o. * * Th