Skip to content

Commit 8f54df5

Browse files
fancyIXfancyIX
fancyIX
authored and
fancyIX
committed
Issue #28
support 40xx cards
1 parent 5340f8d commit 8f54df5

File tree

4 files changed

+10
-6
lines changed

4 files changed

+10
-6
lines changed

allium.cu

+4
Original file line numberDiff line numberDiff line change
@@ -116,6 +116,10 @@ extern "C" int scanhash_allium(int thr_id, struct work* work, uint32_t max_nonce
116116
strstr(props.name, "3080") ||
117117
strstr(props.name, "3070") ||
118118
strstr(props.name, "3060") ||
119+
strstr(props.name, "4090") ||
120+
strstr(props.name, "4080") ||
121+
strstr(props.name, "4070") ||
122+
strstr(props.name, "4060") ||
119123
strstr(props.name, "A4000") ||
120124
strstr(props.name, "A5000") ||
121125
strstr(props.name, "A6000")) high_end = 2;

compat/ccminer-config.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@
164164
#define PACKAGE_URL "http://github.com/tpruvot/ccminer"
165165

166166
/* Define to the version of this package. */
167-
#define PACKAGE_VERSION "0.5.0"
167+
#define PACKAGE_VERSION "0.5.1"
168168

169169
/* If using the C implementation of alloca, define if you know the
170170
direction of stack growth for your system; otherwise it will be

configure.ac

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
AC_INIT([ccminer-fancyIX], [0.5.0], [], [ccminer-fancyIX], [https://github.com/fancyIX/ccminer])
1+
AC_INIT([ccminer-fancyIX], [0.5.1], [], [ccminer-fancyIX], [https://github.com/fancyIX/ccminer])
22

33
AC_PREREQ([2.59c])
44
AC_CANONICAL_SYSTEM

res/ccminer.rc

+4-4
Original file line numberDiff line numberDiff line change
@@ -60,8 +60,8 @@ IDI_ICON1 ICON "ccminer.ico"
6060
//
6161

6262
VS_VERSION_INFO VERSIONINFO
63-
FILEVERSION 0,5,0,0
64-
PRODUCTVERSION 0,5,0,0
63+
FILEVERSION 0,5,1,0
64+
PRODUCTVERSION 0,5,1,0
6565
FILEFLAGSMASK 0x3fL
6666
#ifdef _DEBUG
6767
FILEFLAGS 0x21L
@@ -76,10 +76,10 @@ BEGIN
7676
BEGIN
7777
BLOCK "040904e4"
7878
BEGIN
79-
VALUE "FileVersion", "0.5.0"
79+
VALUE "FileVersion", "0.5.1"
8080
VALUE "LegalCopyright", "Copyright (C) 2022"
8181
VALUE "ProductName", "ccminer-fancyIX"
82-
VALUE "ProductVersion", "0.5.0"
82+
VALUE "ProductVersion", "0.5.1"
8383
END
8484
END
8585
BLOCK "VarFileInfo"

0 commit comments

Comments
 (0)