Skip to content
Snippets Groups Projects
  1. Sep 19, 2018
    • psychocrypt's avatar
      OpenCL: avoid out of memory access · 16da9886
      psychocrypt authored
      During the initialization of the compile parameter for OpenCL it could be that the
      fixed size buffer is to small. To avoid this we are now using `std::string`.
      There is no problem by using `std::string` because this part of code is not perfromance critical.
      16da9886
  2. 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
  3. 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
  4. Aug 19, 2018
  5. Aug 08, 2018
  6. Jul 22, 2018
  7. Jul 17, 2018
  8. Jul 16, 2018
  9. 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
  10. Jul 12, 2018
  11. 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
  12. Jul 10, 2018
  13. Jul 08, 2018
  14. Jun 21, 2018
  15. Jun 16, 2018
  16. Jun 10, 2018
  17. Jun 07, 2018
  18. Jun 05, 2018
  19. May 30, 2018
  20. 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
  21. 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
  22. 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
  23. May 12, 2018
  24. May 09, 2018
    • psychocrypt's avatar
      ignore duplicated equal job from pools · c263be5b
      psychocrypt authored
      Some pools or proxys are sending multiple times in row the same job to the miner.
      This PR will extent the miner to trigger an socket error if job with the same `jobID` than the current active job is received.
      
      Move motd evaluation before the possibil part where a job is ignored.
      c263be5b
  25. May 08, 2018
  26. May 07, 2018
  27. May 05, 2018
  28. May 04, 2018
Loading