Giter Club home page Giter Club logo

libgomp-aid's Introduction

libgomp-aid's People

Contributors

monellz avatar

Watchers

 avatar  avatar

libgomp-aid's Issues

Survey Question on the For loop in source file libgomp/testsuite/libgomp.c/loop-14.c line 144

Hello Sir/ Madam
We are from a research group at Iowa State University, USA. We want to do a survey on Github developers on the methods they used for paralleling their code. To do the survey, We want to ask three questions:

  1. Have you ever tried to add pragma for that 'for' loop?.

  2. How much confidence do you have about the correctness of this implementation? You can choose from 1-5 with 1 as the lowest confidence score and 5 as the highest confidence.

  3. (Optional) Do you actually run (interpret the code with compilation and pass input/get output) the code? Yes/No

  • If yes, can you provide the information of what are the input and expected output of this program (the input that caused the program to run through this for-loop).

The for loop is from line 144 of file https:/github.com/monellz/libgomp-aid/blob/master/libgomp/testsuite/libgomp.c/loop-14.c
Here is a part of the code:

nan
for (j = 0; j < 4; j++)
for (i = jll; i < kll; i++)
for (k = 0; k < 5; k += 2)
l++;

Sincerely thanks

Survey Question on the For loop in source file gcc/testsuite/gcc.dg/gomp/linear-1.c line 35

Hello Sir/ Madam
We are from a research group at Iowa State University, USA. We want to do a survey on Github developers on the methods they used for paralleling their code. To do the survey, We want to ask three questions:

  1. Have you ever tried to add pragma for that 'for' loop?.

  2. How much confidence do you have about the correctness of this implementation? You can choose from 1-5 with 1 as the lowest confidence score and 5 as the highest confidence.

  3. (Optional) Do you actually run (interpret the code with compilation and pass input/get output) the code? Yes/No

  • If yes, can you provide the information of what are the input and expected output of this program (the input that caused the program to run through this for-loop).

The for loop is from line 35 of file https:/github.com/monellz/libgomp-aid/blob/master/gcc/testsuite/gcc.dg/gomp/linear-1.c
Here is a part of the code:

nan
for (i = 0; i < 32; i++)
for (j = 0; j < 32; j += 2)
;

Sincerely thanks

Survey Question on the For loop in source file gcc/testsuite/c-c++-common/gomp/if-1.c line 26

Hello Sir/ Madam
We are from a research group at Iowa State University, USA. We want to do a survey on Github developers on the methods they used for paralleling their code. To do the survey, We want to ask three questions:

  1. Have you ever tried to add pragma for that 'for' loop?.

  2. How much confidence do you have about the correctness of this implementation? You can choose from 1-5 with 1 as the lowest confidence score and 5 as the highest confidence.

  3. (Optional) Do you actually run (interpret the code with compilation and pass input/get output) the code? Yes/No

  • If yes, can you provide the information of what are the input and expected output of this program (the input that caused the program to run through this for-loop).

The for loop is from line 26 of file https:/github.com/monellz/libgomp-aid/blob/master/gcc/testsuite/c-c++-common/gomp/if-1.c
Here is a part of the code:

nan
for (i = 0; i < 16; i++)
;

Sincerely thanks

Survey Question on the For loop in source file https:/github.com/monellz/libgomp-aid/blob/master/libgomp/testsuite/libgomp.c/loop-14.c line 19

Hello Sir/ Madam
We are from a research group at Iowa State University, USA. We want to do a survey on Github developers on the methods they used for paralleling their code. To do the survey, We want to ask three questions about this for loop:

Can you briefly explain the purpose of using pragma for this case? If the pragma contained reduction and private clauses, can you briefly mention the purposes of variables in those clauses?

How much confidence do you have about the correctness of this implementation? You can choose from 1-5 with 1 as the lowest confidence score and 5 as the highest confidence score.

(Optional) Do you actually run (interpret the code with compilation and pass input/get output) the code and see the optimization of parallelization? Yes/No

If yes, can you provide the information of what are the input and expected output of this program (the input that caused the program to run through this for-loop).
The for loop is from line 19 of file https:/github.com/monellz/libgomp-aid/blob/master/libgomp/testsuite/libgomp.c/loop-14.c
Here is a part of the code:

#pragma omp parallel for reduction(+: l) schedule(static, 2)
for (i = ji; i < ki; i++)
l++;

