aboutsummaryrefslogtreecommitdiff
path: root/gprofng/examples/mxv-pthreads/src/workload.c
blob: 5c1198296a65d014f789836d586a34bab6539024 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
/* Copyright (C) 2021-2025 Free Software Foundation, Inc.
   Contributed by Oracle.

   This file is part of GNU Binutils.

   This program is free software; you can redistribute it and/or modify
   it under the terms of the GNU General Public License as published by
   the Free Software Foundation; either version 3, or (at your option)
   any later version.

   This program is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   GNU General Public License for more details.

   You should have received a copy of the GNU General Public License
   along with this program; if not, write to the Free Software
   Foundation, 51 Franklin Street - Fifth Floor, Boston,
   MA 02110-1301, USA.  */

#include "mydefs.h"

/*
* -----------------------------------------------------------------------------
* This function determines the number of rows each thread will be working on
* and also how many threads will be active.
* -----------------------------------------------------------------------------
*/
void get_workload_stats (int64_t number_of_threads,
			 int64_t number_of_rows,
			 int64_t number_of_columns,
			 int64_t *rows_per_thread,
			 int64_t *remainder_rows,
			 int64_t *active_threads)
{
  if (number_of_threads <= number_of_rows)
    {
      *remainder_rows  = number_of_rows%number_of_threads;
      *rows_per_thread = (number_of_rows - (*remainder_rows))/number_of_threads;
    }
  else
    {
      *remainder_rows  = 0;
      *rows_per_thread = 1;
    }

  *active_threads = number_of_threads < number_of_rows
		? number_of_threads : number_of_rows;

  if (verbose)
    {
      printf ("Rows per thread = %ld remainder = %ld\n",
		*rows_per_thread, *remainder_rows);
      printf ("Number of active threads = %ld\n", *active_threads);
    }
}

/*
* -----------------------------------------------------------------------------
* This function determines which rows each thread will be working on.
* -----------------------------------------------------------------------------
*/
void determine_work_per_thread (int64_t TID, int64_t rows_per_thread,
				int64_t remainder_rows,
				int64_t *row_index_start,
				int64_t *row_index_end)
{
  int64_t chunk_per_thread;

  if (TID < remainder_rows)
    {
      chunk_per_thread = rows_per_thread + 1;
      *row_index_start = TID * chunk_per_thread;
      *row_index_end   = (TID + 1) * chunk_per_thread - 1;
    }
  else
    {
      chunk_per_thread = rows_per_thread;
      *row_index_start = remainder_rows * (rows_per_thread + 1)
			 + (TID - remainder_rows) * chunk_per_thread;
      *row_index_end   = remainder_rows * (rows_per_thread + 1)
			 + (TID - remainder_rows) * chunk_per_thread
			 + chunk_per_thread - 1;
    }

  if (verbose)
    {
      printf ("TID = %ld row_index_start = %ld row_index_end = %ld\n",
		TID, *row_index_start, *row_index_end);
    }
}