Skip to content

Commit 12eca41

Browse files
authored
v3.7 (#258)
1 parent 5531981 commit 12eca41

File tree

1,099 files changed

+58488
-472832
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,099 files changed

+58488
-472832
lines changed

.ci-ignore

Lines changed: 0 additions & 9 deletions
This file was deleted.

.clang-format

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ AlignTrailingComments:
3535
AllowAllArgumentsOnNextLine: true
3636
AllowAllParametersOfDeclarationOnNextLine: true
3737
AllowShortBlocksOnASingleLine: Always
38-
AllowShortCaseLabelsOnASingleLine: true
38+
AllowShortCaseLabelsOnASingleLine: false
3939
AllowShortEnumsOnASingleLine: true
4040
AllowShortFunctionsOnASingleLine: All
4141
AllowShortIfStatementsOnASingleLine: AllIfsAndElse
@@ -47,7 +47,7 @@ AlwaysBreakBeforeMultilineStrings: false
4747
AlwaysBreakTemplateDeclarations: No
4848
AttributeMacros:
4949
- __capability
50-
BinPackArguments: false
50+
BinPackArguments: true
5151
BinPackParameters: false
5252
BitFieldColonSpacing: Both
5353
BraceWrapping:
@@ -117,7 +117,7 @@ IndentRequiresClause: true
117117
IndentWidth: 4
118118
IndentWrappedFunctionNames: false
119119
InsertBraces: false
120-
InsertNewlineAtEOF: false
120+
InsertNewlineAtEOF: true
121121
InsertTrailingCommas: None
122122
IntegerLiteralSeparator:
123123
Binary: 0
@@ -159,7 +159,7 @@ ReferenceAlignment: Pointer
159159
ReflowComments: true
160160
RemoveBracesLLVM: false
161161
RemoveSemicolon: false
162-
RequiresClausePosition: OwnLine
162+
RequiresClausePosition: SingleLine
163163
RequiresExpressionIndentation: OuterScope
164164
SeparateDefinitionBlocks: Leave
165165
ShortNamespaceLines: 1

.codacy.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
---
22
exclude_paths:
3-
- '*.yml'
43
- '*.yml'
54
- '*.md'
65
- '**/*.css'

.gitattributes

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,12 @@
1616
*.rtf diff=astextplain
1717
*.RTF diff=astextplain
1818

19-
Include/* linguist-vendored
20-
Toolbox/amd-src/* linguist-vendored
21-
Toolbox/arpack-src/* linguist-vendored
22-
Toolbox/feast-src/* linguist-vendored
23-
Toolbox/metis-src/* linguist-vendored
24-
Toolbox/mumps-src/* linguist-vendored
25-
Toolbox/superlu-src/* linguist-vendored
26-
Toolbox/superlumt-src/* linguist-vendored
19+
Include/** linguist-vendored
20+
Toolbox/amd-src/** linguist-vendored
21+
Toolbox/arpack-src/** linguist-vendored
22+
Toolbox/feast-src/** linguist-vendored
23+
Toolbox/lis-src/** linguist-vendored
24+
Toolbox/metis-src/** linguist-vendored
25+
Toolbox/mumps-src/** linguist-vendored
26+
Toolbox/superlu-src/** linguist-vendored
27+
Toolbox/superlumt-src/** linguist-vendored
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: Application Execution
2+
description: Create a report to help us improve
3+
title: "[Portability]"
4+
labels: ["portability"]
5+
body:
6+
- type: markdown
7+
attributes:
8+
value: |
9+
***The application officially distributed requires AVX2 support. Please make sure your CPU supports AVX2.***
10+
11+
***If possible, please try to compile the application locally first to see if it executes.***
12+
- type: dropdown
13+
attributes:
14+
label: Platform
15+
multiple: false
16+
options:
17+
- linux
18+
- windows
19+
- macos
20+
- type: textarea
21+
attributes:
22+
label: Issue
23+
placeholder: |
24+
Please provide a screenshot, etc., that shows the failed execution of the application.
25+
validations:
26+
required: true

.github/ISSUE_TEMPLATE/BUG_REPORT.yml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: Bug Report
2+
description: Create a report to help us improve
3+
title: "[BUG]"
4+
labels: ["bug"]
5+
body:
6+
- type: input
7+
attributes:
8+
label: Version
9+
description: Indicate version tags or 'dev' if using the head of 'dev' branch.
10+
validations:
11+
required: true
12+
- type: textarea
13+
attributes:
14+
label: Describe the bug
15+
placeholder: |
16+
A clear and concise description of what the bug is.
17+
You can also upload a MWE to reproduce the behaviour.
18+
validations:
19+
required: true
20+
- type: textarea
21+
attributes:
22+
label: Additional context
23+
placeholder: |
24+
Add any other context about the problem here.
25+
If there are any references, please also provide them.
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: Feature Request
2+
description: Suggest an idea for this project
3+
title: "[FEATURE]"
4+
labels: ["feature"]
5+
body:
6+
- type: textarea
7+
attributes:
8+
label: Feature
9+
placeholder: |
10+
Please provide a concise description of the requested feature and how it would be applied to practical problems.
11+
validations:
12+
required: true
13+
- type: textarea
14+
attributes:
15+
label: References
16+
placeholder: |
17+
Please provide any relevant references (papers, thesis, etc.).
18+
Please provide DOIs and links only to avoid copyright issues.

.github/ISSUE_TEMPLATE/application_execution.md

Lines changed: 0 additions & 18 deletions
This file was deleted.

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 0 additions & 20 deletions
This file was deleted.

.github/ISSUE_TEMPLATE/feature_request.md

Lines changed: 0 additions & 14 deletions
This file was deleted.

0 commit comments

Comments
 (0)