代码搜索:Parallel
找到约 6,530 项符合「Parallel」的源代码
代码结果 6,530
www.eeworm.com/read/385891/2580478
c pd.c
/*
pd.c (c) 1997-8 Grant R. Guenther
Under the terms of the GNU General Public License.
This is the high-level driver for parallel
www.eeworm.com/read/385891/2580492
c pf.c
/*
pf.c (c) 1997-8 Grant R. Guenther
Under the terms of the GNU General Public License.
This is the high-level driver for parallel
www.eeworm.com/read/383940/2605301
todo
- The handling of fuse and lock bits needs some serious work. As it stands
it does not work with Hi-V parallel programming (on stk500). I've
started working on this, but it was way too intusi
www.eeworm.com/read/383940/2607477
h atm128_sim.h
#ifndef ATM128_SIM_H_INCLUDED
#define ATM128_SIM_H_INCLUDED
/*
* In normal avr code, the address and identifier of a register can be
* the same. In a parallel simulation, this runs into issues with
www.eeworm.com/read/368386/2817202
c pd.c
/*
pd.c (c) 1997-8 Grant R. Guenther
Under the terms of the GNU General Public License.
This is the high-level driver for parallel
www.eeworm.com/read/368386/2817216
c pf.c
/*
pf.c (c) 1997-8 Grant R. Guenther
Under the terms of the GNU General Public License.
This is the high-level driver for parallel
www.eeworm.com/read/366702/2867719
c pr35337.c
// PR c++/35337
// { dg-do compile }
// { dg-options "-fopenmp" }
struct A { };
void
foo ()
{
#pragma omp parallel firstprivate(A) // { dg-error "struct A\[^\n\]*is not a variable" }
;
}
void
bar
www.eeworm.com/read/366702/2867724
c pr33333.c
// PR middle-end/33333
// { dg-do compile }
struct A
{
int n;
void foo ();
};
void
A::foo ()
{
try
{
#pragma omp parallel for
for (int i = 0; i < n; ++i)
;
} catch (...) {}
}
www.eeworm.com/read/366702/2867746
c pr26690-1.c
// PR c++/26690
// { dg-do compile }
struct A
{ // { dg-error "A::A\\(const A&\\)" }
A (int); // { dg-error "candidates" }
};
void
foo ()
{
A a(0);
#pragma omp parallel private (a) // { d
www.eeworm.com/read/366702/2867753
c sections-3.c
// { dg-do compile }
extern void bar (void);
int main (void)
{
#pragma omp parallel sections nowait /* { dg-error "'nowait'" } */
{
#pragma omp section
{ bar(); }
#pragma omp section