summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorCedric Nugteren <web@cedricnugteren.nl>2016-06-08 09:21:39 +0200
committerCedric Nugteren <web@cedricnugteren.nl>2016-06-08 09:21:39 +0200
commit6d6b0300532a48fe9f638898b630891d38173538 (patch)
tree132bf5dc2caf1cae1bee98571f66c09ef8950950 /README.md
parent7a7873d5527e7819249f80ba9abceb9d2d9c41cb (diff)
Made the CPU BLAS library the default reference to test against in favor of clBLAS
Diffstat (limited to 'README.md')
-rw-r--r--README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/README.md b/README.md
index 41d97fb6..926bc021 100644
--- a/README.md
+++ b/README.md
@@ -156,7 +156,7 @@ To make sure CLBlast is working correctly on your device (recommended), compile
cmake -DTESTS=ON ..
-Afterwards, executables in the form of `clblast_test_xxxxx` are available, in which `xxxxx` is the name of a routine (e.g. `xgemm`). Note that CLBlast is best tested against [clBLAS](http://github.com/clMathLibraries/clBLAS) for correctness. If the library clBLAS is not installed on your system, it will use a regular CPU BLAS library to test against. If both are present, setting the command-line option `-clblas 1` or `-cblas 1` will select the library to test against for the `clblast_test_xxxxx` executables.
+Afterwards, executables in the form of `clblast_test_xxxxx` are available, in which `xxxxx` is the name of a routine (e.g. `xgemm`). Note that CLBlast is tested for correctness against [clBLAS](http://github.com/clMathLibraries/clBLAS) and/or a regular CPU BLAS library. If both are installed on your system, setting the command-line option `-clblas 1` or `-cblas 1` will select the library to test against for the `clblast_test_xxxxx` executables.
Compiling the performance tests/clients (optional)