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 8641659
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 12, 20262026-06-12T11:35:01+00:00 2026-06-12T11:35:01+00:00

Could any help how to use MPI_Scatter to send the following matrix float **u,

  • 0

Could any help how to use MPI_Scatter to send the following matrix

float **u, **u_local;

if (rank == 0){
    u = (float**) malloc(N * size * sizeof(float*));
    for(i = 0; i < N * size; i++){
        u[i] = (float*) malloc(M * sizeof(float));
        memset(u[i], 0, M * sizeof(float));
    }
}

I wanna send u[N][M] matrix to all processes equally (u_local)
N number of rows
M number of columns

Thanks

  • 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-06-12T11:35:02+00:00Added an answer on June 12, 2026 at 11:35 am

    The easiest solution is to allocate memory in a linear way:

    float **u, *u_stor;
    
    if (rank == 0) {
        // Watch out for possible integer overflow while computing memory size
        u_stor = malloc(N * size * M * sizeof(float));
        for (i = 0; i < N * size; i++) {
            u[i] = &u_stor[i * M];
        }
        memset(u_stor, 0, N * size * M * sizeof(float));
    }
    

    Instead of allocating each row of u separately, this code allocates a chunk of memory as big as the whole matrix and then assigns to u[i] a pointer to the start of the i-th row in u_stor. Now rows are laid continuously in memory and a simple scatter can be used:

    float **u_local, *u_local_stor;
    u_local_stor = malloc(N * M * sizeof(float));
    for (i = 0; i < N; i++)
        u_local[i] = &u_local_stor[i * M];
    
    MPI_Scatter(u[0], N * M, MPI_FLOAT,
                u_local[0], N * M, MPI_FLOAT,
                0, MPI_COMM_WORLD);
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I was wondering if I could get any help with the following problem. I
I was wondering if any one could help me out; I have a table
I have scoured the help files for Visual Studio and could not locate any
Does anyone have any tips that could help speed up a process of breaking
I could use some help writing a SQL query. I'm trying to display some
I'm new to Android programming and could really use some help with a program
Could someone please help and tell me how to use protocol buffers. Actually I
I have a SQL question that I could use some help with. Still somewhat
I'm writing my first rails plugin and could use a little help. In a
When I try and use this code, I get the following error: Error: Could

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.