Survey Question on the For loop in source file https:/github.com/monellz/libgomp-aid/blob/master/libgomp/testsuite/libgomp.c/loop-15.c line 14

Hello Sir/ Madam
We are from a research group at Iowa State University, USA. We want to do a survey on Github developers on the methods they used for paralleling their code. To do the survey, We want to ask three questions about this for loop:

Can you briefly explain the purpose of using pragma for this case? If the pragma contained reduction and private clauses, can you briefly mention the purposes of variables in those clauses?

How much confidence do you have about the correctness of this implementation? You can choose from 1-5 with 1 as the lowest confidence score and 5 as the highest confidence score.

(Optional) Do you actually run (interpret the code with compilation and pass input/get output) the code and see the optimization of parallelization? Yes/No

If yes, can you provide the information of what are the input and expected output of this program (the input that caused the program to run through this for-loop).
The for loop is from line 14 of file https:/github.com/monellz/libgomp-aid/blob/master/libgomp/testsuite/libgomp.c/loop-15.c
Here is a part of the code:

#pragma omp for reduction(+: l) schedule(runtime)
for (i = ji; i < ki; i++)
l++;

Survey Question on the For loop in source file libgomp/testsuite/libgomp.c/simd-17.c line 37

We are from a research group at Iowa State University, USA. We want to do a survey on Github developers on the methods they used for paralleling their code. To do the survey, We want to ask three questions:

  1. Have you ever tried to add pragma for that 'for' loop?.

  2. How much confidence do you have about the correctness of this implementation? You can choose from 1-5 with 1 as the lowest confidence score and 5 as the highest confidence.

  3. (Optional) Do you actually run (interpret the code with compilation and pass input/get output) the code? Yes/No

  • If yes, can you provide the information of what are the input and expected output of this program (the input that caused the program to run through this for-loop).

The for loop is from line 37 of file https:/github.com/monellz/libgomp-aid/blob/master/libgomp/testsuite/libgomp.c/simd-17.c
Here is a part of the code:

nan
for (int i = 0; i < 8; i++)
for (int j = 0; j < 8; j++)
{
c = c + (b != ((7 + (2 * j)) + ((2 * 8) * i)));
foo(&b, &i, &j, 2);
}

inline static void foo(int *b, int *i, int *j, int x)
{
*b = (((*b) + x) + ((*i) - (*i))) + ((*j) - (*j));
}

Sincerely thanks

Survey Question on the For loop in source file libgomp/testsuite/libgomp.c/examples-4/declare_target-4.c line 34

Hello Sir/ Madam
We are from a research group at Iowa State University, USA. We want to do a survey on Github developers on the methods they used for paralleling their code. To do the survey, We want to ask three questions:

  1. Have you ever tried to add pragma for that 'for' loop?.

  2. How much confidence do you have about the correctness of this implementation? You can choose from 1-5 with 1 as the lowest confidence score and 5 as the highest confidence.

  3. (Optional) Do you actually run (interpret the code with compilation and pass input/get output) the code? Yes/No

  • If yes, can you provide the information of what are the input and expected output of this program (the input that caused the program to run through this for-loop).

The for loop is from line 34 of file https:/github.com/monellz/libgomp-aid/blob/master/libgomp/testsuite/libgomp.c/examples-4/declare_target-4.c
Here is a part of the code:

nan
for (i = 0; i < 1000; i++)
tmp += Pfun(i, k);

float Pfun(const int i, const int k)
{
return Q[i][k] * Q[k][i];
}

Sincerely thanks

Survey Question on the For loop in source file libgomp/testsuite/libgomp.c/loop-13.c line 16

Hello Sir/ Madam
We are from a research group at Iowa State University, USA. We want to do a survey on Github developers on the methods they used for paralleling their code. To do the survey, We want to ask three questions:

  1. Have you ever tried to add pragma for that 'for' loop?.

  2. How much confidence do you have about the correctness of this implementation? You can choose from 1-5 with 1 as the lowest confidence score and 5 as the highest confidence.

  3. (Optional) Do you actually run (interpret the code with compilation and pass input/get output) the code? Yes/No

  • If yes, can you provide the information of what are the input and expected output of this program (the input that caused the program to run through this for-loop).

The for loop is from line 16 of file https:/github.com/monellz/libgomp-aid/blob/master/libgomp/testsuite/libgomp.c/loop-13.c
Here is a part of the code:

nan
for (i = ji; i < ki; i++)
l++;

Sincerely thanks

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.