Coder Social home page Coder Social logo

Comments (4)

jdayal-ssi avatar jdayal-ssi commented on July 4, 2024

Fixed this by changing the line
shared(local_residual, v1v, v2v,)
to
shared(local_residual, v1v, v2v, n)

from hpcg.

maherou avatar maherou commented on July 4, 2024

from hpcg.

maherou avatar maherou commented on July 4, 2024

from hpcg.

luszczek avatar luszczek commented on July 4, 2024

I cannot reproduce this problem with Clang 14 through 16 nor with godbolt.org where I used this source code:

#include <cmath>

typedef int local_int_t;
struct Vector_STRUCT{local_int_t localLength;double * values;void*optimizationData;};
typedef struct Vector_STRUCT Vector;
int ComputeResidual(const local_int_t n, const Vector & v1, const Vector & v2, double & residual) {

  double * v1v = v1.values;
  double * v2v = v2.values;
  double local_residual = 0.0;

#pragma omp parallel shared(local_residual, v1v, v2v)
  {
    double threadlocal_residual = 0.0;
    #pragma omp for
    for (local_int_t i=0; i<n; i++) {
      double diff = std::fabs(v1v[i] - v2v[i]);
      if (diff > threadlocal_residual) threadlocal_residual = diff;
    }
    #pragma omp critical
    {
      if (threadlocal_residual>local_residual) local_residual = threadlocal_residual;
    }
  }
  residual = local_residual;
  return 0;
}

It would be good to know the origins of the tool chain used for MPICH 4.1.1. Was it system default installation or it came from another packag manager?

from hpcg.

Related Issues (20)

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.