Skip to content
Snippets Groups Projects
  1. Jun 16, 2018
  2. Jun 10, 2018
  3. Jun 07, 2018
  4. Jun 05, 2018
  5. May 30, 2018
  6. 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
  7. 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
  8. 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
  9. May 12, 2018
  10. 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
  11. May 08, 2018
  12. May 07, 2018
  13. May 04, 2018
  14. May 03, 2018
  15. May 01, 2018
  16. Apr 24, 2018
  17. Apr 22, 2018
  18. Apr 19, 2018
  19. Apr 18, 2018
  20. Apr 17, 2018
    • Brian Oates's avatar
    • psychocrypt's avatar
      fix wrong unique_lock usage · 5edfb0da
      psychocrypt authored
      clang warns about the wrong usage:
      ```
      ```
      xmrstak/net/jpsock.cpp:232:30: warning: parentheses were disambiguated as redundant parentheses around declaration of variable named 'job_mutex' [-Wvexing-parse]
              std::unique_lock<std::mutex>(job_mutex);
                                          ^~~~~~~~~~~
      xmrstak/net/jpsock.cpp:232:30: note: add a variable name to declare a 'std::unique_lock<std::mutex>' initialized with 'job_mutex'
              std::unique_lock<std::mutex>(job_mutex);
      ```
      5edfb0da
    • psychocrypt's avatar
      add missing EOadd missing EOF · 9fcf6807
      psychocrypt authored
      9fcf6807
    • psychocrypt's avatar
      remove fork for sumokoin and monero · 053dcb01
      psychocrypt authored
      remove fork version for sumokoin and monero7
      053dcb01
    • 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
    • psychocrypt's avatar
      fix wrong algo selection · a5ddd040
      psychocrypt authored
      In the case where the dev pool mines on a higher version than a monero fork coin the miner is not resetting the algorithm.
      This PR select the correct algorithm each time the block version hash changed.
      a5ddd040
  21. Apr 14, 2018
    • psychocrypt's avatar
      allow non AMD OpenCL driver and devices · 4682b28a
      psychocrypt authored
      - add CLI flag to explicitly use non AMD OpenCL and devices
      - adjust OpenCL output (use OpenCL instead of AMD if --altOpenCL is sued)
      - optimize NVIDIA OpenCL auto suggestion
      4682b28a
Loading