From 8ae8ab06a2b6f24faa0de5d390a5ae272aa94c23 Mon Sep 17 00:00:00 2001 From: Cedric Nugteren Date: Tue, 25 Oct 2016 20:33:10 +0200 Subject: Renamed the include and source files of the Netlib CBLAS API --- scripts/generator/generator.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'scripts/generator/generator.py') diff --git a/scripts/generator/generator.py b/scripts/generator/generator.py index 65d40877..1a467340 100755 --- a/scripts/generator/generator.py +++ b/scripts/generator/generator.py @@ -12,8 +12,8 @@ # clblast.cpp # clblast_c.h # clblast_c.cpp -# clblast_blas.h -# clblast_blas.cpp +# clblast_netlib_c.h +# clblast_netlib_c.cpp # wrapper_clblas.h # wrapper_cblas.h # It also generates the main functions for the correctness and performance tests as found in @@ -38,8 +38,8 @@ FILES = [ "/src/clblast_c.cpp", "/test/wrapper_clblas.hpp", "/test/wrapper_cblas.hpp", - "/include/clblast_blas.h", - "/src/clblast_blas.cpp", + "/include/clblast_netlib_c.h", + "/src/clblast_netlib_c.cpp", ] HEADER_LINES = [117, 73, 118, 22, 29, 41, 47, 32] FOOTER_LINES = [17, 80, 19, 18, 6, 6, 9, 2] @@ -205,9 +205,9 @@ def main(argv): if i == 5: body += cpp.wrapper_cblas(routine) if i == 6: - body += cpp.clblast_blas_h(routine) + body += cpp.clblast_netlib_c_h(routine) if i == 7: - body += cpp.clblast_blas_cc(routine) + body += cpp.clblast_netlib_c_cc(routine) f.write("".join(file_header)) f.write(body) f.write("".join(file_footer)) -- cgit v1.2.3