mirror of git://gcc.gnu.org/git/gcc.git
				
				
				
			
		
			
				
	
	
		
			53 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			C
		
	
	
	
			
		
		
	
	
			53 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			C
		
	
	
	
| /* { dg-do run } */
 | |
| /* { dg-skip-if "" { *-*-* } { "*" } { "-DACC_MEM_SHARED=0" } } */
 | |
| 
 | |
| #include <openacc.h>
 | |
| #include <string.h>
 | |
| #include <stdio.h>
 | |
| #include <stdlib.h>
 | |
| #include <stdbool.h>
 | |
| 
 | |
| int
 | |
| main (int argc, char **argv)
 | |
| {
 | |
|     int N = 8;
 | |
|     float *a, *b, *c, *d;
 | |
|     int i;
 | |
| 
 | |
|     a = (float *) malloc (N * sizeof (float));
 | |
|     b = (float *) malloc (N * sizeof (float));
 | |
|     c = (float *) malloc (N * sizeof (float));
 | |
| 
 | |
|     d = (float *) acc_malloc (N * sizeof (float));
 | |
|     acc_map_data (c, d, N * sizeof (float));
 | |
| 
 | |
|     fprintf (stderr, "CheCKpOInT\n");
 | |
| #pragma acc data present (a[0:N]) present (c[0:N]) present (b[0:N])
 | |
|     {
 | |
| #pragma acc parallel
 | |
|         {
 | |
|             int ii;
 | |
| 
 | |
|             for (ii = 0; ii < N; ii++)
 | |
|             {
 | |
|                 c[ii] = a[ii];
 | |
|                 b[ii] = c[ii];
 | |
|             }
 | |
|         }
 | |
|     }
 | |
| 
 | |
|     d = (float *) acc_deviceptr (c);
 | |
|     acc_unmap_data (c);
 | |
|     acc_free (d);
 | |
| 
 | |
|     free (a);
 | |
|     free (b);
 | |
|     free (c);
 | |
| 
 | |
|     return 0;
 | |
| }
 | |
| 
 | |
| /* { dg-output "CheCKpOInT(\n|\r\n|\r).*" } */
 | |
| /* { dg-output "present clause: !acc_is_present" } */
 | |
| /* { dg-shouldfail "" } */
 |