代码搜索:Parallel
找到约 6,530 项符合「Parallel」的源代码
代码结果 6,530
www.eeworm.com/read/377584/2698886
cpp test_idxiter.cpp
#include "test_IdxIter.h"
#include "Idx.h"
#include "IdxIterators.h"
#include "Generators.h"
#include "Blas.h"
#include
#include
//#include
#include
www.eeworm.com/read/377584/2699032
cpp test_idxiter.cpp
#include "test_IdxIter.h"
#include "Idx.h"
#include "IdxIterators.h"
#include "Generators.h"
#include "Blas.h"
#include
#include
//#include
#include
www.eeworm.com/read/372616/2770994
c cpia_usb.c
/*
* cpia_usb CPiA USB driver
*
* Supports CPiA based parallel port Video Camera's.
*
* Copyright (C) 1999 Jochen Scharrlach
* Copyright (C) 1999, 2000 Jo
www.eeworm.com/read/368386/2817174
c cpia_usb.c
/*
* cpia_usb CPiA USB driver
*
* Supports CPiA based parallel port Video Camera's.
*
* Copyright (C) 1999 Jochen Scharrlach
* Copyright (C) 1999, 2000 Jo
www.eeworm.com/read/368386/2817196
makefile
#
# Makefile for Parallel port IDE device drivers.
#
# 7 October 2000, Bartlomiej Zolnierkiewicz
# Rewritten to use lists instead of if-statements.
#
L_TARGET := paride.a
export-
www.eeworm.com/read/366702/2867780
c block-10.c
// { dg-do compile }
void foo(int i)
{
int j;
switch (i)
{
#pragma omp parallel
{ case 0:; } // { dg-error "jump|enters" }
}
switch (i)
{
#pragma omp for
for (j = 0; j < 10; +
www.eeworm.com/read/366702/2877242
f90 a.17.3.f90
! { dg-do compile }
SUBROUTINE A17_3_WRONG
INTEGER:: I
REAL:: R
EQUIVALENCE(I,R)
!$OMP PARALLEL
!$OMP ATOMIC
I=I+1
! incorrect because I and R reference the s
www.eeworm.com/read/366702/2877269
f90 a.35.1.f90
! { dg-do compile }
SUBROUTINE WORK(I, J)
INTEGER I, J
END SUBROUTINE WORK
SUBROUTINE WRONG1(N)
INTEGER N
INTEGER I,J
!$OMP PARALLEL DEFAULT(SHARED)
!$OMP DO
www.eeworm.com/read/366702/2877280
f90 a.35.4.f90
! { dg-do compile }
SUBROUTINE WRONG4(N)
INTEGER N
INTEGER I
!$OMP PARALLEL DEFAULT(SHARED)
!$OMP DO
DO I = 1, N
CALL WORK(I, 1)
! incorrect nesting of barr
www.eeworm.com/read/366702/2883471
c block-10.c
// { dg-do compile }
void foo(int i)
{
int j;
switch (i) // { dg-error "invalid entry" }
{
#pragma omp parallel
{ case 0:; }
}
switch (i) // { dg-error "invalid entry" }
{
#pr