File: allow-sparse-copy-in.c

package info (click to toggle)
llvm-toolchain-13 1%3A13.0.1-11
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 1,418,840 kB
  • sloc: cpp: 5,290,826; ansic: 996,570; asm: 544,593; python: 188,212; objc: 72,027; lisp: 30,291; f90: 25,395; sh: 24,898; javascript: 9,780; pascal: 9,398; perl: 7,484; ml: 5,432; awk: 3,523; makefile: 2,913; xml: 953; cs: 573; fortran: 539
file content (49 lines) | stat: -rw-r--r-- 1,439 bytes parent folder | download | duplicates (19)
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
#include <stdlib.h>

int main()
{
	int A[2][1000][1000];
	int B[2][1000][1000];

#pragma scop
	{
		for (int i = 0; i < 256; ++i)
			for (int j = 0; j < 256; ++j)
				if (j % 8 <= 2 || j % 8 >= 6)
					A[1][i][j] = B[1][j][i];
	}
#pragma endscop

/* 

When compiled with:

./ppcg tests/allow-sparse-copy-in.c --no-linearize-device-arrays
	--on-error=abort --sizes='{kernel[i]->tile[8,8]; kernel[i]->block[1,8]}'
	--max-shared-memory=-1  --unroll-copy-shared

this originally resulted in the following copy-in code:

      shared_B[0][0][t1] = B[1][8 * b1][8 * b0 + t1];
      shared_B[0][1][t1] = B[1][8 * b1 + 1][8 * b0 + t1];
      shared_B[0][2][t1] = B[1][8 * b1 + 2][8 * b0 + t1];
      shared_B[0][3][t1] = B[1][8 * b1 + 3][8 * b0 + t1];
      shared_B[0][4][t1] = B[1][8 * b1 + 4][8 * b0 + t1];
      shared_B[0][5][t1] = B[1][8 * b1 + 5][8 * b0 + t1];
      shared_B[0][6][t1] = B[1][8 * b1 + 6][8 * b0 + t1];
      shared_B[0][7][t1] = B[1][8 * b1 + 7][8 * b0 + t1];

whereas we only want to only perform copies that are actually needed:

      shared_B[0][0][t1] = B[1][8 * b1][8 * b0 + t1];
      shared_B[0][1][t1] = B[1][8 * b1 + 1][8 * b0 + t1];
      shared_B[0][2][t1] = B[1][8 * b1 + 2][8 * b0 + t1];
      shared_B[0][6][t1] = B[1][8 * b1 + 6][8 * b0 + t1];
      shared_B[0][7][t1] = B[1][8 * b1 + 7][8 * b0 + t1];
*/
	for (int i = 0; i < 100; ++i)
		if (A[1][0][i] != i)
			return EXIT_FAILURE;

	return EXIT_SUCCESS;
}