Skip to content

Commit 61cbdc6

Browse files
committed
fix the dreaded FEMRI spelling mistake
1 parent 0506a78 commit 61cbdc6

File tree

5 files changed

+5
-24
lines changed

5 files changed

+5
-24
lines changed

README.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -119,6 +119,7 @@ from your old clunkers.
119119
May 1st 2014 adapt the Jackpot algorithms to changes made by the
120120
coin developers. We keep our unique nVidia advantage
121121
because we have a way to break up the divergence.
122+
NOTE: Jackpot Hash now requires Compute 3.0 or later.
122123

123124
April, 27 2014 this release adds Myriad-Groestl and Jackpot Coin.
124125
we apply an optimization to Jackpot that turns this

ccminer.vcxproj

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -287,11 +287,6 @@ copy "$(CudaToolkitBinDir)\cudart*.dll" "$(OutDir)"</Command>
287287
<ClInclude Include="sph\sph_simd.h" />
288288
<ClInclude Include="sph\sph_skein.h" />
289289
<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" />
295290
<ClInclude Include="uint256.h" />
296291
</ItemGroup>
297292
<ItemGroup>

ccminer.vcxproj.filters

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -164,18 +164,6 @@
164164
<ClInclude Include="cpuminer-config.h">
165165
<Filter>Header Files</Filter>
166166
</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>
179167
<ClInclude Include="hefty1.h">
180168
<Filter>Header Files</Filter>
181169
</ClInclude>
@@ -197,9 +185,6 @@
197185
<ClInclude Include="cuda_groestl512.h">
198186
<Filter>Header Files\CUDA</Filter>
199187
</ClInclude>
200-
<ClInclude Include="sph_fugue.h">
201-
<Filter>Header Files</Filter>
202-
</ClInclude>
203188
<ClInclude Include="uint256.h">
204189
<Filter>Header Files</Filter>
205190
</ClInclude>

cuda_myriadgroestl.cu

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
#include <memory.h>
99

1010
// it's unfortunate that this is a compile time constant.
11-
#define MAXWELL_OR_FERMI 0
11+
#define MAXWELL_OR_FERMI 1
1212

1313
// aus cpu-miner.c
1414
extern int device_map[8];
@@ -230,7 +230,7 @@ __device__ void myriadgroestl_gpu_sha256(uint32_t *message)
230230
#define B32_3(x) __byte_perm(x, 0, 0x4443)
231231
//((x) >> 24)
232232

233-
#if MAXWELL_OR_FEMRI
233+
#if MAXWELL_OR_FERMI
234234
#define USE_SHARED 1
235235
// Maxwell and Fermi cards get the best speed with SHARED access it seems.
236236
#if USE_SHARED

quark/cuda_quark_groestl512.cu

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
#include <memory.h>
99

1010
// it's unfortunate that this is a compile time constant.
11-
#define MAXWELL_OR_FERMI 0
11+
#define MAXWELL_OR_FERMI 1
1212

1313
// aus cpu-miner.c
1414
extern int device_map[8];
@@ -41,7 +41,7 @@ static cudaDeviceProp props[8];
4141
#define B32_3(x) __byte_perm(x, 0, 0x4443)
4242
//((x) >> 24)
4343

44-
#if MAXWELL_OR_FEMRI
44+
#if MAXWELL_OR_FERMI
4545
#define USE_SHARED 1
4646
// Maxwell and Fermi cards get the best speed with SHARED access it seems.
4747
#if USE_SHARED

0 commit comments

Comments
 (0)