Skip to content
Snippets Groups Projects
  1. Sep 19, 2018
  2. Sep 17, 2018
  3. Sep 16, 2018
  4. Sep 13, 2018
    • psychocrypt's avatar
      unify cpu cryptonight implementations · 931bd5fe
      psychocrypt authored
      xmr-stak has several implementations for multi hash per thread.
      The results into 3 intepedent implementations.
      Each time the algorithm must be changed the possibility to introduce errors is very large.
      
      - unify the different cryptonight CPU implementations
      - simplify the function selection array to find the specilized cryptonight implementation
      - add a intermediat pointer to access the large state (similar to the old multi hash implementation)
      
      As side effect this change increases the speed of the single and multi hash algorithm.
      931bd5fe
  5. Aug 28, 2018
    • psychocrypt's avatar
      add self test hashes · 69628078
      psychocrypt authored
      The most algorithm currently are not checked in the cpu self test function.
      
      - add hash for each algorithm
      69628078
  6. Aug 19, 2018
  7. Aug 08, 2018
  8. Jul 22, 2018
  9. Jul 17, 2018
  10. Jul 16, 2018
  11. 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
  12. Jul 12, 2018
  13. Jul 11, 2018
    • psychocrypt's avatar
      fix wrong miner algorithm in result data · e149fef1
      psychocrypt authored
      fix #1708
      
      The extension of the job result contains the wrong algorithm used to create the nonce.
      The fix provide now the correct used algorithm even if the coin is forking to a new algorithm.
      
      - forward the used algorithm from the miner
      e149fef1
  14. Jul 10, 2018
  15. Jul 08, 2018
  16. Jun 21, 2018
  17. Jun 16, 2018
  18. Jun 10, 2018
  19. Jun 07, 2018
  20. Jun 05, 2018
  21. May 30, 2018
  22. May 22, 2018
    • psychocrypt's avatar
      fix duplicated nonce usage · 0d85a32d
      psychocrypt authored
      - avoid that a nonce which not fits to the current job is used (check jobId after start nonce is consumed)
      - move jobId check into the if condition to get a new bunch of nonces
      - CPU: add jobId validation after the start nonce is consumed
      0d85a32d
  23. May 17, 2018
    • Tony Butler's avatar
    • psychocrypt's avatar
      avoid out of order job processing · 84d37485
      psychocrypt authored
      The login result of a pool contains the first job for the miner.
      In the case where the pool is sending very fast after the pool login result
      a new job it is possible that the newer job is processed faster than the job within the login result.
      The result will be that the miner is mining an older job instead the newest (last received).
      
      - enumerate all received messages
      - trace the message id of the last procssed job
      - skip all jobs where the message id is older than the last procesed id
      84d37485
  24. 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
Loading