File tree Expand file tree Collapse file tree 5 files changed +5
-24
lines changed Expand file tree Collapse file tree 5 files changed +5
-24
lines changed Original file line number Diff line number Diff line change @@ -119,6 +119,7 @@ from your old clunkers.
119
119
May 1st 2014 adapt the Jackpot algorithms to changes made by the
120
120
coin developers. We keep our unique nVidia advantage
121
121
because we have a way to break up the divergence.
122
+ NOTE: Jackpot Hash now requires Compute 3.0 or later.
122
123
123
124
April, 27 2014 this release adds Myriad-Groestl and Jackpot Coin.
124
125
we apply an optimization to Jackpot that turns this
Original file line number Diff line number Diff line change @@ -287,11 +287,6 @@ copy "$(CudaToolkitBinDir)\cudart*.dll" "$(OutDir)"</Command>
287
287
<ClInclude Include =" sph\sph_simd.h" />
288
288
<ClInclude Include =" sph\sph_skein.h" />
289
289
<ClInclude Include =" sph\sph_types.h" />
290
- <ClInclude Include =" sph_blake.h" />
291
- <ClInclude Include =" sph_fugue.h" />
292
- <ClInclude Include =" sph_groestl.h" />
293
- <ClInclude Include =" sph_keccak.h" />
294
- <ClInclude Include =" sph_types.h" />
295
290
<ClInclude Include =" uint256.h" />
296
291
</ItemGroup >
297
292
<ItemGroup >
Original file line number Diff line number Diff line change 164
164
<ClInclude Include =" cpuminer-config.h" >
165
165
<Filter >Header Files</Filter >
166
166
</ClInclude >
167
- <ClInclude Include =" sph_blake.h" >
168
- <Filter >Header Files</Filter >
169
- </ClInclude >
170
- <ClInclude Include =" sph_types.h" >
171
- <Filter >Header Files</Filter >
172
- </ClInclude >
173
- <ClInclude Include =" sph_groestl.h" >
174
- <Filter >Header Files</Filter >
175
- </ClInclude >
176
- <ClInclude Include =" sph_keccak.h" >
177
- <Filter >Header Files</Filter >
178
- </ClInclude >
179
167
<ClInclude Include =" hefty1.h" >
180
168
<Filter >Header Files</Filter >
181
169
</ClInclude >
197
185
<ClInclude Include =" cuda_groestl512.h" >
198
186
<Filter >Header Files\CUDA</Filter >
199
187
</ClInclude >
200
- <ClInclude Include =" sph_fugue.h" >
201
- <Filter >Header Files</Filter >
202
- </ClInclude >
203
188
<ClInclude Include =" uint256.h" >
204
189
<Filter >Header Files</Filter >
205
190
</ClInclude >
Original file line number Diff line number Diff line change 8
8
#include < memory.h>
9
9
10
10
// it's unfortunate that this is a compile time constant.
11
- #define MAXWELL_OR_FERMI 0
11
+ #define MAXWELL_OR_FERMI 1
12
12
13
13
// aus cpu-miner.c
14
14
extern int device_map[8 ];
@@ -230,7 +230,7 @@ __device__ void myriadgroestl_gpu_sha256(uint32_t *message)
230
230
#define B32_3 (x ) __byte_perm(x, 0 , 0x4443 )
231
231
// ((x) >> 24)
232
232
233
- #if MAXWELL_OR_FEMRI
233
+ #if MAXWELL_OR_FERMI
234
234
#define USE_SHARED 1
235
235
// Maxwell and Fermi cards get the best speed with SHARED access it seems.
236
236
#if USE_SHARED
Original file line number Diff line number Diff line change 8
8
#include < memory.h>
9
9
10
10
// it's unfortunate that this is a compile time constant.
11
- #define MAXWELL_OR_FERMI 0
11
+ #define MAXWELL_OR_FERMI 1
12
12
13
13
// aus cpu-miner.c
14
14
extern int device_map[8 ];
@@ -41,7 +41,7 @@ static cudaDeviceProp props[8];
41
41
#define B32_3 (x ) __byte_perm(x, 0 , 0x4443 )
42
42
// ((x) >> 24)
43
43
44
- #if MAXWELL_OR_FEMRI
44
+ #if MAXWELL_OR_FERMI
45
45
#define USE_SHARED 1
46
46
// Maxwell and Fermi cards get the best speed with SHARED access it seems.
47
47
#if USE_SHARED
You can’t perform that action at this time.
0 commit comments