summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
| | * fix cuda architecture detectionpsychocrypt2018-04-041-1/+1
| |/ | | | | | | | | | | fix #1297 If sm_20 is mixed with other architectures the detection for the minimal supported architecture is broken.
* | Merge pull request #1286 from fireice-uk/dev2.4.1fireice-uk2018-04-032-4/+13
|\ \ | |/ | | Bug fix release 2.4.1
| * Merge pull request #1285 from psychocrypt/fix-sumokoinAMDfireice-uk2018-04-032-4/+13
| |\ | | | | | | AMD OpenCL: fix sumokoin
| | * AMD OpenCL: fix sumokoinpsychocrypt2018-04-032-4/+13
| |/ | | | | | | - fix that version argument was not passed to extended kernel parameters
* | Merge pull request #1279 from fireice-uk/devfireice-uk2018-04-0230-245/+290
|\ \ | |/ | | release 2.4.0
| * Merge pull request #1278 from fireice-uk/topic-video-guidepsychocrypt2018-04-021-1/+1
| |\ | | | | | | Change vid
| | * Change vidfireice-uk2018-04-021-1/+1
| | |
| * | Merge pull request #1277 from psychocrypt/topic-increaseVersionTo240fireice-uk2018-04-021-1/+1
| |\ \ | | |/ | |/| increase version for release to 2.4.0
| | * increase version for release to 2.4.0psychocrypt2018-04-021-1/+1
| | |
| * | Merge pull request #1273 from psychocrypt/topic-newCoinsfireice-uk2018-04-0210-102/+91
| |\ \ | | |/ | |/| add stellite coin
| | * change `height` to `version`psychocrypt2018-04-025-8/+8
| | | | | | | | | | | | -rename `mining_fork_height` to `*_version`
| | * add stellite coinpsychocrypt2018-04-011-0/+1
| | |
| | * refactor mining algo selectionpsychocrypt2018-04-0110-102/+90
| |/ | | | | | | | | - add `fork_height` to currency - refactor algorithm selection
| * Merge pull request #1271 from fireice-uk/topic-algo-reportpsychocrypt2018-04-011-2/+5
| |\ | | | | | | Add cn-heavy to algo report
| | * Add cn-heavy to algo reportfireice-uk2018-04-011-2/+5
| | |
| * | Merge pull request #1265 from psychocrypt/fix-openCLOSXBuildfireice-uk2018-04-011-4/+1
| |\ \ | | |/ | |/| fix OpenCl AMD on OSX
| | * fix OpenCl AMD on OSXpsychocrypt2018-04-011-4/+1
| | | | | | | | | | | | | | | | | | fix #1218 - remove inline function with ugly macro :-(
| * | Merge pull request #1267 from fireice-uk/topic-rm-portbinpsychocrypt2018-04-012-29/+0
| |\ \ | | | | | | | | Remove portbin from docs for now
| | * | Remove portbin from docs for nowfireice-uk2018-03-312-29/+0
| | | |
| * | | Merge pull request #1266 from psychocrypt/murlakatamenka-devfireice-uk2018-03-311-3/+3
| |\ \ \ | | |/ / | |/| | fix minor text issues in compile.md
| | * | Fix minor text issues in compile.mdSergey A2018-03-311-3/+3
| | |/
| * | Merge pull request #1195 from jleni/fix/gcc_cudapsychocrypt2018-03-311-0/+7
| |\ \ | | |/ | |/| instructions for new gcc versions
| | * instructions for new gcc versionsJuan Leni2018-03-251-0/+7
| | |
| * | Merge pull request #1263 from fireice-uk/topic-nicehash-workaroundpsychocrypt2018-03-311-0/+6
| |\ \ | | | | | | | | Yet another nicehash workaround -.-
| | * | Yet another nicehash workaround -.-fireice-uk2018-03-311-0/+6
| | | |
| * | | Merge pull request #1262 from fireice-uk/topic-backend-errorspsychocrypt2018-03-313-16/+16
| |\ \ \ | | | | | | | | | | Add filename to backend errors
| | * | | Add filename to backend errorsfireice-uk2018-03-313-16/+16
| | |/ /
| * | | Merge pull request #1259 from fireice-uk/top-guide-thmbpsychocrypt2018-03-311-1/+1
| |\ \ \ | | |/ / | |/| | New thumbnail
| | * | new thubnailfireice-uk2018-03-311-1/+1
| |/ /
| * | Merge pull request #1236 from psychocrypt/topic-powAeonv7fireice-uk2018-03-2914-112/+166
| |\ \ | | | | | | | | POW AEON v7
| | * | github annotationspsychocrypt2018-03-295-23/+12
| | | | | | | | | | | | | | | | | | | | | | | | - documentation: change `aeon` to `aeon7` - change `case` order in `switch` statements - update README.txt
| | * | POW AEON v7psychocrypt2018-03-2711-102/+167
| | | | | | | | | | | | | | | | | | | | - add new pow for AEON - fix missing cryptonight-heavy selection for multi hashes
| * | | Merge pull request #1239 from psychocrypt/topic-opetionDisbleAMDCachefireice-uk2018-03-283-21/+32
| |\ \ \ | | | | | | | | | | add cli option `--noAMDCache`
| | * | | add cli option `--noAMDCache`psychocrypt2018-03-283-21/+32
| |/ / / | | | | | | | | | | | | | | | | | | | | allow to disable the OpenCl cache - usefull for read only systems - usefull for unknown errors during cache reading
| * | | Merge pull request #1240 from psychocrypt/fix-parenthesesWarningfireice-uk2018-03-281-1/+1
| |\ \ \ | | | | | | | | | | fix parentheses warning
| | * | | fix parentheses warningpsychocrypt2018-03-271-1/+1
| | |/ / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | fix warning ``` /Users/user/xmr-stak/xmrstak/backend/amd/amd_gpu/gpu.cpp:481:11: warning: using the result of an assignment as a condition without parentheses [-Wparentheses] if( ret = clGetProgramInfo(ctx->Program, CL_PROGRAM_BINARIES, num_devices * sizeof(char*), all_programs.data(),NULL) != CL_SUCCESS) ```
| * | | Merge pull request #1238 from psychocrypt/topic-nameWorkerfireice-uk2018-03-281-0/+1
| |\ \ \ | | | | | | | | | | documentation: name a worker
| | * | | documentation: name a workerpsychocrypt2018-03-271-0/+1
| | |/ / | | | | | | | | | | | | add note that `rig_id` is ignored by some pools
| * | | Merge pull request #1219 from psychocrypt/fix-autoAdjustfireice-uk2018-03-282-12/+18
| |\ \ \ | | |/ / | |/| | fix autoAdjust(non hwloc)
| | * | travis: more compile combinationspsychocrypt2018-03-261-0/+16
| | | | | | | | | | | | | | | | - add tests whith disabled dependencies
| | * | fix autoAdjust(non hwloc)psychocrypt2018-03-261-12/+2
| |/ / | | | | | | | | | - remove call `IsCurrencyMonero` with `cn_select_memory`
* | | Merge pull request #1208 from fireice-uk/dev2.3.0fireice-uk2018-03-2559-993/+3331
|\ \ \ | |/ / | | | release 2.3.0
| * | Merge pull request #1157 from psychocrypt/fix-travisMACOSXfireice-uk2018-03-251-6/+5
| |\ \ | | | | | | | | reenable MACOSX travis tests
| | * | reenable MACOSX travis testspsychocrypt2018-03-151-6/+5
| | |/ | | | | | | | | | - remove `brew trap science`
| * | Merge pull request #1209 from psychocrypt/topic-removeOldReleaseSignaturefireice-uk2018-03-251-43/+0
| |\ \ | | | | | | | | remove old release signatures
| | * | remove old release signaturespsychocrypt2018-03-251-43/+0
| |/ / | | | | | | | | | the signatures for the next release will be in the release note itself
| * | Merge pull request #1207 from fireice-uk/topic-video-guidepsychocrypt2018-03-251-1/+1
| |\ \ | | | | | | | | Change video guide to a placeholder link
| | * | Change video guide to a placeholder linkfireice-uk2018-03-251-1/+1
| | | |
| * | | Merge pull request #1206 from psychocrypt/topic-renameMonero2fireice-uk2018-03-253-9/+10
| |\ \ \ | | | | | | | | | | rename `monero2` to `monero7`
| | * | | rename `monero2` to `monero7`psychocrypt2018-03-253-9/+10
| | |/ / | | | | | | | | | | | | fix #1202
OpenPOWER on IntegriCloud