1
0
mirror of https://github.com/hashcat/hashcat.git synced 2025-07-04 22:02:36 +00:00
hashcat/OpenCL
Jens Steube 0c2ed0d199 Update plugins that benefit from an artificially limited register count (NVIDIA).
Update default hash settings to 64MiB:3:4 for Argon2 in -m 70000, following RFC 9106 recommendations.
Add option OPTS_TYPE_THREAD_MULTI_DISABLE: allows plugin developers to disable scaling the password candidate batch size based on device thread count. This can be useful for super slow hash algorithms that utilize threads differently, e.g., when the algorithm allows parallelization. Note: thread count for the device can still be set normally.
Add options OPTI_TYPE_SLOW_HASH_DIMY_INIT/LOOP/COMP: enable 2D launches for slow hash init/loop/comp kernel with dimensions X and Y. The Y value must be set via salt->salt_dimy attribute.
Change autotune kernel-loops start value to the lowest multiple of the target hash iteration count, if kernel_loops_min permits.
Fixed a bug in autotune where kernel_threads_max was not respected during initial init and loop-prepare kernel runs.
2025-06-29 14:39:14 +02:00
..
amp_a0.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
amp_a1.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
amp_a3.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
inc_amp.h Prepare rename macros in header files from _MACRO to MACRO 2023-01-17 19:25:40 +00:00
inc_bignum_operations.cl Fix some typos 2023-07-27 23:11:55 +07:00
inc_bignum_operations.h Prepare rename macros in header files from _MACRO to MACRO 2023-01-17 19:25:40 +00:00
inc_cipher_aes-gcm.cl Fix missing AES_GCM_decrypt in inc_cipher_aes-gcm.cl 2023-08-19 20:46:39 +00:00
inc_cipher_aes-gcm.h m26610 now also checking second block of plaintext, moved AES_GCM_decrypt to seperate function 2023-03-08 00:50:40 +01:00
inc_cipher_aes.cl clang-tidy: use const pointer 2023-08-10 18:35:24 -07:00
inc_cipher_aes.h clang-tidy: use const pointer 2023-08-10 18:35:24 -07:00
inc_cipher_camellia.cl Kernels: Set the default Address Space Qualifier for any pointer, refactored / updated KERN_ATTR macros and rc4 cipher functions, in order to support Apple Metal runtime 2022-02-04 19:54:00 +01:00
inc_cipher_camellia.h Prepare rename macros in header files from _MACRO to MACRO 2023-01-17 19:25:40 +00:00
inc_cipher_cast.cl Fix CRLF in OpenCL/inc_cipher_cast.cl 2023-09-24 20:25:55 +00:00
inc_cipher_cast.h Add missing OpenCL/inc_cipher_cast.cl and moved code from the .h to it 2023-08-22 07:10:06 +00:00
inc_cipher_des.cl Kernels: Set the default Address Space Qualifier for any pointer, refactored / updated KERN_ATTR macros and rc4 cipher functions, in order to support Apple Metal runtime 2022-02-04 19:54:00 +01:00
inc_cipher_des.h Prepare rename macros in header files from _MACRO to MACRO 2023-01-17 19:25:40 +00:00
inc_cipher_kuznyechik.cl Kernels: Set the default Address Space Qualifier for any pointer, refactored / updated KERN_ATTR macros and rc4 cipher functions, in order to support Apple Metal runtime 2022-02-04 19:54:00 +01:00
inc_cipher_kuznyechik.h Prepare rename macros in header files from _MACRO to MACRO 2023-01-17 19:25:40 +00:00
inc_cipher_rc4.cl - Replace naive 32 bit rotate with funnelshift on CUDA/HIP 2025-06-02 11:50:08 +02:00
inc_cipher_rc4.h Added hash-modes: RC4 40-bit DropN, RC4 72-bit DropN, RC4 104-bit DropN 2025-05-06 20:44:50 +02:00
inc_cipher_serpent.cl Kernels: Set the default Address Space Qualifier for any pointer, refactored / updated KERN_ATTR macros and rc4 cipher functions, in order to support Apple Metal runtime 2022-02-04 19:54:00 +01:00
inc_cipher_serpent.h Prepare rename macros in header files from _MACRO to MACRO 2023-01-17 19:25:40 +00:00
inc_cipher_twofish.cl Kernels: Set the default Address Space Qualifier for any pointer, refactored / updated KERN_ATTR macros and rc4 cipher functions, in order to support Apple Metal runtime 2022-02-04 19:54:00 +01:00
inc_cipher_twofish.h Prepare rename macros in header files from _MACRO to MACRO 2023-01-17 19:25:40 +00:00
inc_common.cl Merge pull request #4195 from matrix/issue_4175 2025-05-24 16:29:26 +02:00
inc_common.h porting the new scrypt engine to Apple Metal 2025-06-17 22:17:59 +02:00
inc_comp_multi_bs.cl Kernels: Refactored standard kernel declaration to use a structure holding u32/u64 attributes to reduce the number of attributes 2022-01-04 18:07:18 +01:00
inc_comp_multi_bs.h
inc_comp_multi_iba.cl Add support for detecting unified GPU memory on CUDA and HIP (previously available only for OpenCL and Metal). 2025-06-17 13:32:57 +02:00
inc_comp_multi_iba.h Add support for hash comparison checks to allow slight inaccuracies if so selected in the kernel 2023-11-23 15:19:02 +00:00
inc_comp_multi.cl Kernels: Refactored standard kernel declaration to use a structure holding u32/u64 attributes to reduce the number of attributes 2022-01-04 18:07:18 +01:00
inc_comp_multi.h
inc_comp_single_bs.cl Kernels: Refactored standard kernel declaration to use a structure holding u32/u64 attributes to reduce the number of attributes 2022-01-04 18:07:18 +01:00
inc_comp_single_bs.h
inc_comp_single.cl Kernels: Refactored standard kernel declaration to use a structure holding u32/u64 attributes to reduce the number of attributes 2022-01-04 18:07:18 +01:00
inc_comp_single.h
inc_diskcryptor_xts.cl Kernels: Set the default Address Space Qualifier for any pointer, refactored / updated KERN_ATTR macros and rc4 cipher functions, in order to support Apple Metal runtime 2022-02-04 19:54:00 +01:00
inc_diskcryptor_xts.h Prepare rename macros in header files from _MACRO to MACRO 2023-01-17 19:25:40 +00:00
inc_ecc_secp256k1.cl clang-tidy: use const pointer 2023-08-10 18:35:24 -07:00
inc_ecc_secp256k1.h Prepare rename macros in header files from _MACRO to MACRO 2023-01-17 19:25:40 +00:00
inc_hash_base58.cl Update inc_hash_base58.cl 2023-11-08 17:08:58 +08:00
inc_hash_base58.h Prepare rename macros in header files from _MACRO to MACRO 2023-01-17 19:25:40 +00:00
inc_hash_blake2b.cl Fix function declaration of blake2b_init_vector_from_scalar() to use on Apple Metal 2022-11-10 22:32:42 +01:00
inc_hash_blake2b.h Prepare rename macros in header files from _MACRO to MACRO 2023-01-17 19:25:40 +00:00
inc_hash_blake2s.cl Added OpenCL files for plugin 67890 2025-04-11 16:11:20 +01:00
inc_hash_blake2s.h Added OpenCL files for plugin 67890 2025-04-11 16:11:20 +01:00
inc_hash_md4.cl Add important checks for pw_len == -1 to avoid out of boundary read/writes 2022-03-31 11:45:58 +02:00
inc_hash_md4.h Prepare rename macros in header files from _MACRO to MACRO 2023-01-17 19:25:40 +00:00
inc_hash_md5.cl Add important checks for pw_len == -1 to avoid out of boundary read/writes 2022-03-31 11:45:58 +02:00
inc_hash_md5.h Prepare rename macros in header files from _MACRO to MACRO 2023-01-17 19:25:40 +00:00
inc_hash_ripemd160.cl Add important checks for pw_len == -1 to avoid out of boundary read/writes 2022-03-31 11:45:58 +02:00
inc_hash_ripemd160.h Prepare rename macros in header files from _MACRO to MACRO 2023-01-17 19:25:40 +00:00
inc_hash_ripemd320.cl Added hash-modes: RIPEMD-320, HMAC-RIPEMD320 (key = $pass), HMAC-RIPEMD320 (key = $salt) 2025-05-26 20:28:13 +02:00
inc_hash_ripemd320.h Added hash-modes: RIPEMD-320, HMAC-RIPEMD320 (key = $pass), HMAC-RIPEMD320 (key = $salt) 2025-05-26 20:28:13 +02:00
inc_hash_scrypt.cl - Renamed shuffle() in inc_hash_scrypt.cl to avoid name collision with 2025-06-26 19:36:06 +02:00
inc_hash_scrypt.h Rewrote the SCRYPT core to work around a segmentation fault bug in the Intel OpenCL CPU runtime, without negatively affecting other runtimes. 2025-06-26 09:47:36 +02:00
inc_hash_sha1.cl Remove SHA1_TRANSFORM_SWAP modificaton in inc_hash_sha1.cl and use replacement of sha1_final in -m 32700 sources as replacement 2023-09-13 07:50:20 +00:00
inc_hash_sha1.h Added hash-mode: Veeam VBK 2023-03-01 11:35:37 +00:00
inc_hash_sha224.cl Add important checks for pw_len == -1 to avoid out of boundary read/writes 2022-03-31 11:45:58 +02:00
inc_hash_sha224.h Prepare rename macros in header files from _MACRO to MACRO 2023-01-17 19:25:40 +00:00
inc_hash_sha256.cl Add sha256_hmac_init_global_utf16le_swap() for later use 2025-05-12 11:22:16 +02:00
inc_hash_sha256.h Add sha256_hmac_init_global_utf16le_swap() for later use 2025-05-12 11:22:16 +02:00
inc_hash_sha384.cl Add important checks for pw_len == -1 to avoid out of boundary read/writes 2022-03-31 11:45:58 +02:00
inc_hash_sha384.h Prepare rename macros in header files from _MACRO to MACRO 2023-01-17 19:25:40 +00:00
inc_hash_sha512.cl Fix sha512_hmac_init_global_utf16le_swap(); hmac doesn't have password length 2022-03-31 12:58:01 +02:00
inc_hash_sha512.h Prepare rename macros in header files from _MACRO to MACRO 2023-01-17 19:25:40 +00:00
inc_hash_sm3.cl fix trailing spaces 2023-04-11 15:52:34 +02:00
inc_hash_sm3.h Optimize SM3 for use on platforms that support native bitselect() 2023-02-24 21:56:55 +00:00
inc_hash_streebog256.cl Kernels: Set the default Address Space Qualifier for any pointer, refactored / updated KERN_ATTR macros and rc4 cipher functions, in order to support Apple Metal runtime 2022-02-04 19:54:00 +01:00
inc_hash_streebog256.h Prepare rename macros in header files from _MACRO to MACRO 2023-01-17 19:25:40 +00:00
inc_hash_streebog512.cl Kernels: Set the default Address Space Qualifier for any pointer, refactored / updated KERN_ATTR macros and rc4 cipher functions, in order to support Apple Metal runtime 2022-02-04 19:54:00 +01:00
inc_hash_streebog512.h Prepare rename macros in header files from _MACRO to MACRO 2023-01-17 19:25:40 +00:00
inc_hash_whirlpool.cl clang-tidy: use const pointer 2023-08-10 18:35:24 -07:00
inc_hash_whirlpool.h clang-tidy: use const pointer 2023-08-10 18:35:24 -07:00
inc_luks_aes.cl New LUKS v1 modules 2022-06-25 13:54:20 +02:00
inc_luks_aes.h Prepare rename macros in header files from _MACRO to MACRO 2023-01-17 19:25:40 +00:00
inc_luks_af.cl Kernels: Set the default Address Space Qualifier for any pointer, refactored / updated KERN_ATTR macros and rc4 cipher functions, in order to support Apple Metal runtime 2022-02-04 19:54:00 +01:00
inc_luks_af.h Prepare rename macros in header files from _MACRO to MACRO 2023-01-17 19:25:40 +00:00
inc_luks_essiv.cl Kernels: Set the default Address Space Qualifier for any pointer, refactored / updated KERN_ATTR macros and rc4 cipher functions, in order to support Apple Metal runtime 2022-02-04 19:54:00 +01:00
inc_luks_essiv.h Prepare rename macros in header files from _MACRO to MACRO 2023-01-17 19:25:40 +00:00
inc_luks_serpent.cl New LUKS v1 modules 2022-06-25 13:54:20 +02:00
inc_luks_serpent.h Prepare rename macros in header files from _MACRO to MACRO 2023-01-17 19:25:40 +00:00
inc_luks_twofish.cl New LUKS v1 modules 2022-06-25 13:54:20 +02:00
inc_luks_twofish.h Prepare rename macros in header files from _MACRO to MACRO 2023-01-17 19:25:40 +00:00
inc_luks_xts.cl Kernels: Set the default Address Space Qualifier for any pointer, refactored / updated KERN_ATTR macros and rc4 cipher functions, in order to support Apple Metal runtime 2022-02-04 19:54:00 +01:00
inc_luks_xts.h Prepare rename macros in header files from _MACRO to MACRO 2023-01-17 19:25:40 +00:00
inc_markov.h Prepare rename macros in header files from _MACRO to MACRO 2023-01-17 19:25:40 +00:00
inc_platform.cl Improve the logic for when to use funnelshift and when not to. Some algorithms, such as SHA1-HMAC and DCC1, do not work well with it, so it has been disabled for them. 2025-06-23 12:30:12 +02:00
inc_platform.h porting the new scrypt engine to Apple Metal 2025-06-17 22:17:59 +02:00
inc_radmin3_constants.h Prepare rename macros in header files from _MACRO to MACRO 2023-01-17 19:25:40 +00:00
inc_rp_optimized.cl Fix double use of macro HC_INLINE 2022-11-08 19:05:18 +01:00
inc_rp_optimized.h Prepare rename macros in header files from _MACRO to MACRO 2023-01-17 19:25:40 +00:00
inc_rp.cl Kernels: Set the default Address Space Qualifier for any pointer, refactored / updated KERN_ATTR macros and rc4 cipher functions, in order to support Apple Metal runtime 2022-02-04 19:54:00 +01:00
inc_rp.h Prepare rename macros in header files from _MACRO to MACRO 2023-01-17 19:25:40 +00:00
inc_scalar.cl Kernels: Refactored standard kernel declaration to use a structure holding u32/u64 attributes to reduce the number of attributes 2022-01-04 18:07:18 +01:00
inc_scalar.h
inc_shared.h Prepare rename macros in header files from _MACRO to MACRO 2023-01-17 19:25:40 +00:00
inc_simd.cl
inc_simd.h Prepare rename macros in header files from _MACRO to MACRO 2023-01-17 19:25:40 +00:00
inc_truecrypt_crc32.cl
inc_truecrypt_crc32.h Prepare rename macros in header files from _MACRO to MACRO 2023-01-17 19:25:40 +00:00
inc_truecrypt_keyfile.cl Kernels: Set the default Address Space Qualifier for any pointer, refactored / updated KERN_ATTR macros and rc4 cipher functions, in order to support Apple Metal runtime 2022-02-04 19:54:00 +01:00
inc_truecrypt_keyfile.h Prepare rename macros in header files from _MACRO to MACRO 2023-01-17 19:25:40 +00:00
inc_truecrypt_xts.cl Kernels: Set the default Address Space Qualifier for any pointer, refactored / updated KERN_ATTR macros and rc4 cipher functions, in order to support Apple Metal runtime 2022-02-04 19:54:00 +01:00
inc_truecrypt_xts.h Prepare rename macros in header files from _MACRO to MACRO 2023-01-17 19:25:40 +00:00
inc_types.h Update plugins that benefit from an artificially limited register count (NVIDIA). 2025-06-29 14:39:14 +02:00
inc_vendor.h Improve the logic for when to use funnelshift and when not to. Some algorithms, such as SHA1-HMAC and DCC1, do not work well with it, so it has been disabled for them. 2025-06-23 12:30:12 +02:00
inc_veracrypt_keyfile.cl Kernels: Set the default Address Space Qualifier for any pointer, refactored / updated KERN_ATTR macros and rc4 cipher functions, in order to support Apple Metal runtime 2022-02-04 19:54:00 +01:00
inc_veracrypt_keyfile.h Prepare rename macros in header files from _MACRO to MACRO 2023-01-17 19:25:40 +00:00
inc_veracrypt_xts.cl Kernels: Set the default Address Space Qualifier for any pointer, refactored / updated KERN_ATTR macros and rc4 cipher functions, in order to support Apple Metal runtime 2022-02-04 19:54:00 +01:00
inc_veracrypt_xts.h Prepare rename macros in header files from _MACRO to MACRO 2023-01-17 19:25:40 +00:00
inc_zip_inflate.cl Fix a bug causing -m172xx (pkzip) to fail on data sizes > 32 KB 2022-12-21 18:31:53 +01:00
m00000_a0-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m00000_a0-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m00000_a1-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m00000_a1-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m00000_a3-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m00000_a3-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m00010_a0-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m00010_a0-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m00010_a1-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m00010_a1-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m00010_a3-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m00010_a3-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m00020_a0-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m00020_a0-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m00020_a1-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m00020_a1-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m00020_a3-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m00020_a3-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m00030_a0-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m00030_a0-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m00030_a1-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m00030_a1-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m00030_a3-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m00030_a3-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m00040_a0-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m00040_a0-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m00040_a1-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m00040_a1-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m00040_a3-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m00040_a3-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m00050_a0-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m00050_a0-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m00050_a1-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m00050_a1-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m00050_a3-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m00050_a3-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m00060_a0-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m00060_a0-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m00060_a1-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m00060_a1-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m00060_a3-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m00060_a3-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m00070_a0-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m00070_a0-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m00070_a1-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m00070_a1-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m00070_a3-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m00070_a3-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m00100_a0-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m00100_a0-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m00100_a1-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m00100_a1-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m00100_a3-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m00100_a3-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m00110_a0-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m00110_a0-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m00110_a1-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m00110_a1-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m00110_a3-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m00110_a3-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m00120_a0-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m00120_a0-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m00120_a1-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m00120_a1-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m00120_a3-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m00120_a3-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m00130_a0-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m00130_a0-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m00130_a1-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m00130_a1-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m00130_a3-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m00130_a3-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m00140_a0-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m00140_a0-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m00140_a1-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m00140_a1-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m00140_a3-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m00140_a3-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m00150_a0-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m00150_a0-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m00150_a1-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m00150_a1-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m00150_a3-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m00150_a3-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m00160_a0-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m00160_a0-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m00160_a1-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m00160_a1-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m00160_a3-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m00160_a3-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m00170_a0-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m00170_a0-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m00170_a1-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m00170_a1-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m00170_a3-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m00170_a3-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m00200_a0-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m00200_a1-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m00200_a3-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m00300_a0-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m00300_a0-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m00300_a1-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m00300_a1-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m00300_a3-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m00300_a3-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m00400-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m00400-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m00500-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m00500-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m00600_a0-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m00600_a0-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m00600_a1-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m00600_a1-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m00600_a3-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m00600_a3-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m00610_a0-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m00610_a0-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m00610_a1-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m00610_a1-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m00610_a3-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m00610_a3-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m00620_a0-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m00620_a0-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m00620_a1-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m00620_a1-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m00620_a3-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m00620_a3-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m00900_a0-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m00900_a0-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m00900_a1-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m00900_a1-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m00900_a3-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m00900_a3-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m01000_a0-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m01000_a0-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m01000_a1-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m01000_a1-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m01000_a3-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m01000_a3-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m01100_a0-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m01100_a0-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m01100_a1-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m01100_a1-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m01100_a3-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m01100_a3-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m01300_a0-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m01300_a0-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m01300_a1-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m01300_a1-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m01300_a3-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m01300_a3-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m01400_a0-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m01400_a0-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m01400_a1-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m01400_a1-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m01400_a3-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m01400_a3-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m01410_a0-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m01410_a0-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m01410_a1-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m01410_a1-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m01410_a3-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m01410_a3-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m01420_a0-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m01420_a0-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m01420_a1-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m01420_a1-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m01420_a3-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m01420_a3-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m01430_a0-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m01430_a0-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m01430_a1-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m01430_a1-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m01430_a3-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m01430_a3-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m01440_a0-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m01440_a0-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m01440_a1-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m01440_a1-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m01440_a3-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m01440_a3-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m01450_a0-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m01450_a0-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m01450_a1-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m01450_a1-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m01450_a3-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m01450_a3-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m01460_a0-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m01460_a0-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m01460_a1-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m01460_a1-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m01460_a3-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m01460_a3-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m01470_a0-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m01470_a0-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m01470_a1-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m01470_a1-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m01470_a3-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m01470_a3-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m01500_a0-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m01500_a1-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m01500_a3-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m01600-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m01600-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m01700_a0-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m01700_a0-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m01700_a1-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m01700_a1-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m01700_a3-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m01700_a3-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m01710_a0-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m01710_a0-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m01710_a1-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m01710_a1-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m01710_a3-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m01710_a3-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m01720_a0-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m01720_a0-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m01720_a1-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m01720_a1-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m01720_a3-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m01720_a3-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m01730_a0-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m01730_a0-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m01730_a1-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m01730_a1-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m01730_a3-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m01730_a3-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m01740_a0-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m01740_a0-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m01740_a1-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m01740_a1-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m01740_a3-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m01740_a3-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m01750_a0-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m01750_a0-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m01750_a1-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m01750_a1-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m01750_a3-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m01750_a3-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m01760_a0-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m01760_a0-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m01760_a1-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m01760_a1-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m01760_a3-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m01760_a3-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m01770_a0-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m01770_a0-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m01770_a1-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m01770_a1-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m01770_a3-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m01770_a3-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m01800-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m01800-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m02000_a0-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m02000_a0-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m02000_a1-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m02000_a1-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m02000_a3-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m02000_a3-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m02100-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m02400_a0-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m02400_a1-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m02400_a3-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m02410_a0-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m02410_a1-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m02410_a3-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m02500-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m02501-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m02610_a0-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m02610_a0-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m02610_a1-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m02610_a1-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m02610_a3-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m02610_a3-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m02630_a0-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m02630_a0-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m02630_a1-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m02630_a1-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m02630_a3-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m02630_a3-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m02710_a0-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m02710_a1-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m02710_a3-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m02810_a0-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m02810_a0-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m02810_a1-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m02810_a1-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m02810_a3-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m02810_a3-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m03000_a0-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m03000_a1-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m03000_a3-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m03100_a0-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m03100_a1-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m03100_a3-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m03200-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m03500_a0-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m03500_a0-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m03500_a1-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m03500_a1-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m03500_a3-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m03500_a3-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m03610_a0-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m03610_a0-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m03610_a1-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m03610_a1-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m03610_a3-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m03610_a3-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m03710_a0-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m03710_a0-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m03710_a1-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m03710_a1-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m03710_a3-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m03710_a3-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m03730_a0-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m03730_a1-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m03730_a3-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m03800_a0-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m03800_a0-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m03800_a1-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m03800_a1-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m03800_a3-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m03800_a3-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m03910_a0-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m03910_a0-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m03910_a1-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m03910_a1-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m03910_a3-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m03910_a3-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m04010_a0-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m04010_a0-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m04010_a1-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m04010_a1-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m04010_a3-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m04010_a3-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m04110_a0-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m04110_a0-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m04110_a1-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m04110_a1-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m04110_a3-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m04110_a3-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m04310_a0-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m04310_a0-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m04310_a1-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m04310_a1-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m04310_a3-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m04310_a3-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m04400_a0-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m04400_a0-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m04400_a1-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m04400_a1-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m04400_a3-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m04400_a3-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m04410_a0-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m04410_a0-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m04410_a1-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m04410_a1-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m04410_a3-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m04410_a3-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m04420_a0-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m04420_a0-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m04420_a1-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m04420_a1-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m04420_a3-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m04420_a3-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m04430_a0-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m04430_a0-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m04430_a1-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m04430_a1-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m04430_a3-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m04430_a3-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m04500_a0-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m04500_a0-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m04500_a1-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m04500_a1-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m04500_a3-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m04500_a3-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m04510_a0-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m04510_a0-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m04510_a1-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m04510_a1-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m04510_a3-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m04510_a3-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m04520_a0-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m04520_a0-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m04520_a1-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m04520_a1-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m04520_a3-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m04520_a3-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m04700_a0-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m04700_a0-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m04700_a1-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m04700_a1-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m04700_a3-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m04700_a3-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m04710_a0-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m04710_a0-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m04710_a1-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m04710_a1-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m04710_a3-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m04710_a3-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m04800_a0-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m04800_a0-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m04800_a1-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m04800_a1-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m04800_a3-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m04800_a3-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m04900_a0-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m04900_a0-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m04900_a1-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m04900_a1-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m04900_a3-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m04900_a3-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m05000_a0-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m05000_a0-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m05000_a1-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m05000_a1-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m05000_a3-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m05000_a3-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m05100_a0-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m05100_a0-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m05100_a1-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m05100_a1-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m05100_a3-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m05100_a3-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m05200-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m05300_a0-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m05300_a0-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m05300_a1-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m05300_a1-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m05300_a3-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m05300_a3-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m05400_a0-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m05400_a0-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m05400_a1-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m05400_a1-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m05400_a3-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m05400_a3-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m05500_a0-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m05500_a0-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m05500_a1-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m05500_a1-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m05500_a3-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m05500_a3-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m05600_a0-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m05600_a0-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m05600_a1-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m05600_a1-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m05600_a3-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m05600_a3-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m05800-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m05800-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m06000_a0-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m06000_a0-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m06000_a1-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m06000_a1-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m06000_a3-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m06000_a3-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m06050_a0-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m06050_a1-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m06050_a3-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m06060_a0-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m06060_a1-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m06060_a3-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m06100_a0-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m06100_a0-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m06100_a1-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m06100_a1-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m06100_a3-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m06100_a3-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m06211-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m06212-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m06213-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m06221-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m06222-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m06223-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m06231-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m06232-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m06233-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m06300-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m06300-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m06400-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m06500-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m06600-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m06700-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m06800-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m06900_a0-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m06900_a1-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m06900_a3-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m07000_a0-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m07000_a0-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m07000_a1-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m07000_a1-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m07000_a3-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m07000_a3-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m07100-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m07300_a0-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m07300_a0-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m07300_a1-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m07300_a1-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m07300_a3-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m07300_a3-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m07350_a0-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m07350_a0-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m07350_a1-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m07350_a1-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m07350_a3-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m07350_a3-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m07400-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m07400-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m07500_a0-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m07500_a0-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m07500_a1-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m07500_a1-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m07500_a3-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m07500_a3-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m07700_a0-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m07700_a1-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m07700_a3-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m07701_a0-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m07701_a1-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m07701_a3-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m07800_a0-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m07800_a1-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m07800_a3-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m07801_a0-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m07801_a1-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m07801_a3-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m07900-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m08000_a0-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m08000_a1-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m08000_a3-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m08100_a0-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m08100_a0-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m08100_a1-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m08100_a1-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m08100_a3-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m08100_a3-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m08200-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m08300_a0-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m08300_a0-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m08300_a1-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m08300_a1-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m08300_a3-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m08300_a3-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m08400_a0-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m08400_a0-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m08400_a1-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m08400_a1-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m08400_a3-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m08400_a3-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m08500_a0-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m08500_a1-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m08500_a3-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m08600_a0-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m08600_a1-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m08600_a3-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m08700_a0-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m08700_a1-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m08700_a3-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m08800-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m08900-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m09000-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m09100-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m09400-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m09500-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m09600-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m09700_a0-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m09700_a1-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m09700_a3-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m09710_a0-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m09710_a1-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m09710_a3-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m09720_a0-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m09720_a1-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m09720_a3-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m09800_a0-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m09800_a1-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m09800_a3-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m09810_a0-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m09810_a1-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m09810_a3-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m09820_a0-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m09820_a1-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m09820_a3-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m09900_a0-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m09900_a0-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m09900_a1-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m09900_a1-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m09900_a3-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m09900_a3-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m10100_a0-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m10100_a1-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m10100_a3-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m10300-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m10400_a0-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m10400_a1-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m10400_a3-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m10410_a0-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m10410_a1-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m10410_a3-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m10420_a0-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m10420_a1-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m10420_a3-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m10500-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m10700-optimized.cl Enhanced the auto-tune engine: when a kernel runs with a single thread and no accel, it should finish quickly (ideally under 1 ms). If it doesn't, the kernel is likely overloaded with code. If such a kernel also uses barriers (e.g., to load shared storage with multiple threads), high iteration counts cause unnecessary thread waiting. To address this, we now skip increasing the loop count if the runtime exceeds either 1/8 of the target time (based on the -w setting) or a hard-coded threshold of 4 ms. 2025-06-25 22:10:29 +02:00
m10700-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m10800_a0-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m10800_a0-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m10800_a1-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m10800_a1-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m10800_a3-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m10800_a3-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m10810_a0-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m10810_a0-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m10810_a1-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m10810_a1-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m10810_a3-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m10810_a3-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m10820_a0-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m10820_a0-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m10820_a1-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m10820_a1-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m10820_a3-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m10820_a3-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m10830_a0-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m10830_a0-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m10830_a1-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m10830_a1-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m10830_a3-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m10830_a3-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m10840_a0-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m10840_a0-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m10840_a1-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m10840_a1-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m10840_a3-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m10840_a3-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m10870_a0-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m10870_a0-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m10870_a1-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m10870_a1-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m10870_a3-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m10870_a3-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m10900-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m11000_a0-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m11000_a0-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m11000_a1-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m11000_a1-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m11000_a3-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m11000_a3-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m11100_a0-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m11100_a0-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m11100_a1-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m11100_a1-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m11100_a3-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m11100_a3-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m11200_a0-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m11200_a0-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m11200_a1-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m11200_a1-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m11200_a3-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m11200_a3-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m11300-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m11400_a0-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m11400_a1-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m11400_a3-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m11500_a0-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m11500_a0-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m11500_a1-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m11500_a1-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m11500_a3-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m11500_a3-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m11600-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m11600-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m11700_a0-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m11700_a0-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m11700_a1-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m11700_a1-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m11700_a3-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m11700_a3-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m11750_a0-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m11750_a1-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m11750_a3-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m11760_a0-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m11760_a1-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m11760_a3-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m11800_a0-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m11800_a0-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m11800_a1-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m11800_a1-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m11800_a3-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m11800_a3-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m11850_a0-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m11850_a1-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m11850_a3-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m11860_a0-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m11860_a1-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m11860_a3-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m11900-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m12000-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m12200-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m12300-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m12400-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m12500-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m12500-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m12600_a0-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m12600_a0-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m12600_a1-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m12600_a1-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m12600_a3-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m12600_a3-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m12700-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m12800-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m12900-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m13000-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m13100_a0-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m13100_a0-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m13100_a1-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m13100_a1-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m13100_a3-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m13100_a3-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m13200-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m13300_a0-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m13300_a0-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m13300_a1-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m13300_a1-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m13300_a3-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m13300_a3-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m13400-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m13500_a0-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m13500_a0-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m13500_a1-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m13500_a1-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m13500_a3-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m13500_a3-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m13600-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m13711-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m13712-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m13713-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m13721-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m13722-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m13723-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m13731-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m13732-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m13733-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m13751-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m13752-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m13753-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m13771-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m13772-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m13773-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m13800_a0-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m13800_a0-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m13800_a1-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m13800_a1-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m13800_a3-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m13800_a3-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m13900_a0-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m13900_a0-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m13900_a1-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m13900_a1-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m13900_a3-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m13900_a3-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m14000_a0-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m14000_a1-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m14000_a3-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m14100_a0-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m14100_a1-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m14100_a3-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m14400_a0-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m14400_a0-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m14400_a1-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m14400_a1-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m14400_a3-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m14400_a3-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m14511_a0-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m14511_a1-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m14511_a3-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m14512_a0-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m14512_a1-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m14512_a3-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m14513_a0-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m14513_a1-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m14513_a3-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m14521_a0-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m14521_a1-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m14521_a3-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m14522_a0-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m14522_a1-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m14522_a3-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m14523_a0-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m14523_a1-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m14523_a3-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m14531_a0-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m14531_a1-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m14531_a3-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m14532_a0-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m14532_a1-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m14532_a3-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m14533_a0-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m14533_a1-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m14533_a3-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m14541_a0-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m14541_a1-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m14541_a3-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m14542_a0-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m14542_a1-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m14542_a3-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m14543_a0-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m14543_a1-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m14543_a3-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m14551_a0-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m14551_a1-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m14551_a3-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m14552_a0-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m14552_a1-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m14552_a3-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m14553_a0-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m14553_a1-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m14553_a3-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m14611-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m14612-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m14613-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m14621-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m14622-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m14623-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m14631-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m14632-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m14633-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m14641-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m14642-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m14643-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m14700-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m14800-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m14900_a0-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m14900_a1-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m14900_a3-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m15000_a0-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m15000_a0-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m15000_a1-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m15000_a1-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m15000_a3-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m15000_a3-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m15100-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m15300-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m15310-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m15400_a0-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m15400_a1-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m15400_a3-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m15500_a0-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m15500_a0-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m15500_a1-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m15500_a1-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m15500_a3-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m15500_a3-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m15600-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m15700-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m15900-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m15910-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m16000_a0-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m16000_a1-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m16000_a3-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m16100_a0-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m16100_a0-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m16100_a1-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m16100_a1-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m16100_a3-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m16100_a3-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m16200-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m16300-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m16400_a0-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m16400_a0-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m16400_a1-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m16400_a1-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m16400_a3-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m16400_a3-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m16511_a0-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m16511_a1-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m16511_a3-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m16512_a0-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m16512_a1-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m16512_a3-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m16513_a0-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m16513_a1-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m16513_a3-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m16600_a0-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m16600_a0-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m16600_a1-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m16600_a1-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m16600_a3-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m16600_a3-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m16800-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m16801-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m16900-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m17010-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m17020-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m17030-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m17040-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m17200_a0-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m17200_a1-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m17200_a3-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m17210_a0-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m17210_a1-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m17210_a3-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m17220_a0-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m17220_a1-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m17220_a3-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m17225_a0-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m17225_a1-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m17225_a3-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m17230_a0-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m17230_a1-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m17230_a3-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m17300_a0-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m17300_a1-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m17300_a3-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m17400_a0-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m17400_a1-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m17400_a3-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m17500_a0-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m17500_a1-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m17500_a3-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m17600_a0-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m17600_a1-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m17600_a3-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m17700_a0-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m17700_a1-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m17700_a3-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m17800_a0-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m17800_a1-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m17800_a3-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m17900_a0-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m17900_a1-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m17900_a3-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m18000_a0-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m18000_a1-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m18000_a3-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m18100_a0-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m18100_a1-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m18100_a3-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m18200_a0-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m18200_a0-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m18200_a1-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m18200_a1-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m18200_a3-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m18200_a3-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m18300-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m18400-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m18500_a0-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m18500_a1-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m18500_a3-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m18600-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m18700_a0-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m18700_a0-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m18700_a1-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m18700_a1-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m18700_a3-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m18700_a3-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m18800-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m18900-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m19000-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m19100-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m19200-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m19300_a0-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m19300_a1-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m19300_a3-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m19500_a0-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m19500_a1-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m19500_a3-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m19600-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m19700-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m19800-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m19900-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m20011-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m20012-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m20013-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m20500_a0-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m20500_a1-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m20500_a3-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m20510_a0-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m20510_a1-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m20510_a3-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m20600-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m20710_a0-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m20710_a0-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m20710_a1-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m20710_a1-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m20710_a3-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m20710_a3-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m20712_a0-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m20712_a0-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m20712_a1-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m20712_a1-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m20712_a3-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m20712_a3-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m20720_a0-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m20720_a1-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m20720_a3-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m20730_a0-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m20730_a1-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m20730_a3-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m20800_a0-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m20800_a0-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m20800_a1-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m20800_a1-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m20800_a3-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m20800_a3-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m20900_a0-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m20900_a0-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m20900_a1-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m20900_a1-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m20900_a3-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m20900_a3-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m21000_a0-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m21000_a0-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m21000_a1-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m21000_a1-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m21000_a3-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m21000_a3-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m21100_a0-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m21100_a0-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m21100_a1-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m21100_a1-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m21100_a3-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m21100_a3-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m21200_a0-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m21200_a0-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m21200_a1-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m21200_a1-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m21200_a3-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m21200_a3-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m21300_a0-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m21300_a1-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m21300_a3-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m21310_a0-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m21310_a1-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m21310_a3-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m21400_a0-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m21400_a0-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m21400_a1-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m21400_a1-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m21400_a3-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m21400_a3-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m21420_a0-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m21420_a1-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m21420_a3-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m21500-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m21600-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m21700-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m21800-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m22000-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m22001-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m22100-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m22200_a0-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m22200_a0-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m22200_a1-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m22200_a1-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m22200_a3-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m22200_a3-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m22300_a0-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m22300_a0-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m22300_a1-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m22300_a1-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m22300_a3-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m22300_a3-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m22400-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m22500_a0-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m22500_a0-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m22500_a1-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m22500_a1-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m22500_a3-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m22500_a3-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m22600-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m22700-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m22911_a0-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m22911_a1-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m22911_a3-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m22921_a0-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m22921_a1-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m22921_a3-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m22931_a0-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m22931_a1-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m22931_a3-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m22941_a0-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m22941_a1-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m22941_a3-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m22951_a0-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m22951_a1-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m22951_a3-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m23001_a0-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m23001_a0-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m23001_a1-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m23001_a1-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m23001_a3-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m23001_a3-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m23002_a0-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m23002_a0-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m23002_a1-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m23002_a1-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m23002_a3-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m23002_a3-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m23003_a0-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m23003_a0-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m23003_a1-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m23003_a1-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m23003_a3-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m23003_a3-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m23100-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m23200-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m23300-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m23400-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m23500-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m23600-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m23700-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m23700-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m23800-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m23800-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m23900-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m24000-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m24100-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m24200-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m24300_a0-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m24300_a0-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m24300_a1-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m24300_a1-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m24300_a3-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m24300_a3-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m24410-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m24420-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m24500-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m24610-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m24620-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m24630-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m24700_a0-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m24700_a0-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m24700_a1-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m24700_a1-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m24700_a3-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m24700_a3-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m24800_a0-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m24800_a0-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m24800_a1-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m24800_a1-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m24800_a3-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m24800_a3-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m24900_a0-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m24900_a1-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m24900_a3-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m25000-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m25100-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m25200-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m25300-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m25400-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m25500-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m25600-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m25700_a0-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m25700_a1-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m25700_a3-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m25800-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m25900-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m26000_a0-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m26000_a1-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m26000_a3-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m26100-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m26200_a0-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m26200_a1-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m26200_a3-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m26300_a0-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m26300_a1-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m26300_a3-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m26401_a0-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m26401_a1-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m26401_a3-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m26402_a0-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m26402_a1-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m26402_a3-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m26403_a0-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m26403_a1-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m26403_a3-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m26500-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m26600-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m26610-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m26700-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m26800-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m26900-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m27000-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m27100-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m27200_a0-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m27200_a0-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m27200_a1-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m27200_a1-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m27200_a3-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m27200_a3-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m27300-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m27400-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m27500-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m27600-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m27700-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m27800_a0-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m27800_a1-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m27800_a3-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m27900_a0-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m27900_a0-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m27900_a1-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m27900_a1-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m27900_a3-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m27900_a3-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m28000_a0-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m28000_a0-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m28000_a1-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m28000_a1-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m28000_a3-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m28000_a3-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m28100-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m28200-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m28300_a0-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m28300_a1-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m28300_a3-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m28400-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m28501_a0-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m28501_a1-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m28501_a3-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m28502_a0-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m28502_a1-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m28502_a3-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m28505_a0-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m28505_a1-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m28505_a3-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m28506_a0-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m28506_a1-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m28506_a3-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m28600-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m28700_a0-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m28700_a0-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m28700_a1-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m28700_a1-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m28700_a3-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m28700_a3-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m28800-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m28900-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m29000_a0-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m29000_a1-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m29000_a3-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m29100_a0-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m29100_a1-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m29100_a3-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m29200_a0-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m29200_a1-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m29200_a3-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m29600-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m29700-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m29910-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m29920-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m29930-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m29940-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m30420_a0-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m30420_a0-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m30420_a1-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m30420_a1-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m30420_a3-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m30420_a3-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m30500_a0-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m30500_a0-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m30500_a1-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m30500_a1-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m30500_a3-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m30500_a3-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m30600-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m30700_a0-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m30700_a0-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m30700_a1-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m30700_a1-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m30700_a3-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m30700_a3-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m30901_a0-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m30901_a1-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m30901_a3-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m30902_a0-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m30902_a1-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m30902_a3-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m30905_a0-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m30905_a1-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m30905_a3-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m30906_a0-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m30906_a1-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m30906_a3-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m31000_a0-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m31000_a0-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m31000_a1-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m31000_a1-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m31000_a3-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m31000_a3-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m31100_a0-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m31100_a0-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m31100_a1-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m31100_a1-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m31100_a3-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m31100_a3-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m31200-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m31300_a0-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m31300_a0-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m31300_a1-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m31300_a1-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m31300_a3-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m31300_a3-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m31400_a0-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m31400_a0-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m31400_a1-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m31400_a1-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m31400_a3-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m31400_a3-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m31500-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m31600-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m31700_a0-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m31700_a1-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m31700_a3-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m31800-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m31900-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m32000-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m32010-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m32020-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m32030-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m32040-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m32100-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m32200-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m32300_a0-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m32300_a0-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m32300_a1-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m32300_a1-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m32300_a3-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m32300_a3-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m32410_a0-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m32410_a1-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m32410_a3-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m32420_a0-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m32420_a1-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m32420_a3-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m32500-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m32600_a0-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m32600_a1-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m32600_a3-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m32700-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m33300_a0-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m33300_a1-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m33300_a3-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m33500_a0-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m33500_a1-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m33500_a3-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m33501_a0-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m33501_a1-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m33501_a3-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m33502_a0-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m33502_a1-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m33502_a3-optimized.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m33600_a0-optimized.cl change KERNEL_FQ to KERNEL_FQ KERNEL_FA statements 2025-06-26 21:55:07 +02:00
m33600_a0-pure.cl change KERNEL_FQ to KERNEL_FQ KERNEL_FA statements 2025-06-26 21:55:07 +02:00
m33600_a1-optimized.cl change KERNEL_FQ to KERNEL_FQ KERNEL_FA statements 2025-06-26 21:55:07 +02:00
m33600_a1-pure.cl change KERNEL_FQ to KERNEL_FQ KERNEL_FA statements 2025-06-26 21:55:07 +02:00
m33600_a3-optimized.cl change KERNEL_FQ to KERNEL_FQ KERNEL_FA statements 2025-06-26 21:55:07 +02:00
m33600_a3-pure.cl change KERNEL_FQ to KERNEL_FQ KERNEL_FA statements 2025-06-26 21:55:07 +02:00
m33650_a0-pure.cl change KERNEL_FQ to KERNEL_FQ KERNEL_FA statements 2025-06-26 21:55:07 +02:00
m33650_a1-pure.cl change KERNEL_FQ to KERNEL_FQ KERNEL_FA statements 2025-06-26 21:55:07 +02:00
m33650_a3-pure.cl change KERNEL_FQ to KERNEL_FQ KERNEL_FA statements 2025-06-26 21:55:07 +02:00
m33660_a0-pure.cl change KERNEL_FQ to KERNEL_FQ KERNEL_FA statements 2025-06-26 21:55:07 +02:00
m33660_a1-pure.cl change KERNEL_FQ to KERNEL_FQ KERNEL_FA statements 2025-06-26 21:55:07 +02:00
m33660_a3-pure.cl change KERNEL_FQ to KERNEL_FQ KERNEL_FA statements 2025-06-26 21:55:07 +02:00
m33700-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m33800-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m70000-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m70100-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m72000-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
m73000-pure.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
markov_be.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
markov_le.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00
shared.cl Further simplified the use of inc_hash_scrypt.cl without any speed regression, and updated all affected plugin kernels. Use m08900-pure.cl as a template. 2025-06-21 17:41:26 +02:00