configuration.h 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  1. /*
  2. Copyright (c) 2019 tevador
  3. This file is part of RandomX.
  4. RandomX is free software: you can redistribute it and/or modify
  5. it under the terms of the GNU General Public License as published by
  6. the Free Software Foundation, either version 3 of the License, or
  7. (at your option) any later version.
  8. RandomX is distributed in the hope that it will be useful,
  9. but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  11. GNU General Public License for more details.
  12. You should have received a copy of the GNU General Public License
  13. along with RandomX. If not, see<http://www.gnu.org/licenses/>.
  14. */
  15. #pragma once
  16. //Cache size in KiB. Must be a power of 2.
  17. #define RANDOMX_ARGON_MEMORY (256 * 1024)
  18. //Number of Argon2d iterations for Cache initialization
  19. #define RANDOMX_ARGON_ITERATIONS 3
  20. //Number of parallel lanes for Cache initialization
  21. #define RANDOMX_ARGON_LANES 1
  22. //Argon2d salt
  23. #define RANDOMX_ARGON_SALT "RandomX\x03"
  24. //Number of random Cache accesses per Dataset block. Minimum is 2.
  25. #define RANDOMX_CACHE_ACCESSES 8
  26. #define RANDOMX_SUPERSCALAR_LATENCY 170
  27. #define RANDOMX_SUPERSCALAR_MAX_SIZE 512
  28. //Dataset base size in bytes. Must be a power of 2.
  29. #define RANDOMX_DATASET_BASE_SIZE (2ULL * 1024 * 1024 * 1024)
  30. //Dataset extra size. Must be divisible by 64.
  31. #define RANDOMX_DATASET_EXTRA_SIZE 33554368
  32. //Number of instructions in a RandomX program
  33. #define RANDOMX_PROGRAM_SIZE 256
  34. //Number of iterations during VM execution
  35. #define RANDOMX_PROGRAM_ITERATIONS 2048
  36. //Number of chained VM executions per hash
  37. #define RANDOMX_PROGRAM_COUNT 8
  38. //Scratchpad L3 size in bytes. Must be a power of 2.
  39. #define RANDOMX_SCRATCHPAD_L3 (2 * 1024 * 1024)
  40. //Scratchpad L2 size in bytes. Must be a power of two and less than or equal to RANDOMX_SCRATCHPAD_L3.
  41. #define RANDOMX_SCRATCHPAD_L2 (256 * 1024)
  42. //Scratchpad L1 size in bytes. Must be a power of two and less than or equal to RANDOMX_SCRATCHPAD_L2.
  43. #define RANDOMX_SCRATCHPAD_L1 (16 * 1024)
  44. //How many register bits must be zero for a jump condition to be triggered
  45. #define RANDOMX_CONDITION_BITS 7
  46. /*
  47. Instruction frequencies (per 256 opcodes)
  48. Total sum of frequencies must be 256
  49. */
  50. #define RANDOMX_FREQ_IADD_RS 32
  51. #define RANDOMX_FREQ_IADD_M 7
  52. #define RANDOMX_FREQ_ISUB_R 17
  53. #define RANDOMX_FREQ_ISUB_M 7
  54. #define RANDOMX_FREQ_IMUL_R 16
  55. #define RANDOMX_FREQ_IMUL_M 4
  56. #define RANDOMX_FREQ_IMULH_R 4
  57. #define RANDOMX_FREQ_IMULH_M 1
  58. #define RANDOMX_FREQ_ISMULH_R 4
  59. #define RANDOMX_FREQ_ISMULH_M 1
  60. #define RANDOMX_FREQ_IMUL_RCP 8
  61. #define RANDOMX_FREQ_INEG_R 2
  62. #define RANDOMX_FREQ_IXOR_R 15
  63. #define RANDOMX_FREQ_IXOR_M 5
  64. #define RANDOMX_FREQ_IROR_R 10
  65. #define RANDOMX_FREQ_IROL_R 0
  66. #define RANDOMX_FREQ_ISWAP_R 4
  67. #define RANDOMX_FREQ_FSWAP_R 8
  68. #define RANDOMX_FREQ_FADD_R 20
  69. #define RANDOMX_FREQ_FADD_M 5
  70. #define RANDOMX_FREQ_FSUB_R 20
  71. #define RANDOMX_FREQ_FSUB_M 5
  72. #define RANDOMX_FREQ_FSCAL_R 6
  73. #define RANDOMX_FREQ_FMUL_R 20
  74. #define RANDOMX_FREQ_FDIV_M 4
  75. #define RANDOMX_FREQ_FSQRT_R 6
  76. #define RANDOMX_FREQ_COND_R 8
  77. #define RANDOMX_FREQ_CFROUND 1
  78. #define RANDOMX_FREQ_ISTORE 16
  79. #define RANDOMX_FREQ_NOP 0
  80. /* ------
  81. 256
  82. */