mirror of
https://github.com/ROCm/ROCm.git
synced 2026-04-05 03:01:17 -04:00
With MIOpen now building with latest source on External CI, this unblocked AMDMIGraphX from building with latest source. Determined rocMLIR also needed to be built with latest source as a dependency.
98 lines
2.9 KiB
YAML
98 lines
2.9 KiB
YAML
parameters:
|
|
- name: checkoutRepo
|
|
type: string
|
|
default: 'self'
|
|
- name: checkoutRef
|
|
type: string
|
|
default: ''
|
|
- name: aptPackages
|
|
type: object
|
|
default:
|
|
- git
|
|
- cmake
|
|
- ninja-build
|
|
- libnuma-dev
|
|
- python3-pip
|
|
- python3-venv
|
|
- libtbb-dev
|
|
- nlohmann-json3-dev
|
|
- libmsgpack-dev
|
|
- libsqlite3-dev
|
|
- libprotobuf-dev
|
|
- protobuf-compiler
|
|
- python3-pybind11
|
|
- name: pipModules
|
|
type: object
|
|
default:
|
|
- https://github.com/RadeonOpenCompute/rbuild/archive/master.tar.gz
|
|
- onnx==1.14.1
|
|
- numpy==1.21.6
|
|
- typing==3.7.4
|
|
- pytest==6.0.1
|
|
- packaging==23.0
|
|
- protobuf==3.20.2
|
|
- name: rocmDependencies
|
|
type: object
|
|
default:
|
|
- rocm-cmake
|
|
- llvm-project
|
|
- ROCR-Runtime
|
|
- clr
|
|
- rocminfo
|
|
- rocMLIR
|
|
- MIOpen
|
|
- aomp
|
|
- aomp-extras
|
|
- rocBLAS
|
|
- composable_kernel
|
|
|
|
jobs:
|
|
- job: AMDMIGraphX
|
|
variables:
|
|
- group: common
|
|
- template: /.azuredevops/variables-global.yml
|
|
pool: ${{ variables.MEDIUM_BUILD_POOL }}
|
|
workspace:
|
|
clean: all
|
|
steps:
|
|
- template: ${{ variables.CI_TEMPLATE_PATH }}/steps/dependencies-other.yml
|
|
parameters:
|
|
aptPackages: ${{ parameters.aptPackages }}
|
|
pipModules: ${{ parameters.pipModules }}
|
|
- template: ${{ variables.CI_TEMPLATE_PATH }}/steps/preamble.yml
|
|
- template: ${{ variables.CI_TEMPLATE_PATH }}/steps/checkout.yml
|
|
parameters:
|
|
checkoutRepo: ${{ parameters.checkoutRepo }}
|
|
# half version should be fixed to 5.6.0
|
|
- template: ${{ variables.CI_TEMPLATE_PATH }}/steps/dependencies-rocm.yml
|
|
parameters:
|
|
dependencySource: fixed
|
|
fixedComponentName: half
|
|
fixedPipelineIdentifier: $(half560-pipeline-id)
|
|
# CI case: download latest default branch build
|
|
- ${{ if eq(parameters.checkoutRef, '') }}:
|
|
- template: ${{ variables.CI_TEMPLATE_PATH }}/steps/dependencies-rocm.yml
|
|
parameters:
|
|
dependencyList: ${{ parameters.rocmDependencies }}
|
|
dependencySource: staging
|
|
# manual build case: triggered by ROCm/ROCm repo
|
|
- ${{ if ne(parameters.checkoutRef, '') }}:
|
|
- template: ${{ variables.CI_TEMPLATE_PATH }}/steps/dependencies-rocm.yml
|
|
parameters:
|
|
dependencyList: ${{ parameters.rocmDependencies }}
|
|
dependencySource: tag-builds
|
|
- template: ${{ variables.CI_TEMPLATE_PATH }}/steps/build-cmake.yml
|
|
parameters:
|
|
extraBuildFlags: >-
|
|
-DCMAKE_CXX_COMPILER=$(Agent.BuildDirectory)/rocm/llvm/bin/clang++
|
|
-DCMAKE_C_COMPILER=$(Agent.BuildDirectory)/rocm/llvm/bin/clang
|
|
-DCMAKE_BUILD_TYPE=Release
|
|
-DAMDGPU_TARGETS=gfx1030;gfx1100
|
|
-DCMAKE_PREFIX_PATH=$(Agent.BuildDirectory)/rocm/llvm;$(Agent.BuildDirectory)/rocm
|
|
-DHALF_INCLUDE_DIR=$(Agent.BuildDirectory)/rocm/include
|
|
-DMIGRAPHX_USE_COMPOSABLEKERNEL=OFF
|
|
-DBUILD_TESTING=ON
|
|
-GNinja
|
|
# REFERENCE: https://github.com/ROCm/composable_kernel/issues/782
|
|
- template: ${{ variables.CI_TEMPLATE_PATH }}/steps/artifact-upload.yml
|