Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

release 2.10.8 #2600

Merged
merged 34 commits into from
Dec 1, 2019
Merged

release 2.10.8 #2600

merged 34 commits into from
Dec 1, 2019

Commits on Aug 19, 2019

  1. Update compile_Windows.md

    addition for cmake ENABLE parameter
    joey741019 authored Aug 19, 2019
    Configuration menu
    Copy the full SHA
    506942a View commit details
    Browse the repository at this point in the history

Commits on Aug 24, 2019

  1. AMD: optimize auto adjustement

    solve #2517
    
    In the case we can utilize more than 75% of the compute units we will
    not enforce a multiple of the compute units.
    psychocrypt committed Aug 24, 2019
    Configuration menu
    Copy the full SHA
    292db29 View commit details
    Browse the repository at this point in the history
  2. AMD: optimize fiji and radeon VII auto config cn-gpu

    solve #2510 and #2505
    
    set worksize to 16 instead of 8
    psychocrypt committed Aug 24, 2019
    Configuration menu
    Copy the full SHA
    28be412 View commit details
    Browse the repository at this point in the history
  3. fix used empty() instead of clear()

    solve first part of #2541
    psychocrypt committed Aug 24, 2019
    Configuration menu
    Copy the full SHA
    8251393 View commit details
    Browse the repository at this point in the history
  4. fix useless mutex

    solve partly #2514
    
    Remove a mutex which is not needed at all because all data are accessed
    from one thread only.
    psychocrypt committed Aug 24, 2019
    Configuration menu
    Copy the full SHA
    d048bf7 View commit details
    Browse the repository at this point in the history

Commits on Aug 26, 2019

  1. Merge pull request #2521 from psychocrypt/fix-usedEmtyINsteadOfClear

    fix used `empty()` instead of `clear()`
    fireice-uk authored Aug 26, 2019
    Configuration menu
    Copy the full SHA
    8fe6928 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #2522 from psychocrypt/fix-uselessMutex

    fix useless mutex
    fireice-uk authored Aug 26, 2019
    Configuration menu
    Copy the full SHA
    cd540b5 View commit details
    Browse the repository at this point in the history

Commits on Aug 30, 2019

  1. Merge pull request #2520 from psychocrypt/topic-optmimizeFijiCnGPU

    AMD: optimize fiji auto config cn-gpu
    fireice-uk authored Aug 30, 2019
    Configuration menu
    Copy the full SHA
    bfd0ccd View commit details
    Browse the repository at this point in the history
  2. Merge pull request #2518 from psychocrypt/topic-amdOptimzeAutoadjustment

    AMD: optimize auto adjustment
    fireice-uk authored Aug 30, 2019
    Configuration menu
    Copy the full SHA
    08eff30 View commit details
    Browse the repository at this point in the history

Commits on Sep 12, 2019

  1. Configuration menu
    Copy the full SHA
    54dae74 View commit details
    Browse the repository at this point in the history

Commits on Sep 19, 2019

  1. Merge pull request #2528 from blindmisfits/master

    Use RTLD_NOW for faster backend initialization.
    psychocrypt authored Sep 19, 2019
    Configuration menu
    Copy the full SHA
    e92ebc1 View commit details
    Browse the repository at this point in the history
  2. fix singletons

    Since we can not implement clean image book singletons (windows
    issues with shared libraries) we used a hierarchical to "emulate"
    singletons. During the creation race consitions are possible.
    THis PR will handle the raceconditions with a mutex, since we pass the
    creation of a singleton creation only onse we have no performance issue.
    psychocrypt committed Sep 19, 2019
    Configuration menu
    Copy the full SHA
    bca9255 View commit details
    Browse the repository at this point in the history

Commits on Sep 20, 2019

  1. Merge pull request #2529 from psychocrypt/fix-singletons

    fix singletons
    fireice-uk authored Sep 20, 2019
    Configuration menu
    Copy the full SHA
    ab65c97 View commit details
    Browse the repository at this point in the history

Commits on Sep 22, 2019

  1. AMD: optimize unroll for rx5700

    solve #2509
    
    - use unroll 8 for RX5700
    - use 2 threads for cnr_gpu and RX5700
    psychocrypt committed Sep 22, 2019
    Configuration menu
    Copy the full SHA
    f626f07 View commit details
    Browse the repository at this point in the history

Commits on Sep 24, 2019

  1. fix locking to secure affinity update

    fix #2514
    
    - use `unlock()` instead of `relase()`
    - fix NVIDIA affinity setting
    psychocrypt committed Sep 24, 2019
    Configuration menu
    Copy the full SHA
    0b1f88c View commit details
    Browse the repository at this point in the history

