Skip to content
Snippets Groups Projects
  1. Jan 30, 2019
  2. Jan 25, 2019
  3. Dec 29, 2018
    • psychocrypt's avatar
      improve POW algorithm selection · 758dbfb1
      psychocrypt authored
      - add helper method `GetAllAlgorithms()` to get all active POW
      algorithms
      - select max scratchpad memory size based on the dev pool and user
      algorithms
      758dbfb1
  4. Nov 29, 2018
  5. Nov 19, 2018
  6. Oct 24, 2018
    • psychocrypt's avatar
      NVIDIA: fix wrong number of threads · 954296ed
      psychocrypt authored
      In the cuda backend for monero we start always twice as much threads as needed.
      Those threads are than removed after the AES matrix is copied to the shared memory.
      Never the less it is the result of an copy past bug.
      
      - start correct number of threads for `monero`
      954296ed
  7. Oct 10, 2018
    • SChernykh's avatar
      NVIDIA: tweak `get_reciprocal` · b1504b36
      SChernykh authored
      - remove helper array to perform division
      - tweak `get_reciprocal`
      b1504b36
    • psychocrypt's avatar
      NVIDIA: rename config option `comp_mode` · bd4a4c94
      psychocrypt authored
      The name `comp_mode` for a memoy load pattern if a bad choosen name.
      Therefore I changed it to `mem_mode` which also gives use the possibility
      to add new mode later if needed.
      
      - rename `comp_mode` to `mem_mode`
      - fix documentation
      bd4a4c94
    • psychocrypt's avatar
      CUDA: fix invalid results · ed2168b4
      psychocrypt authored
      If `comp_mode` is false the results on a windows platform will be invalid.
      The reason for that is that `ulong4` is in windows 16byte and in linux 32byte.
      
      thx @xmrig for finding and solving the issue
      
      fix #1873
      ed2168b4
  8. Oct 08, 2018
  9. Oct 05, 2018
    • psychocrypt's avatar
      CUDA: tine cryptonight_v8 · 99a12cb6
      psychocrypt authored
      Read memory in bigger chunks per thread to increase the used memory bandwith.
      Use for Kepla and Fermi GPUs the old autosuggestion instead of the new settings for cryptonight_v8.
      99a12cb6
  10. Oct 04, 2018
  11. Oct 01, 2018
  12. Sep 30, 2018
    • psychocrypt's avatar
      cuda: implement cryptonight_v8 · 5db405c2
      psychocrypt authored
      - introduce a new schema where two threads work together on one hash
      - update autoadjustment
      - remove an mistake where shared memory was shrinked for gpus < sm_70
      5db405c2
  13. Sep 21, 2018
  14. Sep 19, 2018
  15. Aug 08, 2018
  16. Jul 16, 2018
  17. Jul 14, 2018
    • psychocrypt's avatar
      cryptonight_bittube2 · 12575794
      psychocrypt authored
      - add cryptonight_heavy derivate cryptonight_bittube2
      - add coin bittube
      - remove coin ipbc because this coin is now called bittube
      12575794
  18. Jun 10, 2018
  19. Jun 07, 2018
  20. Jun 05, 2018
  21. May 16, 2018
    • psychocrypt's avatar
      fix possible deadlock with Volta · 4a4a2f85
      psychocrypt authored
      If CUDA 9.X is used and the miner is compiled for `sm_70` and used with Volta GPUs than the miner
      deadlocks if `threads` is not a multiple of `32`.
      
      - use `__activemask()` to get all active lanes
      4a4a2f85
  22. May 03, 2018
  23. May 01, 2018
  24. Apr 22, 2018
  25. Apr 17, 2018
    • psychocrypt's avatar
      add independent dev pool coin description · 0877e2f6
      psychocrypt authored
      - allow the dev pool to fork on a different block version than the user descriped coin
      
      All algorithm are centered around the user coin description.
      It is allowed to have two two different coin algorithms in the user coin description.
      It is only allowed to use algorithms for the dev pool coin description those are used in the user coin description.
      There are two ways to define a non forking coin.
        - set both user coin algorithm descriptions to the same algorithm and set version to zero
        - set the first algorithm in the user coin description to something you like to use in the dev pool
          and set the second algorithm to the correct representation of the coin. Set the version to 255.
          This will allow that the dev pool can mine on a different coin algorithm than the not forking user coin.
          Do not use an algorithm with different scratchpad size for the dev pool.
      0877e2f6
  26. Apr 08, 2018
  27. Apr 06, 2018
Loading