Skip to content
This repository was archived by the owner on Sep 22, 2025. It is now read-only.

Commit 3fbe216

Browse files
author
github-actions
committed
Update from github actions
0 parents  commit 3fbe216

File tree

1,444 files changed

+96610
-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.

1,444 files changed

+96610
-0
lines changed

.github/dependabot.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
# SPDX-FileCopyrightText: Intel Corporation
2+
#
3+
# SPDX-License-Identifier: BSD-3-Clause
4+
5+
# To get started with Dependabot version updates, you'll need to specify which
6+
# package ecosystems to update and where the package manifests are located.
7+
# Please see the documentation for all configuration options:
8+
# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
9+
10+
version: 2
11+
updates:
12+
- package-ecosystem: "pip"
13+
directory: "/"
14+
schedule:
15+
interval: "weekly"
16+
- package-ecosystem: "github-actions"
17+
directory: "/"
18+
schedule:
19+
interval: "weekly"

.github/workflows/ci.yml

Lines changed: 117 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,117 @@
1+
# SPDX-FileCopyrightText: Intel Corporation
2+
#
3+
# SPDX-License-Identifier: BSD-3-Clause
4+
5+
on:
6+
push:
7+
branches:
8+
- main
9+
pull_request:
10+
11+
env:
12+
SPHINXOPTS: -q -W
13+
14+
jobs:
15+
checks:
16+
runs-on: ubuntu-latest
17+
steps:
18+
- uses: actions/checkout@v3
19+
- uses: actions/setup-python@v4
20+
with:
21+
python-version: '3.10'
22+
- run: pip install -r requirements.txt
23+
- name: Checks
24+
run: |
25+
pre-commit run --all
26+
27+
clang:
28+
runs-on: ubuntu-latest
29+
env:
30+
CXX: clang++
31+
steps:
32+
- uses: actions/checkout@v3
33+
- name: Build & test
34+
run: |
35+
#source /opt/intel/oneapi/setvars.sh
36+
cmake -B build
37+
make -j -C build all test
38+
- uses: actions/upload-artifact@v3
39+
with:
40+
name: log-clang-${{ env.CXX }}
41+
path: build/Testing
42+
43+
gcc:
44+
runs-on: ubuntuy-latest
45+
strategy:
46+
fail-fast: false
47+
matrix:
48+
include:
49+
- cxx: g++-10
50+
- cxx: g++-11
51+
- cxx: g++-12
52+
name: ${{ matrix.cxx }}
53+
env:
54+
CXX: ${{ matrix.cxx }}
55+
steps:
56+
- uses: actions/checkout@v3
57+
- name: Build & test
58+
run: |
59+
#source /opt/intel/oneapi/setvars.sh
60+
cmake -B build
61+
make -j -C build all test
62+
cmake -B build-nofmt
63+
make -j -C build-nofmt/examples/cpu all test
64+
- uses: actions/upload-artifact@v3
65+
with:
66+
name: log-gcc-${{ env.CXX }}
67+
path: build/Testing
68+
69+
icpx:
70+
runs-on: ubuntu-latest
71+
env:
72+
CXX: icpx
73+
steps:
74+
- uses: actions/checkout@v3
75+
- name: Build & test
76+
run: |
77+
#source /opt/intel/oneapi/setvars.sh
78+
cmake -B build -DENABLE_SYCL_MPI=on
79+
make -j -C build all test
80+
- uses: actions/upload-artifact@v3
81+
with:
82+
name: log-icpx-${{ env.CXX }}
83+
path: build/Testing
84+
85+
publish:
86+
needs: [checks, clang, gcc, icpx]
87+
runs-on: dds-base
88+
if: ${{ github.ref == 'refs/heads/main' }}
89+
steps:
90+
- uses: actions/checkout@v3
91+
- uses: actions/setup-python@v4
92+
with:
93+
python-version: '3.10'
94+
- run: pip install -r requirements.txt
95+
- name: Build doc
96+
run: |
97+
make -C doc/spec html
98+
- name: Checkout gh-pages
99+
uses: actions/checkout@v3
100+
with:
101+
ref: gh-pages
102+
path: gh-pages
103+
- name: Publish to github pages
104+
run: |
105+
rm -rf gh-pages/*
106+
touch gh-pages/.nojekyll
107+
108+
cp -r doc/spec/build/html gh-pages/spec
109+
cp -r doc/spec/build/doxygen-html gh-pages/doxygen
110+
111+
cd gh-pages
112+
git config user.name github-actions
113+
git config user.email github-actions@github.com
114+
git add .
115+
# Ignore errors because no updates returns an error status.
116+
git commit --reset-author --amend -m "Update from github actions"
117+
git push --force origin gh-pages

.nojekyll

Whitespace-only changes.

.pre-commit-config.yaml

Lines changed: 60 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
1+
# SPDX-FileCopyrightText: Intel Corporation
2+
#
3+
# SPDX-License-Identifier: BSD-3-Clause
4+
5+
# See https://pre-commit.com for more information
6+
# See https://pre-commit.com/hooks.html for more hooks
7+
repos:
8+
9+
- repo: https://github.com/pre-commit/mirrors-clang-format
10+
rev: v15.0.4
11+
hooks:
12+
- id: clang-format
13+
14+
- repo: https://github.com/ambv/black
15+
rev: 22.10.0
16+
hooks:
17+
- id: black
18+
19+
- repo: https://github.com/pre-commit/pre-commit-hooks
20+
rev: v4.3.0
21+
hooks:
22+
- id: trailing-whitespace
23+
- id: end-of-file-fixer
24+
- id: mixed-line-ending
25+
- id: check-xml
26+
- id: check-yaml
27+
- id: check-case-conflict
28+
- id: check-toml
29+
- id: check-json
30+
- id: check-added-large-files
31+
args: ['--maxkb=800']
32+
33+
- repo: https://github.com/pycqa/flake8
34+
rev: 5.0.4
35+
hooks:
36+
- id: flake8
37+
38+
- repo: https://github.com/pycqa/doc8
39+
rev: v1.0.0
40+
hooks:
41+
- id: doc8
42+
43+
- repo: https://github.com/pycqa/isort
44+
rev: 5.10.1
45+
hooks:
46+
- id: isort
47+
48+
- repo: https://github.com/fsfe/reuse-tool
49+
rev: v1.0.0
50+
hooks:
51+
- id: reuse
52+
53+
- repo: local
54+
hooks:
55+
- id: sphinx
56+
name: sphinx
57+
entry: make -C doc/spec spelling linkcheck html
58+
language: system
59+
pass_filenames: false
60+
always_run: true
Lines changed: 134 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,134 @@
1+
{
2+
"context": {
3+
"date": "2023-12-01T02:48:36-08:00",
4+
"host_name": "idc-beta-batch-pvc-node-13",
5+
"executable": "mhp/mhp-bench",
6+
"num_cpus": 224,
7+
"mhz_per_cpu": 3800,
8+
"cpu_scaling_enabled": false,
9+
"caches": [
10+
{
11+
"type": "Data",
12+
"level": 1,
13+
"size": 49152,
14+
"num_sharing": 2
15+
},
16+
{
17+
"type": "Instruction",
18+
"level": 1,
19+
"size": 32768,
20+
"num_sharing": 2
21+
},
22+
{
23+
"type": "Unified",
24+
"level": 2,
25+
"size": 2097152,
26+
"num_sharing": 2
27+
},
28+
{
29+
"type": "Unified",
30+
"level": 3,
31+
"size": 110100480,
32+
"num_sharing": 112
33+
}
34+
],
35+
"load_avg": [2.06689,2.31787,24.0571],
36+
"library_build_type": "debug",
37+
"default_repetitions": "50",
38+
"default_vector_size": "6000000000",
39+
"device": "GPU",
40+
"device_info": "Intel(R) Data Center GPU Max 1100, max_compute_units: 448",
41+
"hostname": "idc-beta-batch-pvc-node-13\n",
42+
"lscpu": "Architecture: x86_64\nCPU op-mode(s): 32-bit, 64-bit\nAddress sizes: 52 bits physical, 57 bits virtual\nByte Order: Little Endian\nCPU(s): 224\nOn-line CPU(s) list: 0-223\nVendor ID: GenuineIntel\nModel name: Intel(R) Xeon(R) Platinum 8480+\nCPU family: 6\nModel: 143\nThread(s) per core: 2\nCore(s) per socket: 56\nSocket(s): 2\nStepping: 8\nCPU max MHz: 3800.0000\nCPU min MHz: 800.0000\nBogoMIPS: 4000.00\nFlags: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf tsc_known_freq pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cat_l2 cdp_l3 invpcid_single intel_ppin cdp_l2 ssbd mba ibrs ibpb stibp ibrs_enhanced tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid cqm rdt_a avx512f avx512dq rdseed adx smap avx512ifma clflushopt clwb intel_pt avx512cd sha_ni avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local split_lock_detect avx_vnni avx512_bf16 wbnoinvd dtherm ida arat pln pts hwp hwp_act_window hwp_epp hwp_pkg_req avx512vbmi umip pku ospke waitpkg avx512_vbmi2 gfni vaes vpclmulqdq avx512_vnni avx512_bitalg tme avx512_vpopcntdq la57 rdpid bus_lock_detect cldemote movdiri movdir64b enqcmd fsrm md_clear serialize tsxldtrk pconfig arch_lbr amx_bf16 avx512_fp16 amx_tile amx_int8 flush_l1d arch_capabilities\nVirtualization: VT-x\nL1d cache: 5.3 MiB (112 instances)\nL1i cache: 3.5 MiB (112 instances)\nL2 cache: 224 MiB (112 instances)\nL3 cache: 210 MiB (2 instances)\nNUMA node(s): 2\nNUMA node0 CPU(s): 0-55,112-167\nNUMA node1 CPU(s): 56-111,168-223\nVulnerability Gather data sampling: Not affected\nVulnerability Itlb multihit: Not affected\nVulnerability L1tf: Not affected\nVulnerability Mds: Not affected\nVulnerability Meltdown: Not affected\nVulnerability Mmio stale data: Not affected\nVulnerability Retbleed: Not affected\nVulnerability Spec rstack overflow: Not affected\nVulnerability Spec store bypass: Mitigation; Speculative Store Bypass disabled via prctl and seccomp\nVulnerability Spectre v1: Mitigation; usercopy/swapgs barriers and __user pointer sanitization\nVulnerability Spectre v2: Mitigation; Enhanced IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS SW sequence\nVulnerability Srbds: Not affected\nVulnerability Tsx async abort: Not affected\n",
43+
"model": "MHP",
44+
"numactl": "",
45+
"rank": "0",
46+
"ranks": "3",
47+
"runtime": "SYCL",
48+
"target": "MHP_SYCL_GPU",
49+
"weak-scaling": "1"
50+
},
51+
"benchmarks": [
52+
{
53+
"name": "Reduce_DR/min_time:0.100/min_warmup_time:0.100/real_time",
54+
"family_index": 0,
55+
"per_family_instance_index": 0,
56+
"run_name": "Reduce_DR/min_time:0.100/min_warmup_time:0.100/real_time",
57+
"run_type": "iteration",
58+
"repetitions": 1,
59+
"repetition_index": 0,
60+
"threads": 1,
61+
"iterations": 1,
62+
"real_time": 5.6165553901350177e+02,
63+
"cpu_time": 5.6165532700000040e+02,
64+
"time_unit": "ms",
65+
"bytes_per_second": 2.1365408451373840e+12,
66+
"footprint": 8.0000000000000000e+09
67+
},
68+
{
69+
"name": "DotProduct_DR/min_time:0.100/min_warmup_time:0.100/real_time",
70+
"family_index": 1,
71+
"per_family_instance_index": 0,
72+
"run_name": "DotProduct_DR/min_time:0.100/min_warmup_time:0.100/real_time",
73+
"run_type": "iteration",
74+
"repetitions": 1,
75+
"repetition_index": 0,
76+
"threads": 1,
77+
"iterations": 1,
78+
"real_time": 2.3608734270749260e+03,
79+
"cpu_time": 2.3596445299999968e+03,
80+
"time_unit": "ms",
81+
"bytes_per_second": 2.0331458454963010e+12,
82+
"footprint": 3.2000000000000000e+10
83+
},
84+
{
85+
"name": "Inclusive_Scan_DR/min_time:0.100/min_warmup_time:0.100/real_time",
86+
"family_index": 2,
87+
"per_family_instance_index": 0,
88+
"run_name": "Inclusive_Scan_DR/min_time:0.100/min_warmup_time:0.100/real_time",
89+
"run_type": "iteration",
90+
"repetitions": 1,
91+
"repetition_index": 0,
92+
"threads": 1,
93+
"iterations": 1,
94+
"real_time": 5.1467817188989820e+03,
95+
"cpu_time": 5.1372696359999918e+03,
96+
"time_unit": "ms",
97+
"bytes_per_second": 4.6631081928094995e+11,
98+
"footprint": 1.6000000000000000e+10
99+
},
100+
{
101+
"name": "WaveEquation_DR/min_time:0.100/min_warmup_time:0.100/real_time",
102+
"family_index": 3,
103+
"per_family_instance_index": 0,
104+
"run_name": "WaveEquation_DR/min_time:0.100/min_warmup_time:0.100/real_time",
105+
"run_type": "iteration",
106+
"repetitions": 1,
107+
"repetition_index": 0,
108+
"threads": 1,
109+
"iterations": 1,
110+
"real_time": 9.2316018368905516e+03,
111+
"cpu_time": 9.0834726950000113e+03,
112+
"time_unit": "ms",
113+
"bytes_per_second": 1.1814815513449133e+12,
114+
"flops": 2.1933444641304083e+09,
115+
"footprint": 3.5996591616000000e+10
116+
},
117+
{
118+
"name": "Stencil2D_DR/min_time:0.100/min_warmup_time:0.100/real_time",
119+
"family_index": 4,
120+
"per_family_instance_index": 0,
121+
"run_name": "Stencil2D_DR/min_time:0.100/min_warmup_time:0.100/real_time",
122+
"run_type": "iteration",
123+
"repetitions": 1,
124+
"repetition_index": 0,
125+
"threads": 1,
126+
"iterations": 1,
127+
"real_time": 5.1385008794861028e+02,
128+
"cpu_time": 5.1266339400000049e+02,
129+
"time_unit": "ms",
130+
"bytes_per_second": 1.8682491693881130e+12,
131+
"footprint": 3.2000000000000000e+10
132+
}
133+
]
134+
}

0 commit comments

Comments
 (0)