Coder Social home page Coder Social logo

Comments (2)

ouankou avatar ouankou commented on August 24, 2024

A suffix is added to the current generated function name, which is __<enclosing function name>__<original line number>__.
For example, the previous name OUT__1__5599__ would be changed to OUT__1__5599__main__6__. It indicates the original OpenMP code is in the main function at line 10. The kmpc global tid is also named based on the same logic.

#include <stdio.h>
#define N 1
#include "rex_kmp.h"
static void OUT__1__5599__main__6__(int *__global_tid,int *__bound_tid,void *__out_argv);

int main(int argc,char **argv)
{
  int __global_tid_main_6 = __kmpc_global_thread_num(0);
  int status = 0;
  int i = 1;
  if (i == 1)
    __kmpc_fork_call(0,1,OUT__1__5599__main__6__,0);
   else {
    OUT__1__5599__main__6__(&__global_tid_main_6,0,0);
  }
}

static void OUT__1__5599__main__6__(int *__global_tid,int *__bound_tid,void *__out_argv)
{
  int __global_tid_main_8 = __kmpc_global_thread_num(0);
  if (__kmpc_single(0,__global_tid_main_8)) {
    printf("Test\n");
    __kmpc_end_single(0,__global_tid_main_8);
  }
  __kmpc_barrier(0,__global_tid_main_8);
}

from rexompiler.

ouankou avatar ouankou commented on August 24, 2024

It's fixed by commit 7bf7ea0.

from rexompiler.

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.