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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T12:00:21+00:00 2026-05-25T12:00:21+00:00

I have a two dimensional array of integers. I would like to write an

  • 0

I have a two dimensional array of integers. I would like to write an optimized and fast code to sum all the columns of the two dimensional array.

Any thoughts how I might be able to do this using LINQ/PLINQ/TASK parallelization ?

Ex:

private int[,] m_indexes = new int[6,4]  { {367, 40, 74, 15},
                                           {535, 226, 74, 15}, 
                                           {368, 313, 74, 15},
                                           {197, 316, 74, 15}, 
                                           {27, 226, 74, 15},
                                           {194, 41, 74, 15} };
  • 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-25T12:00:22+00:00Added an answer on May 25, 2026 at 12:00 pm

    The simplest parallel implementation:

     int[,] m_indexes = new int[6, 4]  { {367, 40, 74, 15},
                                         {535, 226, 74, 15}, 
                                         {368, 313, 74, 15},
                                         {197, 316, 74, 15}, 
                                         {27, 226, 74, 15},
                                         {194, 41, 74, 15} };
     var columns  = Enumerable.Range(0, 4);
     int[] sums = new int[4];
     Parallel.ForEach(columns, column => {
         int sum = 0;
         for (int i = 0; i < 6; i++) {
             sum += m_indexes[i, column];
         }
                sums[column] = sum;
     });
    

    This code can obviously be “generalized” (use m_indexes.GetLength(0) and m_indexes.GetLength(1)).

    LINQ:

    var sums = columns.Select(
        column => {
            int sum = 0;
            for (int i = 0; i < 6; i++) {
                sum += m_indexes[i, column];
             } return sum; 
        }
    ).ToArray();
    

    Be sure to profile on real-world data here if you truly need to optimize for performance here.

    Also, if you truly care about optimizing for performance, try to load up your array so that you summing across rows. You’ll get better locality for cache performance that way.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a two dimensional array like this $FrstArr = Array( [0]= array( [0]=>101,
I have a two dimensional array, which represents columns and rows of data. I
I have two-dimensional array of integers. First index indicates the number of channels. The
I have declared my two dimensional array like this. But getting an error due
I have a data file like a two-dimensional array 22950 12 80044 22 02942
i have following code for allocation two dimensional array #include <iostream> using namespace std;
I have a simple, two dimensional array like this: Array ( [0] => Array
I have a two dimensional array that I need to load data into. I
I have a two-dimensional array (of Strings) which make up my data table (of
I have a two-dimensional array. When I print/dump this I get the following My

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.