From c683072d58995e0ce8abef1b2f103e29d0c393b0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Sch=C3=B6ne?= Date: Thu, 15 Mar 2018 14:24:37 +0100 Subject: [PATCH] CHANGELOG entries plus code-generator fix --- CHANGELOG | 6 ++++++ code-generator.py | 3 +++ 2 files changed, 9 insertions(+) diff --git a/CHANGELOG b/CHANGELOG index a9b9dd1c..ad0a41b8 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -27,6 +27,12 @@ $$ TODO Version 2.0 $$ TODO - add results verification $$ TODO - improve Haswell/Broadwell, KNL, and Skylake support +Version 1.7.2 + - fixed CUDA problem with low power consumption + - fixed version string + - fixed synchronization of CUDA resources + - fixed additional thread at CUDA workload + Version 1.7.1 - fixed Skylake-X problem in the Win64 version diff --git a/code-generator.py b/code-generator.py index accb4193..cdc667fe 100755 --- a/code-generator.py +++ b/code-generator.py @@ -223,6 +223,9 @@ def __init__(self, name): sys.stdout.flush() infile = dirname+file outfile = outdir+file.replace("source_files/","") + # skip if it's the same file + if infile == outfile: + continue source = open (infile, 'r') dest = open (outfile, 'w') lines = source.readlines()