Update comments
authorKyle Guinn <elyk03@gmail.com>
Sun, 5 Feb 2017 03:38:42 +0000 (21:38 -0600)
committerKyle Guinn <elyk03@gmail.com>
Sun, 5 Feb 2017 03:38:42 +0000 (21:38 -0600)
CBLAS/testing/CMakeLists.txt
CBLAS/testing/Makefile
TESTING/LIN/Makefile

index eb32e73..2459695 100644 (file)
@@ -25,22 +25,22 @@ macro(add_cblas_test output input target)
 endmacro()
 
 
-# Object files for single real precision
+# Object files for single precision real
 set(STESTL1O c_sblas1.c)
 set(STESTL2O c_sblas2.c c_s2chke.c auxiliary.c c_xerbla.c)
 set(STESTL3O c_sblas3.c c_s3chke.c auxiliary.c c_xerbla.c)
 
-# Object files for double real precision
+# Object files for double precision real
 set(DTESTL1O c_dblas1.c)
 set(DTESTL2O c_dblas2.c c_d2chke.c auxiliary.c c_xerbla.c)
 set(DTESTL3O c_dblas3.c c_d3chke.c auxiliary.c c_xerbla.c)
 
-# Object files for single complex precision
+# Object files for single precision complex
 set(CTESTL1O c_cblat1.f c_cblas1.c)
 set(CTESTL2O c_cblas2.c c_c2chke.c auxiliary.c c_xerbla.c)
 set(CTESTL3O c_cblas3.c c_c3chke.c auxiliary.c c_xerbla.c)
 
-# Object files for double complex precision
+# Object files for double precision complex
 set(ZTESTL1O c_zblas1.c)
 set(ZTESTL2O c_zblas2.c c_z2chke.c auxiliary.c c_xerbla.c)
 set(ZTESTL3O c_zblas3.c c_z3chke.c auxiliary.c c_xerbla.c)
index a5a0783..c785364 100644 (file)
@@ -7,22 +7,22 @@ include ../../make.inc
 # Archive files necessary to compile
 LIB = $(CBLASLIB) $(BLASLIB)
 
-# Object files for single real precision
+# Object files for single precision real
 stestl1o = c_sblas1.o
 stestl2o = c_sblas2.o c_s2chke.o auxiliary.o c_xerbla.o
 stestl3o = c_sblas3.o c_s3chke.o auxiliary.o c_xerbla.o
 
-# Object files for double real precision
+# Object files for double precision real
 dtestl1o = c_dblas1.o
 dtestl2o = c_dblas2.o c_d2chke.o auxiliary.o c_xerbla.o
 dtestl3o = c_dblas3.o c_d3chke.o auxiliary.o c_xerbla.o
 
-# Object files for single complex precision
+# Object files for single precision complex
 ctestl1o = c_cblas1.o
 ctestl2o = c_cblas2.o c_c2chke.o auxiliary.o c_xerbla.o
 ctestl3o = c_cblas3.o c_c3chke.o auxiliary.o c_xerbla.o
 
-# Object files for double complex precision
+# Object files for double precision complex
 ztestl1o = c_zblas1.o
 ztestl2o = c_zblas2.o c_z2chke.o auxiliary.o c_xerbla.o
 ztestl3o = c_zblas3.o c_z3chke.o auxiliary.o c_xerbla.o
@@ -92,29 +92,29 @@ xzcblat3: $(ztestl3o) c_zblat3.o
 
 # RUN TESTS
 run:
-       @echo "--> TESTING CBLAS 1 - SINGLE PRECISION <--"
+       @echo "--> TESTING CBLAS 1 - SINGLE PRECISION REAL <--"
        @./xscblat1 > stest1.out
-       @echo "--> TESTING CBLAS 1 - DOUBLE PRECISION <--"
+       @echo "--> TESTING CBLAS 1 - DOUBLE PRECISION REAL <--"
        @./xdcblat1 > dtest1.out
-       @echo "--> TESTING CBLAS 1 - COMPLEX PRECISION <--"
+       @echo "--> TESTING CBLAS 1 - SINGLE PRECISION COMPLEX <--"
        @./xccblat1 > ctest1.out
-       @echo "--> TESTING CBLAS 1 - DOUBLE COMPLEX PRECISION <--"
+       @echo "--> TESTING CBLAS 1 - DOUBLE PRECISION COMPLEX <--"
        @./xzcblat1 > ztest1.out
-       @echo "--> TESTING CBLAS 2 - SINGLE PRECISION <--"
+       @echo "--> TESTING CBLAS 2 - SINGLE PRECISION REAL <--"
        @./xscblat2 < sin2 > stest2.out
-       @echo "--> TESTING CBLAS 2 - DOUBLE PRECISION <--"
+       @echo "--> TESTING CBLAS 2 - DOUBLE PRECISION REAL <--"
        @./xdcblat2 < din2 > dtest2.out
-       @echo "--> TESTING CBLAS 2 - COMPLEX PRECISION <--"
+       @echo "--> TESTING CBLAS 2 - SINGLE PRECISION COMPLEX <--"
        @./xccblat2 < cin2 > ctest2.out
-       @echo "--> TESTING CBLAS 2 - DOUBLE COMPLEX PRECISION <--"
+       @echo "--> TESTING CBLAS 2 - DOUBLE PRECISION COMPLEX <--"
        @./xzcblat2 < zin2 > ztest2.out
-       @echo "--> TESTING CBLAS 3 - SINGLE PRECISION <--"
+       @echo "--> TESTING CBLAS 3 - SINGLE PRECISION REAL <--"
        @./xscblat3 < sin3 > stest3.out
-       @echo "--> TESTING CBLAS 3 - DOUBLE PRECISION <--"
+       @echo "--> TESTING CBLAS 3 - DOUBLE PRECISION REAL <--"
        @./xdcblat3 < din3 > dtest3.out
-       @echo "--> TESTING CBLAS 3 - COMPLEX PRECISION <--"
+       @echo "--> TESTING CBLAS 3 - SINGLE PRECISION COMPLEX <--"
        @./xccblat3 < cin3 > ctest3.out
-       @echo "--> TESTING CBLAS 3 - DOUBLE COMPLEX PRECISION <--"
+       @echo "--> TESTING CBLAS 3 - DOUBLE PRECISION COMPLEX <--"
        @./xzcblat3 < zin3 > ztest3.out
 
 .SUFFIXES: .o .f .c
index 98bc1e8..1a7333a 100644 (file)
@@ -7,10 +7,10 @@ include ../../make.inc
 #       ALINTST -- Auxiliary test routines
 #       SLINTST -- Single precision real test routines
 #       CLINTST -- Single precision complex test routines
-#       SCLNTST -- Single and Complex routines in common
+#       SCLNTST -- Single precision real and complex routines in common
 #       DLINTST -- Double precision real test routines
 #       ZLINTST -- Double precision complex test routines
-#       DZLNTST -- Double and Double Complex routines in common
+#       DZLNTST -- Double precision real and complex routines in common
 #
 #  Test programs can be generated for all or some of the four different
 #  precisions.  Enter make followed by one or more of the data types