Skip to content

Commit 1145f52

Browse files
committed
Merge branch 'release-candidate-4.4.00' for 4.4.00
Part of Kokkos C++ Performance Portability Programming EcoSystem 4.4
2 parents d1a91b8 + 8e442f5 commit 1145f52

File tree

906 files changed

+57747
-90716
lines changed

Some content is hidden

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

906 files changed

+57747
-90716
lines changed

.clang-format

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,4 @@ SortIncludes: false
44
AlignConsecutiveAssignments: true
55
AllowShortCaseLabelsOnASingleLine: true
66
AllowShortIfStatementsOnASingleLine: true
7+
ColumnLimit: 120

.git-blame-ignore-revs

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
#
2+
# Add formatting and other uninteresting commits here and
3+
# 'git blame $file' will skip them IF
4+
# A) you have it configured to do so globally (dangerous, this will break git blame on repos that don't have a .git-blame-ignore-revs file.
5+
# git config --global blame.ignoreRevsFile .git-blame-ignore-revs
6+
# OR
7+
# B) you have it configured to do so locally (tedious, you have to remember to do this in every KK clone)
8+
# git config blame.ignoreRevsFile .git-blame-ignore-revs
9+
# OR
10+
# C) you have an aliased blame command for KokkosKernels:
11+
# git config --global alias.kkblame 'blame --ignore-revs-file=.git-blame-ignore-revs'
12+
# NOTE: this implies you run 'git kkblame $file'
13+
# OR
14+
# D) you explicitly tell blame to skip them
15+
# git blame --ignore-revs-file=.git-blame-ignore-revs $file
16+
#
17+
# List skips here:
18+
985c3a9e7343c2f612560024cae4d968f800c8ac
19+
0ffb820881335beb0e78463c19988a0c61044705

.github/SECURITY.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# Security Policy
2+
3+
## Supported Versions
4+
5+
Kokkos Kernels will issue vulnerability fixes in the develop branch of the project repository.
6+
Typically a patch release will be issued shortly after a vulnerability is detected and fixed.
7+
The project does not typically issue patch releases for older versions and if it happens, announcements will be made on our website and/or slack channel.
8+
9+
## Reporting a Vulnerability
10+
11+
To report a security issue, please email lberge@sandia.gov and srajama@sandia.gov with a description of the issue, the steps you took to create the issue, affected versions, and, if known, mitigations for the issue.
12+
Our vulnerability management team will respond within 5 working days of your email.
13+
If the issue is confirmed as a vulnerability, we will open a Security Advisory.
14+
This project follows a 90 day disclosure timeline.

.github/dependabot.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
version: 2
2+
updates:
3+
- package-ecosystem: github-actions
4+
directory: /
5+
schedule:
6+
interval: weekly
7+
8+
- package-ecosystem: pip
9+
directory: /docs
10+
schedule:
11+
interval: weekly

0 commit comments

Comments
 (0)