Added sample with __gfx*__ macro used

Change-Id: I80a474947ea1b755082dad5329d1aff3ee78840c
Αυτή η υποβολή περιλαμβάνεται σε:
Sarbojit Sarkar
2020-10-12 02:44:58 -04:00
υποβλήθηκε από Sarbojit Sarkar
γονέας 2080cc113a
υποβολή a45f6f7ff3
4 αρχεία άλλαξαν με 141 προσθήκες και 1 διαγραφές
@@ -52,7 +52,7 @@
- [In-Line Assembly](#in-line-assembly)
- [C++ Support](#c-support)
- [Kernel Compilation](#kernel-compilation)
- [GFX Arch specific kernel](#gfx-arch-specific-kernel)
<!-- tocstop -->
## Introduction
@@ -803,3 +803,5 @@ The file format for binary is `.co` which means Code Object. The following comma
Note that one important fact to remember when using binary code objects is that the number of arguments to the kernel are different on HCC and NVCC path. Refer to the sample in samples/0_Intro/module_api for differences in the arguments to be passed to the kernel.
## gfx-arch-specific-kernel
Clang defined '__gfx*__' macros can be used to execute gfx arch specific codes inside the kernel. Refer to the sample 14_gpu_arch in samples/2_Cookbook.