From 432f1c2b7a01a7e9b0fe7bde1761859e680636dd Mon Sep 17 00:00:00 2001 From: Peter Steinberger Date: Tue, 13 Dec 2016 23:48:04 +0100 Subject: [PATCH] Fixes a typo: perforamnce -> performance Change-Id: I85e3b3d22c98c16556227283bfb33530e1bce2cf [ROCm/clr commit: e2dc1cc27f6b5a14fceb2b94b7f04534bc1cc1d5] --- projects/clr/hipamd/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/projects/clr/hipamd/README.md b/projects/clr/hipamd/README.md index 83d041786e..802bed75b3 100644 --- a/projects/clr/hipamd/README.md +++ b/projects/clr/hipamd/README.md @@ -89,7 +89,7 @@ The HIP Runtime API code and compute kernel definition can exist in the same sou ## HIP Portability and Compiler Technology HIP C++ code can be compiled with either : - On the Nvidia CUDA platform, HIP provides header file which translate from the HIP runtime APIs to CUDA runtime APIs. The header file contains mostly inlined - functions and thus has very low overhead - developers coding in HIP should expect the same perforamnce as coding in native CUDA. The code is then + functions and thus has very low overhead - developers coding in HIP should expect the same performance as coding in native CUDA. The code is then compiled with nvcc, the standard C++ compiler provided with the CUDA SDK. Developers can use any tools supported by the CUDA SDK including the CUDA profiler and debugger. - On the AMD ROCm platform, HIP provides a header and runtime library built on top of hcc compiler. The HIP runtime implements HIP streams, events, and memory APIs,