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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
|
/* Run a stand-alone AMD GCN kernel.
Copyright 2017 Mentor Graphics Corporation
Copyright (C) 2018-2021 Free Software Foundation, Inc.
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 of the License, 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, see <http://www.gnu.org/licenses/>. */
/* This program will run a compiled stand-alone GCN kernel on a GPU.
The kernel entry point's signature must use a standard main signature:
int main(int argc, char **argv)
*/
#include <stdint.h>
#include <stdbool.h>
#include <stdlib.h>
#include <malloc.h>
#include <stdio.h>
#include <string.h>
#include <dlfcn.h>
#include <unistd.h>
#include <elf.h>
#include <signal.h>
#include "hsa.h"
#ifndef HSA_RUNTIME_LIB
#define HSA_RUNTIME_LIB "libhsa-runtime64.so.1"
#endif
#ifndef VERSION_STRING
#define VERSION_STRING "(version unknown)"
#endif
bool debug = false;
hsa_agent_t device = { 0 };
hsa_queue_t *queue = NULL;
uint64_t init_array_kernel = 0;
uint64_t fini_array_kernel = 0;
uint64_t main_kernel = 0;
hsa_executable_t executable = { 0 };
hsa_region_t kernargs_region = { 0 };
hsa_region_t heap_region = { 0 };
uint32_t kernarg_segment_size = 0;
uint32_t group_segment_size = 0;
uint32_t private_segment_size = 0;
static void
usage (const char *progname)
{
printf ("Usage: %s [options] kernel [kernel-args]\n\n"
"Options:\n"
" --help\n"
" --version\n"
" --debug\n", progname);
}
static void
version (const char *progname)
{
printf ("%s " VERSION_STRING "\n", progname);
}
/* As an HSA runtime is dlopened, following structure defines the necessary
function pointers.
Code adapted from libgomp. */
struct hsa_runtime_fn_info
{
/* HSA runtime. */
hsa_status_t (*hsa_status_string_fn) (hsa_status_t status,
const char **status_string);
hsa_status_t (*hsa_agent_get_info_fn) (hsa_agent_t agent,
hsa_agent_info_t attribute,
void *value);
hsa_status_t (*hsa_init_fn) (void);
hsa_status_t (*hsa_iterate_agents_fn)
(hsa_status_t (*callback) (hsa_agent_t agent, void *data), void *data);
hsa_status_t (*hsa_region_get_info_fn) (hsa_region_t region,
hsa_region_info_t attribute,
void *value);
hsa_status_t (*hsa_queue_create_fn)
(hsa_agent_t agent, uint32_t size, hsa_queue_type_t type,
void (*callback) (hsa_status_t status, hsa_queue_t *source, void *data),
void *data, uint32_t private_segment_size,
uint32_t group_segment_size, hsa_queue_t **queue);
hsa_status_t (*hsa_agent_iterate_regions_fn)
(hsa_agent_t agent,
hsa_status_t (*callback) (hsa_region_t region, void *data), void *data);
hsa_status_t (*hsa_executable_destroy_fn) (hsa_executable_t executable);
hsa_status_t (*hsa_executable_create_fn)
(hsa_profile_t profile, hsa_executable_state_t executable_state,
const char *options, hsa_executable_t *executable);
hsa_status_t (*hsa_executable_global_variable_define_fn)
(hsa_executable_t executable, const char *variable_name, void *address);
hsa_status_t (*hsa_executable_load_code_object_fn)
(hsa_executable_t executable, hsa_agent_t agent,
hsa_code_object_t code_object, const char *options);
hsa_status_t (*hsa_executable_freeze_fn) (hsa_executable_t executable,
const char *options);
hsa_status_t (*hsa_signal_create_fn) (hsa_signal_value_t initial_value,
uint32_t num_consumers,
const hsa_agent_t *consumers,
hsa_signal_t *signal);
hsa_status_t (*hsa_memory_allocate_fn) (hsa_region_t region, size_t size,
void **ptr);
hsa_status_t (*hsa_memory_assign_agent_fn) (void *ptr, hsa_agent_t agent,
hsa_access_permission_t access);
hsa_status_t (*hsa_memory_copy_fn) (void *dst, const void *src,
size_t size);
hsa_status_t (*hsa_memory_free_fn) (void *ptr);
hsa_status_t (*hsa_signal_destroy_fn) (hsa_signal_t signal);
hsa_status_t (*hsa_executable_get_symbol_fn)
(hsa_executable_t executable, const char *module_name,
const char *symbol_name, hsa_agent_t agent, int32_t call_convention,
hsa_executable_symbol_t *symbol);
hsa_status_t (*hsa_executable_symbol_get_info_fn)
(hsa_executable_symbol_t executable_symbol,
hsa_executable_symbol_info_t attribute, void *value);
void (*hsa_signal_store_relaxed_fn) (hsa_signal_t signal,
hsa_signal_value_t value);
hsa_signal_value_t (*hsa_signal_wait_acquire_fn)
(hsa_signal_t signal, hsa_signal_condition_t condition,
hsa_signal_value_t compare_value, uint64_t timeout_hint,
hsa_wait_state_t wait_state_hint);
hsa_signal_value_t (*hsa_signal_wait_relaxed_fn)
(hsa_signal_t signal, hsa_signal_condition_t condition,
hsa_signal_value_t compare_value, uint64_t timeout_hint,
hsa_wait_state_t wait_state_hint);
hsa_status_t (*hsa_queue_destroy_fn) (hsa_queue_t *queue);
hsa_status_t (*hsa_code_object_deserialize_fn)
(void *serialized_code_object, size_t serialized_code_object_size,
const char *options, hsa_code_object_t *code_object);
uint64_t (*hsa_queue_load_write_index_relaxed_fn)
(const hsa_queue_t *queue);
void (*hsa_queue_store_write_index_relaxed_fn)
(const hsa_queue_t *queue, uint64_t value);
hsa_status_t (*hsa_shut_down_fn) ();
};
/* HSA runtime functions that are initialized in init_hsa_context.
Code adapted from libgomp. */
static struct hsa_runtime_fn_info hsa_fns;
#define DLSYM_FN(function) \
*(void**)(&hsa_fns.function##_fn) = dlsym (handle, #function); \
if (hsa_fns.function##_fn == NULL) \
goto fail;
static void
init_hsa_runtime_functions (void)
{
void *handle = dlopen (HSA_RUNTIME_LIB, RTLD_LAZY);
if (handle == NULL)
{
fprintf (stderr,
"The HSA runtime is required to run GCN kernels on hardware.\n"
"%s: File not found or could not be opened\n",
HSA_RUNTIME_LIB);
exit (1);
}
DLSYM_FN (hsa_status_string)
DLSYM_FN (hsa_agent_get_info)
DLSYM_FN (hsa_init)
DLSYM_FN (hsa_iterate_agents)
DLSYM_FN (hsa_region_get_info)
DLSYM_FN (hsa_queue_create)
DLSYM_FN (hsa_agent_iterate_regions)
DLSYM_FN (hsa_executable_destroy)
DLSYM_FN (hsa_executable_create)
DLSYM_FN (hsa_executable_global_variable_define)
DLSYM_FN (hsa_executable_load_code_object)
DLSYM_FN (hsa_executable_freeze)
DLSYM_FN (hsa_signal_create)
DLSYM_FN (hsa_memory_allocate)
DLSYM_FN (hsa_memory_assign_agent)
DLSYM_FN (hsa_memory_copy)
DLSYM_FN (hsa_memory_free)
DLSYM_FN (hsa_signal_destroy)
DLSYM_FN (hsa_executable_get_symbol)
DLSYM_FN (hsa_executable_symbol_get_info)
DLSYM_FN (hsa_signal_wait_acquire)
DLSYM_FN (hsa_signal_wait_relaxed)
DLSYM_FN (hsa_signal_store_relaxed)
DLSYM_FN (hsa_queue_destroy)
DLSYM_FN (hsa_code_object_deserialize)
DLSYM_FN (hsa_queue_load_write_index_relaxed)
DLSYM_FN (hsa_queue_store_write_index_relaxed)
DLSYM_FN (hsa_shut_down)
return;
fail:
fprintf (stderr, "Failed to find HSA functions in " HSA_RUNTIME_LIB "\n");
exit (1);
}
#undef DLSYM_FN
/* Report a fatal error STR together with the HSA error corresponding to
STATUS and terminate execution of the current process. */
static void
hsa_fatal (const char *str, hsa_status_t status)
{
const char *hsa_error_msg;
hsa_fns.hsa_status_string_fn (status, &hsa_error_msg);
fprintf (stderr, "%s: FAILED\nHSA Runtime message: %s\n", str,
hsa_error_msg);
exit (1);
}
/* Helper macros to ensure we check the return values from the HSA Runtime.
These just keep the rest of the code a bit cleaner. */
#define XHSA_CMP(FN, CMP, MSG) \
do { \
hsa_status_t status = (FN); \
if (!(CMP)) \
hsa_fatal ((MSG), status); \
else if (debug) \
fprintf (stderr, "%s: OK\n", (MSG)); \
} while (0)
#define XHSA(FN, MSG) XHSA_CMP(FN, status == HSA_STATUS_SUCCESS, MSG)
/* Callback of hsa_iterate_agents.
Called once for each available device, and returns "break" when a
suitable one has been found. */
static hsa_status_t
get_gpu_agent (hsa_agent_t agent, void *data __attribute__ ((unused)))
{
hsa_device_type_t device_type;
XHSA (hsa_fns.hsa_agent_get_info_fn (agent, HSA_AGENT_INFO_DEVICE,
&device_type),
"Get agent type");
/* Select only GPU devices. */
/* TODO: support selecting from multiple GPUs. */
if (HSA_DEVICE_TYPE_GPU == device_type)
{
device = agent;
return HSA_STATUS_INFO_BREAK;
}
/* The device was not suitable. */
return HSA_STATUS_SUCCESS;
}
/* Callback of hsa_iterate_regions.
Called once for each available memory region, and returns "break" when a
suitable one has been found. */
static hsa_status_t
get_memory_region (hsa_region_t region, hsa_region_t *retval,
hsa_region_global_flag_t kind)
{
/* Reject non-global regions. */
hsa_region_segment_t segment;
hsa_fns.hsa_region_get_info_fn (region, HSA_REGION_INFO_SEGMENT, &segment);
if (HSA_REGION_SEGMENT_GLOBAL != segment)
return HSA_STATUS_SUCCESS;
/* Find a region with the KERNARG flag set. */
hsa_region_global_flag_t flags;
hsa_fns.hsa_region_get_info_fn (region, HSA_REGION_INFO_GLOBAL_FLAGS,
&flags);
if (flags & kind)
{
*retval = region;
return HSA_STATUS_INFO_BREAK;
}
/* The region was not suitable. */
return HSA_STATUS_SUCCESS;
}
static hsa_status_t
get_kernarg_region (hsa_region_t region, void *data __attribute__((unused)))
{
return get_memory_region (region, &kernargs_region,
HSA_REGION_GLOBAL_FLAG_KERNARG);
}
static hsa_status_t
get_heap_region (hsa_region_t region, void *data __attribute__((unused)))
{
return get_memory_region (region, &heap_region,
HSA_REGION_GLOBAL_FLAG_COARSE_GRAINED);
}
/* Initialize the HSA Runtime library and GPU device. */
static void
init_device ()
{
/* Load the shared library and find the API functions. */
init_hsa_runtime_functions ();
/* Initialize the HSA Runtime. */
XHSA (hsa_fns.hsa_init_fn (),
"Initialize run-time");
/* Select a suitable device.
The call-back function, get_gpu_agent, does the selection. */
XHSA_CMP (hsa_fns.hsa_iterate_agents_fn (get_gpu_agent, NULL),
status == HSA_STATUS_SUCCESS || status == HSA_STATUS_INFO_BREAK,
"Find a device");
/* Initialize the queue used for launching kernels. */
uint32_t queue_size = 0;
XHSA (hsa_fns.hsa_agent_get_info_fn (device, HSA_AGENT_INFO_QUEUE_MAX_SIZE,
&queue_size),
"Find max queue size");
XHSA (hsa_fns.hsa_queue_create_fn (device, queue_size,
HSA_QUEUE_TYPE_SINGLE, NULL,
NULL, UINT32_MAX, UINT32_MAX, &queue),
"Set up a device queue");
/* Select a memory region for the kernel arguments.
The call-back function, get_kernarg_region, does the selection. */
XHSA_CMP (hsa_fns.hsa_agent_iterate_regions_fn (device, get_kernarg_region,
NULL),
status == HSA_STATUS_SUCCESS || status == HSA_STATUS_INFO_BREAK,
"Locate kernargs memory");
/* Select a memory region for the kernel heap.
The call-back function, get_heap_region, does the selection. */
XHSA_CMP (hsa_fns.hsa_agent_iterate_regions_fn (device, get_heap_region,
NULL),
status == HSA_STATUS_SUCCESS || status == HSA_STATUS_INFO_BREAK,
"Locate device memory");
}
/* Read a whole input file.
Code copied from mkoffload. */
static char *
read_file (const char *filename, size_t *plen)
{
size_t alloc = 16384;
size_t base = 0;
char *buffer;
FILE *stream = fopen (filename, "rb");
if (!stream)
{
perror (filename);
exit (1);
}
if (!fseek (stream, 0, SEEK_END))
{
/* Get the file size. */
long s = ftell (stream);
if (s >= 0)
alloc = s + 100;
fseek (stream, 0, SEEK_SET);
}
buffer = malloc (alloc);
for (;;)
{
size_t n = fread (buffer + base, 1, alloc - base - 1, stream);
if (!n)
break;
base += n;
if (base + 1 == alloc)
{
alloc *= 2;
buffer = realloc (buffer, alloc);
}
}
buffer[base] = 0;
*plen = base;
fclose (stream);
return buffer;
}
/* Read a HSA Code Object (HSACO) from file, and load it into the device. */
static void
load_image (const char *filename)
{
size_t image_size;
Elf64_Ehdr *image = (void *) read_file (filename, &image_size);
/* An "executable" consists of one or more code objects. */
XHSA (hsa_fns.hsa_executable_create_fn (HSA_PROFILE_FULL,
HSA_EXECUTABLE_STATE_UNFROZEN, "",
&executable),
"Initialize GCN executable");
/* Add the HSACO to the executable. */
hsa_code_object_t co = { 0 };
XHSA (hsa_fns.hsa_code_object_deserialize_fn (image, image_size, NULL, &co),
"Deserialize GCN code object");
XHSA (hsa_fns.hsa_executable_load_code_object_fn (executable, device, co,
""),
"Load GCN code object");
/* We're done modifying he executable. */
XHSA (hsa_fns.hsa_executable_freeze_fn (executable, ""),
"Freeze GCN executable");
/* Locate the "_init_array" function, and read the kernel's properties. */
hsa_executable_symbol_t symbol;
XHSA (hsa_fns.hsa_executable_get_symbol_fn (executable, NULL,
"_init_array.kd", device, 0,
&symbol),
"Find '_init_array' function");
XHSA (hsa_fns.hsa_executable_symbol_get_info_fn
(symbol, HSA_EXECUTABLE_SYMBOL_INFO_KERNEL_OBJECT,
&init_array_kernel),
"Extract '_init_array' kernel object kernel object");
/* Locate the "_fini_array" function, and read the kernel's properties. */
XHSA (hsa_fns.hsa_executable_get_symbol_fn (executable, NULL,
"_fini_array.kd", device, 0,
&symbol),
"Find '_fini_array' function");
XHSA (hsa_fns.hsa_executable_symbol_get_info_fn
(symbol, HSA_EXECUTABLE_SYMBOL_INFO_KERNEL_OBJECT,
&fini_array_kernel),
"Extract '_fini_array' kernel object kernel object");
/* Locate the "main" function, and read the kernel's properties. */
XHSA (hsa_fns.hsa_executable_get_symbol_fn (executable, NULL, "main.kd",
device, 0, &symbol),
"Find 'main' function");
XHSA (hsa_fns.hsa_executable_symbol_get_info_fn
(symbol, HSA_EXECUTABLE_SYMBOL_INFO_KERNEL_OBJECT, &main_kernel),
"Extract 'main' kernel object");
XHSA (hsa_fns.hsa_executable_symbol_get_info_fn
(symbol, HSA_EXECUTABLE_SYMBOL_INFO_KERNEL_KERNARG_SEGMENT_SIZE,
&kernarg_segment_size),
"Extract kernarg segment size");
XHSA (hsa_fns.hsa_executable_symbol_get_info_fn
(symbol, HSA_EXECUTABLE_SYMBOL_INFO_KERNEL_GROUP_SEGMENT_SIZE,
&group_segment_size),
"Extract group segment size");
XHSA (hsa_fns.hsa_executable_symbol_get_info_fn
(symbol, HSA_EXECUTABLE_SYMBOL_INFO_KERNEL_PRIVATE_SEGMENT_SIZE,
&private_segment_size),
"Extract private segment size");
}
/* Allocate some device memory from the kernargs region.
The returned address will be 32-bit (with excess zeroed on 64-bit host),
and accessible via the same address on both host and target (via
__flat_scalar GCN address space). */
static void *
device_malloc (size_t size, hsa_region_t region)
{
void *result;
XHSA (hsa_fns.hsa_memory_allocate_fn (region, size, &result),
"Allocate device memory");
return result;
}
/* These are the device pointers that will be transferred to the target.
The HSA Runtime points the kernargs register here.
They correspond to function signature:
int main (int argc, char *argv[], int *return_value)
The compiler expects this, for kernel functions, and will
automatically assign the exit value to *return_value. */
struct kernargs
{
/* Kernargs. */
int32_t argc;
int64_t argv;
int64_t out_ptr;
int64_t heap_ptr;
/* Output data. */
struct output
{
int return_value;
unsigned int next_output;
struct printf_data
{
int written;
char msg[128];
int type;
union
{
int64_t ivalue;
double dvalue;
char text[128];
};
} queue[1024];
unsigned int consumed;
} output_data;
};
struct heap
{
int64_t size;
char data[0];
} heap;
/* Print any console output from the kernel.
We print all entries from "consumed" to the next entry without a "written"
flag, or "next_output" is reached. The buffer is circular, but the
indices are absolute. It is assumed the kernel will stop writing data
if "next_output" wraps (becomes smaller than "consumed"). */
void
gomp_print_output (struct kernargs *kernargs, bool final)
{
unsigned int limit = (sizeof (kernargs->output_data.queue)
/ sizeof (kernargs->output_data.queue[0]));
unsigned int from = __atomic_load_n (&kernargs->output_data.consumed,
__ATOMIC_ACQUIRE);
unsigned int to = kernargs->output_data.next_output;
if (from > to)
{
/* Overflow. */
if (final)
printf ("GCN print buffer overflowed.\n");
return;
}
unsigned int i;
for (i = from; i < to; i++)
{
struct printf_data *data = &kernargs->output_data.queue[i%limit];
if (!data->written && !final)
break;
switch (data->type)
{
case 0:
printf ("%.128s%ld\n", data->msg, data->ivalue);
break;
case 1:
printf ("%.128s%f\n", data->msg, data->dvalue);
break;
case 2:
printf ("%.128s%.128s\n", data->msg, data->text);
break;
case 3:
printf ("%.128s%.128s", data->msg, data->text);
break;
default:
printf ("GCN print buffer error!\n");
break;
}
data->written = 0;
__atomic_store_n (&kernargs->output_data.consumed, i+1,
__ATOMIC_RELEASE);
}
fflush (stdout);
}
/* Execute an already-loaded kernel on the device. */
static void
run (uint64_t kernel, void *kernargs)
{
/* A "signal" is used to launch and monitor the kernel. */
hsa_signal_t signal;
XHSA (hsa_fns.hsa_signal_create_fn (1, 0, NULL, &signal),
"Create signal");
/* Configure for a single-worker kernel. */
uint64_t index = hsa_fns.hsa_queue_load_write_index_relaxed_fn (queue);
const uint32_t queueMask = queue->size - 1;
hsa_kernel_dispatch_packet_t *dispatch_packet =
&(((hsa_kernel_dispatch_packet_t *) (queue->base_address))[index &
queueMask]);
dispatch_packet->setup |= 3 << HSA_KERNEL_DISPATCH_PACKET_SETUP_DIMENSIONS;
dispatch_packet->workgroup_size_x = (uint16_t) 1;
dispatch_packet->workgroup_size_y = (uint16_t) 64;
dispatch_packet->workgroup_size_z = (uint16_t) 1;
dispatch_packet->grid_size_x = 1;
dispatch_packet->grid_size_y = 64;
dispatch_packet->grid_size_z = 1;
dispatch_packet->completion_signal = signal;
dispatch_packet->kernel_object = kernel;
dispatch_packet->kernarg_address = (void *) kernargs;
dispatch_packet->private_segment_size = private_segment_size;
dispatch_packet->group_segment_size = group_segment_size;
uint16_t header = 0;
header |= HSA_FENCE_SCOPE_SYSTEM << HSA_PACKET_HEADER_ACQUIRE_FENCE_SCOPE;
header |= HSA_FENCE_SCOPE_SYSTEM << HSA_PACKET_HEADER_RELEASE_FENCE_SCOPE;
header |= HSA_PACKET_TYPE_KERNEL_DISPATCH << HSA_PACKET_HEADER_TYPE;
__atomic_store_n ((uint32_t *) dispatch_packet,
header | (dispatch_packet->setup << 16),
__ATOMIC_RELEASE);
if (debug)
fprintf (stderr, "Launch kernel\n");
hsa_fns.hsa_queue_store_write_index_relaxed_fn (queue, index + 1);
hsa_fns.hsa_signal_store_relaxed_fn (queue->doorbell_signal, index);
/* Kernel running ...... */
while (hsa_fns.hsa_signal_wait_relaxed_fn (signal, HSA_SIGNAL_CONDITION_LT,
1, 1000000,
HSA_WAIT_STATE_ACTIVE) != 0)
{
usleep (10000);
gomp_print_output (kernargs, false);
}
gomp_print_output (kernargs, true);
if (debug)
fprintf (stderr, "Kernel exited\n");
XHSA (hsa_fns.hsa_signal_destroy_fn (signal),
"Clean up signal");
}
int
main (int argc, char *argv[])
{
int kernel_arg = 0;
for (int i = 1; i < argc; i++)
{
if (!strcmp (argv[i], "--help"))
{
usage (argv[0]);
return 0;
}
else if (!strcmp (argv[i], "--version"))
{
version (argv[0]);
return 0;
}
else if (!strcmp (argv[i], "--debug"))
debug = true;
else if (argv[i][0] == '-')
{
usage (argv[0]);
return 1;
}
else
{
kernel_arg = i;
break;
}
}
if (!kernel_arg)
{
/* No kernel arguments were found. */
usage (argv[0]);
return 1;
}
/* The remaining arguments are for the GCN kernel. */
int kernel_argc = argc - kernel_arg;
char **kernel_argv = &argv[kernel_arg];
init_device ();
load_image (kernel_argv[0]);
/* Calculate size of function parameters + argv data. */
size_t args_size = 0;
for (int i = 0; i < kernel_argc; i++)
args_size += strlen (kernel_argv[i]) + 1;
/* Allocate device memory for both function parameters and the argv
data. */
struct kernargs *kernargs = device_malloc (sizeof (*kernargs),
kernargs_region);
struct argdata
{
int64_t argv_data[kernel_argc];
char strings[args_size];
} *args = device_malloc (sizeof (struct argdata), kernargs_region);
size_t heap_size = 10 * 1024 * 1024; /* 10MB. */
struct heap *heap = device_malloc (heap_size, heap_region);
XHSA (hsa_fns.hsa_memory_assign_agent_fn (heap, device,
HSA_ACCESS_PERMISSION_RW),
"Assign heap to device agent");
/* Write the data to the target. */
kernargs->argc = kernel_argc;
kernargs->argv = (int64_t) args->argv_data;
kernargs->out_ptr = (int64_t) &kernargs->output_data;
kernargs->output_data.return_value = 0xcafe0000; /* Default return value. */
kernargs->output_data.next_output = 0;
for (unsigned i = 0; i < (sizeof (kernargs->output_data.queue)
/ sizeof (kernargs->output_data.queue[0])); i++)
kernargs->output_data.queue[i].written = 0;
kernargs->output_data.consumed = 0;
int offset = 0;
for (int i = 0; i < kernel_argc; i++)
{
size_t arg_len = strlen (kernel_argv[i]) + 1;
args->argv_data[i] = (int64_t) &args->strings[offset];
memcpy (&args->strings[offset], kernel_argv[i], arg_len + 1);
offset += arg_len;
}
kernargs->heap_ptr = (int64_t) heap;
hsa_fns.hsa_memory_copy_fn (&heap->size, &heap_size, sizeof (heap_size));
/* Run constructors on the GPU. */
run (init_array_kernel, kernargs);
/* Run the kernel on the GPU. */
run (main_kernel, kernargs);
unsigned int return_value =
(unsigned int) kernargs->output_data.return_value;
/* Run destructors on the GPU. */
run (fini_array_kernel, kernargs);
unsigned int upper = (return_value & ~0xffff) >> 16;
if (upper == 0xcafe)
{
printf ("Kernel exit value was never set\n");
return_value = 0xff;
}
else if (upper == 0xffff)
; /* Set by exit. */
else if (upper == 0)
; /* Set by return from main. */
else
printf ("Possible kernel exit value corruption, 2 most significant bytes "
"aren't 0xffff, 0xcafe, or 0: 0x%x\n", return_value);
if (upper == 0xffff)
{
unsigned int signal = (return_value >> 8) & 0xff;
if (signal == SIGABRT)
printf ("Kernel aborted\n");
else if (signal != 0)
printf ("Kernel received unkown signal\n");
}
if (debug)
printf ("Kernel exit value: %d\n", return_value & 0xff);
/* Clean shut down. */
XHSA (hsa_fns.hsa_memory_free_fn (kernargs),
"Clean up device memory");
XHSA (hsa_fns.hsa_executable_destroy_fn (executable),
"Clean up GCN executable");
XHSA (hsa_fns.hsa_queue_destroy_fn (queue),
"Clean up device queue");
XHSA (hsa_fns.hsa_shut_down_fn (),
"Shut down run-time");
return return_value & 0xff;
}
|