Skip to content

Commit

Permalink
fix the dreaded FEMRI spelling mistake
Browse files Browse the repository at this point in the history
  • Loading branch information
cbuchner1 committed May 1, 2014
1 parent 0506a78 commit 61cbdc6
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 24 deletions.
1 change: 1 addition & 0 deletions README.txt
Expand Up @@ -119,6 +119,7 @@ from your old clunkers.
May 1st 2014 adapt the Jackpot algorithms to changes made by the
coin developers. We keep our unique nVidia advantage
because we have a way to break up the divergence.
NOTE: Jackpot Hash now requires Compute 3.0 or later.

April, 27 2014 this release adds Myriad-Groestl and Jackpot Coin.
we apply an optimization to Jackpot that turns this
Expand Down
5 changes: 0 additions & 5 deletions ccminer.vcxproj
Expand Up @@ -287,11 +287,6 @@ copy "$(CudaToolkitBinDir)\cudart*.dll" "$(OutDir)"</Command>
<ClInclude Include="sph\sph_simd.h" />
<ClInclude Include="sph\sph_skein.h" />
<ClInclude Include="sph\sph_types.h" />
<ClInclude Include="sph_blake.h" />
<ClInclude Include="sph_fugue.h" />
<ClInclude Include="sph_groestl.h" />
<ClInclude Include="sph_keccak.h" />
<ClInclude Include="sph_types.h" />
<ClInclude Include="uint256.h" />
</ItemGroup>
<ItemGroup>
Expand Down
15 changes: 0 additions & 15 deletions ccminer.vcxproj.filters
Expand Up @@ -164,18 +164,6 @@
<ClInclude Include="cpuminer-config.h">
<Filter>Header Files</Filter>
</ClInclude>
<ClInclude Include="sph_blake.h">
<Filter>Header Files</Filter>
</ClInclude>
<ClInclude Include="sph_types.h">
<Filter>Header Files</Filter>
</ClInclude>
<ClInclude Include="sph_groestl.h">
<Filter>Header Files</Filter>
</ClInclude>
<ClInclude Include="sph_keccak.h">
<Filter>Header Files</Filter>
</ClInclude>
<ClInclude Include="hefty1.h">
<Filter>Header Files</Filter>
</ClInclude>
Expand All @@ -197,9 +185,6 @@
<ClInclude Include="cuda_groestl512.h">
<Filter>Header Files\CUDA</Filter>
</ClInclude>
<ClInclude Include="sph_fugue.h">
<Filter>Header Files</Filter>
</ClInclude>
<ClInclude Include="uint256.h">
<Filter>Header Files</Filter>
</ClInclude>
Expand Down
4 changes: 2 additions & 2 deletions cuda_myriadgroestl.cu
Expand Up @@ -8,7 +8,7 @@
#include <memory.h>

// it's unfortunate that this is a compile time constant.
#define MAXWELL_OR_FERMI 0
#define MAXWELL_OR_FERMI 1

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

#if MAXWELL_OR_FEMRI
#if MAXWELL_OR_FERMI
#define USE_SHARED 1
// Maxwell and Fermi cards get the best speed with SHARED access it seems.
#if USE_SHARED
Expand Down
4 changes: 2 additions & 2 deletions quark/cuda_quark_groestl512.cu
Expand Up @@ -8,7 +8,7 @@
#include <memory.h>

// it's unfortunate that this is a compile time constant.
#define MAXWELL_OR_FERMI 0
#define MAXWELL_OR_FERMI 1

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

#if MAXWELL_OR_FEMRI
#if MAXWELL_OR_FERMI
#define USE_SHARED 1
// Maxwell and Fermi cards get the best speed with SHARED access it seems.
#if USE_SHARED
Expand Down

0 comments on commit 61cbdc6

Please sign in to comment.