Skip to content

Commit 8b77fcc

Browse files
Add 'projects/rocr-runtime/' from commit '737ba1dcdfa980949e21eaaf03225c4e1e5c7a0b'
git-subtree-dir: projects/rocr-runtime git-subtree-mainline: 47fa6a5 git-subtree-split: 737ba1d
2 parents 47fa6a5 + 737ba1d commit 8b77fcc

File tree

645 files changed

+322400
-0
lines changed

Some content is hidden

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

645 files changed

+322400
-0
lines changed
Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
resources:
2+
repositories:
3+
- repository: pipelines_repo
4+
type: github
5+
endpoint: ROCm
6+
name: ROCm/ROCm
7+
8+
variables:
9+
- group: common
10+
- template: /.azuredevops/variables-global.yml@pipelines_repo
11+
12+
trigger:
13+
batch: true
14+
branches:
15+
include:
16+
- amd-staging
17+
- amd-mainline
18+
paths:
19+
exclude:
20+
- .github
21+
- LICENSE.txt
22+
- '*.md'
23+
24+
pr:
25+
autoCancel: true
26+
branches:
27+
include:
28+
- amd-staging
29+
- amd-mainline
30+
paths:
31+
exclude:
32+
- .github
33+
- LICENSE.txt
34+
- '*.md'
35+
drafts: false
36+
37+
jobs:
38+
- template: ${{ variables.CI_COMPONENT_PATH }}/ROCR-Runtime.yml@pipelines_repo
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# Default code owners
2+
@kentrussell @fxkamd @dayatsin-amd
3+
4+
*.md @ROCm/rocm-documentation @kentrussell @dayatsin-amd
5+
*.rst @ROCm/rocm-documentation @kentrussell @dayatsin-amd
6+
7+
# Header directory for Doxygen documentation
8+
inc/* @ROCm/rocm-documentation @kentrussell @fxkamd @dayatsin-amd
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
disabled: false
2+
scmId: gh-emu-rocm
3+
branchesToScan:
4+
- amd-staging
5+
- amd-mainline
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
name: Rocm Validation Suite KWS
2+
on:
3+
push:
4+
branches: [amd-staging, amd-mainline]
5+
pull_request:
6+
types: [opened, synchronize, reopened]
7+
workflow_dispatch:
8+
jobs:
9+
kws:
10+
if: ${{ github.event_name == 'pull_request' }}
11+
uses: AMD-ROCm-Internal/rocm_ci_infra/.github/workflows/kws.yml@mainline
12+
secrets: inherit
13+
with:
14+
pr_number: ${{github.event.pull_request.number}}
15+
base_branch: ${{github.base_ref}}
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: ROCm CI Caller
2+
on:
3+
pull_request:
4+
branches: [amd-staging, amd-npi, release/rocm-rel-*, amd-master]
5+
types: [opened, reopened, synchronize]
6+
push:
7+
branches: [amd-mainline]
8+
workflow_dispatch:
9+
issue_comment:
10+
types: [created]
11+
12+
jobs:
13+
call-workflow:
14+
if: github.event_name != 'issue_comment' ||(github.event_name == 'issue_comment' && github.event.issue.pull_request && (startsWith(github.event.comment.body, '!verify') || startsWith(github.event.comment.body, '!verify release') || startsWith(github.event.comment.body, '!verify retest')))
15+
uses: AMD-ROCm-Internal/rocm_ci_infra/.github/workflows/rocm_ci.yml@mainline
16+
secrets: inherit
17+
with:
18+
input_sha: ${{github.event_name == 'pull_request' && github.event.pull_request.head.sha || (github.event_name == 'push' && github.sha) || (github.event_name == 'issue_comment' && github.event.issue.pull_request.head.sha) || github.sha}}
19+
input_pr_num: ${{github.event_name == 'pull_request' && github.event.pull_request.number || (github.event_name == 'issue_comment' && github.event.issue.number) || 0}}
20+
input_pr_url: ${{github.event_name == 'pull_request' && github.event.pull_request.html_url || (github.event_name == 'issue_comment' && github.event.issue.pull_request.html_url) || ''}}
21+
input_pr_title: ${{github.event_name == 'pull_request' && github.event.pull_request.title || (github.event_name == 'issue_comment' && github.event.issue.pull_request.title) || ''}}
22+
repository_name: ${{ github.repository }}
23+
base_ref: ${{github.event_name == 'pull_request' && github.event.pull_request.base.ref || (github.event_name == 'issue_comment' && github.event.issue.pull_request.base.ref) || github.ref}}
24+
trigger_event_type: ${{ github.event_name }}
25+
comment_text: ${{ github.event_name == 'issue_comment' && github.event.comment.body || '' }}

projects/rocr-runtime/.gitignore

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
.*
2+
3+
#
4+
# git files that we don't want to ignore even it they are dot-files
5+
#
6+
!.gitignore
7+
!.mailmap
8+
.github*
9+
patches-*
10+
build/
11+
outgoing/
12+
Makefile
13+
14+
# documentation artifacts
15+
_build/
16+
_doxygen/
17+
_images/
18+
_static/
19+
_templates/
20+
_toc.yml
21+
doxygen
22+
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# Read the Docs configuration file
2+
# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details
3+
4+
version: 2
5+
6+
sphinx:
7+
configuration: runtime/docs/conf.py
8+
9+
formats: [htmlzip, pdf, epub]
10+
11+
python:
12+
install:
13+
- requirements: runtime/docs/sphinx/requirements.txt
14+
15+
build:
16+
os: ubuntu-22.04
17+
tools:
18+
python: "3.10"

0 commit comments

Comments
 (0)