-
Notifications
You must be signed in to change notification settings - Fork 125
141 lines (129 loc) · 6.03 KB
/
Copy pathamd3.6-build-and-test.yml
File metadata and controls
141 lines (129 loc) · 6.03 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
# Copyright 2025- FlagOS Contributors
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in all
# copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.
name: Amd3.6-Build-And-Test
on:
push:
branches: [ "main", "triton_v3.6.x" ]
pull_request:
branches: [ "main", "triton_v3.6.x" ]
types: [opened, synchronize, reopened, ready_for_review]
permissions:
contents: read
pull-requests: read
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
amd36x-unit-test:
runs-on: amd3.6
if: ${{ github.repository == 'flagos-ai/flagtree' && github.event.pull_request.draft == false }}
steps:
- name: Setup environment
shell: bash
run: |
source ~/env.sh
env | grep -E '^(http_proxy|https_proxy|all_proxy|no_proxy)=' >> $GITHUB_ENV || true
- name: Smart Checkout
uses: flagos-ai/FlagTree/.github/actions/smart-checkout@main
with:
checkout_version: 'v6'
- name: Check if backend-relevant files changed
id: check_backend
uses: flagos-ai/FlagTree/.github/actions/check-backend-changed@main
with:
backend: amd
- name: Cleanup FlagTree Environment
if: ${{ steps.check_backend.outputs.should_skip != 'true' }}
uses: flagos-ai/FlagTree/.github/actions/cleanup-flagtree-env@main
- name: Detect Target Branch
shell: bash
run: |
set -x
if [ "${{ github.event_name }}" = "pull_request" ]; then
TARGET_BRANCH="${{ github.base_ref }}"
else
TARGET_BRANCH="${{ github.ref_name }}"
fi
echo "TARGET_BRANCH=$TARGET_BRANCH" >> $GITHUB_ENV
echo "TARGET_BRANCH=$TARGET_BRANCH"
- name: Build FlagTree
if: ${{ steps.check_backend.outputs.should_skip != 'true' }}
shell: bash
run: |
set -x
source ~/env-3.6.sh
MAX_JOBS=32 python3 -m pip install . --no-build-isolation -v
- name: Clear cache if ClearCache label present
if: steps.check_backend.outputs.should_skip != 'true'
id: clear_cache
uses: flagos-ai/FlagTree/.github/actions/clear-cache-if-labeled@main
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
backend: amd
- name: Unit Test
if: ${{ steps.check_backend.outputs.should_skip != 'true' }}
shell: bash
run: |
set -x
source ~/env.sh
## python tutorials
python3 python/tutorials/01-vector-add.py --only_unit_test
python3 python/tutorials/02-fused-softmax.py --only_unit_test
python3 python/tutorials/03-matrix-multiplication.py --only_unit_test
python3 python/tutorials/04-low-memory-dropout.py --only_unit_test
python3 python/tutorials/05-layer-norm.py --only_unit_test
# python3 python/tutorials/06-fused-attention.py --only_unit_test
python3 python/tutorials/07-extern-functions.py --only_unit_test
python3 python/tutorials/08-grouped-gemm.py --only_unit_test
# python3 python/tutorials/09-persistent-matmul.py --only_unit_test
# python3 python/tutorials/11-programmatic-dependent-launch.py --only_unit_test
# python3 python/tutorials/12-fused_inv_rope_fp8_quant_reorder.py --only_unit_test
## python unit test
python3 -m pytest -s python/test/unit/cuda
python3 -m pytest -s python/test/unit/instrumentation
python3 -m pytest -s python/test/unit/language \
-k "not test_typeconvert_upcast and \
not test_typeconvert_downcast" \
--ignore=python/test/unit/language/test_core.py \
--ignore=python/test/unit/language/test_line_info.py
python3 -m pytest -s --first-parameter-only \
python/test/unit/language/test_core.py \
-k "not test_sum_dtype and \
not test_dot_multidim"
python3 -m pytest -s python/test/unit/runtime
if [ -d "python/test/operators" ]; then
python3 -m pytest -s python/test/operators
fi
## flagtree tle python tutorials
python3 python/tutorials/tle/01-fft.py
# python3 python/tutorials/tle/02-moe_align_block_size.py
python3 python/tutorials/tle/03-topk.py
# python3 python/tutorials/tle/04-cluster-gemm.py
# python3 python/tutorials/tle/deepseek_v32/01-topk_selector.py
# python3 python/tutorials/tle/deepseek_v32/02-sparse-mla.py
## flagtree tle python unit test
python3 -m pytest -s python/test/tle/integration \
--ignore=python/test/tle/integration/test_tle_distributed.py \
--ignore=python/test/tle/integration/test_tle_tma_copy.py
python3 -m pytest -s python/test/tle/unit \
--ignore=python/test/tle/unit/test_tle_distributed_d2d.py \
--ignore=python/test/tle/unit/test_tle_get_local_pe.py \
--ignore=python/test/tle/unit/test_tle_d2d_barrier.py \
--ignore=python/test/tle/unit/test_tle_get_node_rank.py