Commits on Oct 13, 2019

  1. Merge pull request #2519 from psychocrypt/topic-optimizeUnrollrx5700

    AMD: optimize unroll for rx5700
    fireice-uk authored Oct 13, 2019
    Configuration menu
    Copy the full SHA
    ae15a68 View commit details
    Browse the repository at this point in the history

Commits on Oct 14, 2019

  1. Merge pull request #2530 from psychocrypt/fix-threadLockingDuringStartup

    fix locking to secure affinity update
    fireice-uk authored Oct 14, 2019
    Configuration menu
    Copy the full SHA
    ffdfa53 View commit details
    Browse the repository at this point in the history

Commits on Oct 22, 2019

  1. remove aeon support

    Aeon is forking on  25.10.1029 to a fpga minable POW.
    psychocrypt committed Oct 22, 2019
    Configuration menu
    Copy the full SHA
    bab1ee8 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #2508 from joey741019/patch-1

    Update compile_Windows.md
    psychocrypt authored Oct 22, 2019
    Configuration menu
    Copy the full SHA
    6212745 View commit details
    Browse the repository at this point in the history

Commits on Nov 24, 2019

  1. [NVIDIA] fix possible out of memory with auto cfg

    fix #2531
    
    Set number of threads for `cryptonight_gpu always to `8` and adkust the
    number of blocks depending of the free memory.`
    psychocrypt committed Nov 24, 2019
    Configuration menu
    Copy the full SHA
    2494d96 View commit details
    Browse the repository at this point in the history

Commits on Nov 25, 2019

  1. fix tsl not used on first start

    - during the start of the miner and the guided setup the tls settings
    was ignored.
    - fix that parameters from the guided start is passed to the parameter singelton
    psychocrypt committed Nov 25, 2019
    Configuration menu
    Copy the full SHA
    b339c5d View commit details
    Browse the repository at this point in the history
  2. fix hwloc warning

    - fix warning depricated `hwloc_set_membind_nodeset` (since hwloc 2.0)
    psychocrypt committed Nov 25, 2019
    Configuration menu
    Copy the full SHA
    fc6200a View commit details
    Browse the repository at this point in the history
  3. fix benchmark mode

    Check for minimal required block version. Block version must be greater
    than 0.
    psychocrypt committed Nov 25, 2019
    Configuration menu
    Copy the full SHA
    d5e0d31 View commit details
    Browse the repository at this point in the history
  4. Merge pull request #2537 from psychocrypt/topic-removeAeonSupport

    remove aeon support
    psychocrypt authored Nov 25, 2019
    Configuration menu
    Copy the full SHA
    08ee713 View commit details
    Browse the repository at this point in the history
  5. Merge pull request #2538 from psychocrypt/fix-possibleOutOfMemoryWith…

    …AutoCfg
    
    [NVIDIA] fix possible out of memory with auto cfg
    psychocrypt authored Nov 25, 2019
    Configuration menu
    Copy the full SHA
    d146533 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    2745c5b View commit details
    Browse the repository at this point in the history
  7. Merge pull request #2559 from psychocrypt/fix-irgnoringTLSOnFirstStart

    fix tsl not used on first start
    psychocrypt authored Nov 25, 2019
    Configuration menu
    Copy the full SHA
    af93f65 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    2182d77 View commit details
    Browse the repository at this point in the history

Commits on Nov 30, 2019

  1. update README

    Ryo-RU authored and psychocrypt committed Nov 30, 2019
    Configuration menu
    Copy the full SHA
    d89b504 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    fa9dbc0 View commit details
    Browse the repository at this point in the history
  3. remove monero support

    psychocrypt committed Nov 30, 2019
    Configuration menu
    Copy the full SHA
    e85c15c View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    be51020 View commit details
    Browse the repository at this point in the history
  5. Merge pull request #2580 from psychocrypt/topic-versionIncreaseTo2.10.8

    version increase to 2.10.8
    fireice-uk authored Nov 30, 2019
    Configuration menu
    Copy the full SHA
    9d0e515 View commit details
    Browse the repository at this point in the history
  6. Merge pull request #2581 from psychocrypt/topic-removeMoneroSupport

    remove monero support
    fireice-uk authored Nov 30, 2019
    Configuration menu
    Copy the full SHA
    fd59ef0 View commit details
    Browse the repository at this point in the history