Skip to content

Commit

Permalink
CHANGELOG entries plus code-generator fix
Browse files Browse the repository at this point in the history
  • Loading branch information
rschoene committed Mar 15, 2018
1 parent 8d2832c commit c683072
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 0 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
3 changes: 3 additions & 0 deletions code-generator.py
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down

0 comments on commit c683072

Please sign in to comment.