Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6728209
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T10:08:32+00:00 2026-05-26T10:08:32+00:00

I have a CPU consuming function do_long that I need to run on two

  • 0

I have a CPU consuming function do_long that I need to run on two different datasets.

do_long(data1);
do_long(data2);

do_long() {
#pragma omp for
    for(...) {
        // do proccessing
    }
}

I have N threads available (depends on machine). How to tell OpenMP that I want that both do_long
functions are run in parallel, and N/2 threads should perform the loop in first do_long and another N/2 should process second do_long?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-26T10:08:33+00:00Added an answer on May 26, 2026 at 10:08 am

    One approach is to do it using nested parallelism:

    void do_long(int threads) {
    #pragma omp parallel for num_threads(threads)
        for(...) {
            // do proccessing
        }
    }
    
    
    int main(){
        omp_set_nested(1);
    
        int threads = 8;
        int sub_threads = (threads + 1) / 2;
    
    #pragma omp parallel num_threads(2)
        {
            int i = omp_get_thread_num();
    
            if (i == 0){
                do_long(data1, sub_threads);
            }
            if (i == 1 || omp_get_num_threads() != 2){
                do_long(data2, sub_threads);
            }
        }
    
        return 0;
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a cpu-consuming code, where some function with a loop is executed many
I have a Samurize config that shows a CPU usage graph similar to Task
I have a winforms application that normally is at about 2-4% CPU. We are
I have a collection of PHP scripts that are extremely CPU intensive, juggling millions
I have some legacy code that was used to monitor my applications cpu,memory etc
I have soft real-time .NET application run on W2008R2. I just realised that I
My objective is to find the process that is consuming the most CPU and
I have got mongo db using only one collection and consuming average cpu usage
I have Debug|Any CPU and Release|Any CPU as my two configuration types. Is there
I have a PC with a good CPU but slow GPU (integrated graphics card).

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.