diff options
Diffstat (limited to 'docs/howto')
-rw-r--r-- | docs/howto/cross-compiler-howto.mdwn | 4 | ||||
-rw-r--r-- | docs/howto/stand-alone-utest-howto.mdwn | 8 |
2 files changed, 6 insertions, 6 deletions
diff --git a/docs/howto/cross-compiler-howto.mdwn b/docs/howto/cross-compiler-howto.mdwn index d5418162..a8a696da 100644 --- a/docs/howto/cross-compiler-howto.mdwn +++ b/docs/howto/cross-compiler-howto.mdwn @@ -2,7 +2,7 @@ Cross Compiler HowTo ==================== Beignet supports both PC devices with full profile and embedded/handheld -devices with embeded profile. This document describes how to build Beignet +devices with embedded profile. This document describes how to build Beignet and OpenCL kernels for a target machine (embedded/handheld devices) in a host machine with the help of cross compiler, and also the large-size-reduced Beignet driver package for the target machine. @@ -65,7 +65,7 @@ provide only the OpenCL runtime library without OpenCL compiler, and only the executable binary kernel is supported on such devices. It means that just distribute libcl.so and libgbeinterp.so (~320k in total after strip) -are enough for OpenCL embeded profile in the target machine. The whole Beignet +are enough for OpenCL embedded profile in the target machine. The whole Beignet driver set can be separated into several packages for different usage. diff --git a/docs/howto/stand-alone-utest-howto.mdwn b/docs/howto/stand-alone-utest-howto.mdwn index bca23d30..ddd8c5e5 100644 --- a/docs/howto/stand-alone-utest-howto.mdwn +++ b/docs/howto/stand-alone-utest-howto.mdwn @@ -1,14 +1,14 @@ Stand Alone Unit Test HowTo ==================== -Beignet provides an independent unit test suite covered most OpenCL language feautures, +Beignet provides an independent unit test suite covering most OpenCL language features, including more than 800 cases which could run in a few minutes, it should be useful for testing and comparing different OpenCL implementations. Prerequisite ------------ -OpenCL ICD. Please check your OpenCL ICD existance by command +OpenCL ICD. Please check your OpenCL ICD existence by command `pkg-config --libs OpenCL`. Build Stand Alone Unit Test @@ -27,7 +27,7 @@ Basically, from the root directory of the project `> make` -Once built, the 'utest_run' is generated in currenty directory. +Once built, the 'utest_run' is generated in current directory. How to run ---------- @@ -42,4 +42,4 @@ Then in `utests/`: `> ./utest_run` if the utest_run fail to run, please check /etc/vendors/OpenCL to confirm it calls the expected -OpenCL driver, or export LD_LIBRARAY_PATH to establish the correct link. +OpenCL driver, or export LD_LIBRARY_PATH to establish the correct link. |