mirror of
https://github.com/GOSTSec/ccminer
synced 2025-03-13 05:51:19 +00:00
lyra2: fix compilation on japanese windows (#38)
Remove comment that prevent compilation on japanese windows (#38)
This commit is contained in:
parent
3761774ccf
commit
30db7d2433
@ -555,10 +555,8 @@ void lyra2_cpu_hash_32(int thr_id, uint32_t threads, uint32_t startNounce, uint6
|
||||
size_t shared_mem = 0;
|
||||
|
||||
if (gtx750ti)
|
||||
// 8Warpに調整のため、8192バイト確保する
|
||||
shared_mem = 8192;
|
||||
else
|
||||
// 10Warpに調整のため、6144バイト確保する
|
||||
shared_mem = 6144;
|
||||
|
||||
lyra2_gpu_hash_32_1_sm5 <<< grid2, block2 >>> (threads, startNounce, (uint2*)d_hash);
|
||||
|
@ -950,10 +950,8 @@ uint32_t lyra2Z_cpu_hash_32(int thr_id, uint32_t threads, uint32_t startNounce,
|
||||
size_t shared_mem = 0;
|
||||
|
||||
if (gtx750ti)
|
||||
// 8Warpに調整のため、8192バイト確保する
|
||||
shared_mem = 8192;
|
||||
else
|
||||
// 10Warpに調整のため、6144バイト確保する
|
||||
shared_mem = 6144;
|
||||
|
||||
lyra2Z_gpu_hash_32_1_sm5 <<< grid2, block2 >>> (threads, startNounce, (uint2*)d_hash);
|
||||
|
Loading…
x
Reference in New Issue
Block a user