From 462a1d97b2e625e5c380d4ebd5c0a0a8bb1df8dc Mon Sep 17 00:00:00 2001 From: Maneesh Gupta Date: Sun, 4 Sep 2016 21:39:28 +0530 Subject: [PATCH] hip_kernel_language.md: Document difference in arguments for binary code object Change-Id: I96e347e8582cbd1dbc3776fbafcb9e61563538db --- hipamd/docs/markdown/hip_kernel_language.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hipamd/docs/markdown/hip_kernel_language.md b/hipamd/docs/markdown/hip_kernel_language.md index 628cd36c26..ed9dc2fbe9 100644 --- a/hipamd/docs/markdown/hip_kernel_language.md +++ b/hipamd/docs/markdown/hip_kernel_language.md @@ -678,5 +678,5 @@ The file format for binary is `.co` which means Code Object. The following comma [INPUT FILE] = Name of the file containing kernels [OUTPUT FILE] = Name of the generated code object file``` - +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.