Skip to content

Commit

Permalink
Upgrade to 2.10.4-hide-3.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
rapid821 committed May 15, 2019
1 parent ef276cf commit 4b09340
Show file tree
Hide file tree
Showing 114 changed files with 7,259 additions and 6,573 deletions.
14 changes: 14 additions & 0 deletions .clang-format
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
IndentWidth: 4
TabWidth: 4
ColumnLimit: 0
BreakBeforeBraces: Allman
AllowShortIfStatementsOnASingleLine: false
IndentCaseLabels: false
SpaceBeforeParens: Never
UseTab: Always
AlignAfterOpenBracket: DontAlign
PointerBindsToType: true
BreakConstructorInitializers: AfterColon
ConstructorInitializerAllOnOneLineOrOnePerLine: true
ConstructorInitializerIndentWidth: 4
ContinuationIndentWidth: 4
30 changes: 0 additions & 30 deletions .github/ISSUE_TEMPLATE.md

This file was deleted.

35 changes: 35 additions & 0 deletions .github/ISSUE_TEMPLATE/compile_bug_report.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
---
name: Compile bug report
about: You have an issue to compile xmr-stak.

---

`...` are the placeholder for your answers. Please answer each question!


**Describe the bug**
A clear and concise description of what the bug is.

**Which operating system do you use? **

```
...
```

**To Reproduce**
```
# Please post all commands and the output.
...
```

**Additional information.**

```
# run `cmake -LA .` in the build folder and add the output here
...
```

**Feel free to add more information.**
```
...
```
7 changes: 7 additions & 0 deletions .github/ISSUE_TEMPLATE/execution_bug_report.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
---
name: Execution bug report
about: You have an issue to execute xmr-stak.

---

**Most execution issues are caused by driver problems. Please use the [xmr-stak sub-reddit](https://www.reddit.com/r/XmrStak/) to ask for help instead of opening an issue here.**
7 changes: 7 additions & 0 deletions .github/ISSUE_TEMPLATE/feature_request.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
---
name: Feature request
about: Suggest an idea for xmr-stak.

---

**Please explain the feature as good as possible.**
7 changes: 7 additions & 0 deletions .github/ISSUE_TEMPLATE/tuning_help.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
---
name: Need help for optimization.
about: You need help to optimize your setup.

---

**Please use the [xmr-stak sub-reddit](https://www.reddit.com/r/XmrStak/) to discuss optimizations.**
10 changes: 6 additions & 4 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -84,10 +84,11 @@ if(CUDA_ENABLE)
/usr
/usr/local/cuda
PATH_SUFFIXES
lib64
lib64
lib/x64
lib/Win32
lib64/stubs)
lib64/stubs
lib)

#nvrtc
find_library(CUDA_NVRTC_LIB
Expand All @@ -104,7 +105,8 @@ if(CUDA_ENABLE)
PATH_SUFFIXES
lib64
lib/x64
lib/Win32)
lib/Win32
lib)

list(APPEND BACKEND_TYPES "nvidia")
option(XMR-STAK_LARGEGRID "Support large CUDA block count > 128" ON)
Expand Down Expand Up @@ -322,7 +324,7 @@ endif()
################################################################################

if ("${CMAKE_CXX_COMPILER_ID}" MATCHES "Clang")
set_source_files_properties(xmrstak/backend/cpu/crypto/cn_gpu_avx.cpp PROPERTIES COMPILE_FLAGS "-mavx2")
set_source_files_properties(xmrstak/backend/cpu/crypto/cn_gpu_avx.cpp PROPERTIES COMPILE_FLAGS "-mavx2")
endif()

################################################################################
Expand Down
Loading

0 comments on commit 4b09340

Please sign in to comment.