- Updated readme, we actually need catalyst 15.7 (for the binary package) because of OpenCL 2.0
Desc.: Implemented a new feature that allows to quit at next restore point update (and disable it)
Issue: 10
+Type.: Bug
+File.: Host
+Desc.: Fixed a bug in combination of --restore and a user immediately aborting the session after restart
+Trac.: 684
+
+Type.: Change
+File.: Docs
+Desc.: Updated docs/readme.txt -- Starting with v2.01 OpenCL 2.00 is required; we need Catalyst 15.7 or higher
+
* changes v2.00 -> v2.01:
Type.: Bug
================
NV users require ForceWare 346.59 or later
-AMD users require Catalyst 14.9 or later
+AMD users require Catalyst 15.7 or later
##
## Features
if (words_done < words_cur) words_cur = words_done;
}
+ // It's possible that a GPU's workload isn't finished right after a restore-case.
+ // In that case, this function would return 0 and overwrite the real restore point
+ // There's also data.words_cur which is set to rd->words_cur but it changes while
+ // the attack is running therefore we should stick to rd->words_cur.
+ // Note that -s influences rd->words_cur we should keep a close look on that.
+
+ if (words_cur < data.rd->words_cur) words_cur = data.rd->words_cur;
+
return words_cur;
}