Adding all pipeline variables from Azure (#3473)

* Added all variables found in the library page on Azure

* removed extra space

* copied the example of referencing variables from variables-global.yml and add HALF560_PIPELINE_ID to the file

* introduced variables-global.yml to this file and pointed the path to variables.CCACHE_DIR

* introduced variables-global.yml and changed all variables in stagingPipelineIdentifiers and taggedPipelineIdentifiers to match the identifier names in variables-global.yml

* adjusted how the variables are introduced into the file

* tried adding ./ to variables-global.yml path

* copied the formatting from develop branch but changed identifiers to match them in variables-global.yml

* changed build pool to high to test if variable works

* recopied variables from library page to account for any changes

* changed build pool back to medium

* removed extra whitespace

* remove whitespace

* added all the variables from the page on azure

* fix merge

fix merge

---------

Co-authored-by: Daniel Su <danielsu@amd.com>
This commit is contained in:
abhimeda
2024-08-26 13:49:39 -04:00
committed by GitHub
parent 53c56dfcda
commit 42abff3d10
4 changed files with 383 additions and 106 deletions

View File

@@ -79,7 +79,7 @@ jobs:
parameters: parameters:
dependencySource: fixed dependencySource: fixed
fixedComponentName: half fixedComponentName: half
fixedPipelineIdentifier: $(half560-pipeline-id) fixedPipelineIdentifier: ${{ variables.HALF560_PIPELINE_ID }}
skipLibraryLinking: true skipLibraryLinking: true
skipLlvmSymlink: true skipLlvmSymlink: true
- template: ${{ variables.CI_TEMPLATE_PATH }}/steps/dependencies-rocm.yml - template: ${{ variables.CI_TEMPLATE_PATH }}/steps/dependencies-rocm.yml

View File

@@ -1,11 +1,14 @@
# to use ccache, run this template step before build-cmake.yml # to use ccache, run this template step before build-cmake.yml
# and add this cmake flag to extraBuildFlags # and add this cmake flag to extraBuildFlags
# -DCMAKE_CXX_COMPILER_LAUNCHER=ccache # -DCMAKE_CXX_COMPILER_LAUNCHER=ccache
variables:
- group: common
- template: /.azuredevops/variables-global.yml
steps: steps:
- task: Cache@2 - task: Cache@2
displayName: Ccache caching displayName: Ccache caching
inputs: inputs:
key: 'ccache | "$(Agent.OS)" | $(Build.SourceVersion)' key: 'ccache | "$(Agent.OS)" | $(Build.SourceVersion)'
path: $(CCACHE_DIR) path: ${{ variables.CCACHE_DIR }}
restoreKeys: | restoreKeys: |
ccache | "$(Agent.OS)" ccache | "$(Agent.OS)"

View File

@@ -29,113 +29,115 @@ parameters:
- name: stagingPipelineIdentifiers - name: stagingPipelineIdentifiers
type: object type: object
default: default:
AMDMIGraphX: $(amdmigraphx-pipeline-id) AMDMIGraphX: $(AMDMIGRAPHX_PIPELINE_ID)
amdsmi: $(amdsmi-pipeline-id) amdsmi: $(AMDSMI_PIPELINE_ID)
aomp-extras: $(aomp-extras-pipeline-id) aomp-extras: $(AOMP_EXTRAS_PIPELINE_ID)
aomp: $(aomp-pipeline-id) aomp: $(AOMP_PIPELINE_ID)
clr: $(clr-pipeline-id) clr: $(CLR_PIPELINE_ID)
composable_kernel: $(composable-kernel-pipeline-id) composable_kernel: $(COMPOSABLE_KERNEL_PIPELINE_ID)
half: $(half-pipeline-id) half: $(HALF_PIPELINE_ID)
HIP: $(hip-pipeline-id) HIP: $(HIP_PIPELINE_ID)
hipBLAS: $(hipblas-pipeline-id) hipBLAS: $(HIPBLAS_PIPELINE_ID)
hipBLASLt: $(hipblaslt-pipeline-id) hipBLAS-common: $(HIPBLAS_COMMON_PIPELINE_ID)
hipBLAS-common: $(hipblas-common-pipeline-id) hipBLASLt: $(HIPBLASLT_PIPELINE_ID)
hipCUB: $(hipcub-pipeline-id) hipCUB: $(HIPCUB_PIPELINE_ID)
hipFFT: $(hipfft-pipeline-id) hipFFT: $(HIPFFT_PIPELINE_ID)
hipfort: $(hipfort-pipeline-id) hipfort: $(HIPFORT_PIPELINE_ID)
HIPIFY: $(hipify-pipeline-id) HIPIFY: $(HIPIFY_PIPELINE_ID)
hipRAND: $(hiprand-pipeline-id) hipRAND: $(HIPRAND_PIPELINE_ID)
hipSOLVER: $(hipsolver-pipeline-id) hipSOLVER: $(HIPSOLVER_PIPELINE_ID)
hipSPARSE: $(hipsparse-pipeline-id) hipSPARSE: $(HIPSPARSE_PIPELINE_ID)
hipSPARSELt: $(hipsparselt-pipeline-id) hipSPARSELt: $(HIPSPARSELT_PIPELINE_ID)
hipTensor: $(hiptensor-pipeline-id) hipTensor: $(HIPTENSOR_PIPELINE_ID)
llvm-project: $(llvm-project-pipeline-id) llvm-project: $(LLVM_PROJECT_PIPELINE_ID)
MIOpen: $(miopen-pipeline-id) MIOpen: $(MIOpen_PIPELINE_ID)
MIVisionX: $(mivisionx-pipeline-id) MIVisionX: $(MIVISIONX_PIPELINE_ID)
rccl: $(rccl-pipeline-id) rccl: $(RCCL_PIPELINE_ID)
rdc: $(rdc-pipeline-id) rdc: $(RDC_PIPELINE_ID)
rocAL: $(rocal-pipeline-id) rocAL: $(ROCAL_PIPELINE_ID)
rocALUTION: $(rocalution-pipeline-id) rocALUTION: $(ROCALUTION_PIPELINE_ID)
rocBLAS: $(rocblas-pipeline-id) rocBLAS: $(ROCBLAS_PIPELINE_ID)
ROCdbgapi : $(rocdbgapi-pipeline-id) ROCdbgapi: $(ROCDBGAPI_PIPELINE_ID)
rocDecode: $(rocdecode-pipeline-id) rocDecode: $(ROCDECODE_PIPELINE_ID)
rocFFT: $(rocfft-pipeline-id) rocFFT: $(ROCFFT_PIPELINE_ID)
ROCgdb: $(rocgdb-pipeline-id) ROCgdb: $(ROCGDB_PIPELINE_ID)
rocm-cmake: $(rocm-cmake-pipeline-id) rocm-cmake: $(ROCM_CMAKE_PIPELINE_ID)
rocm-core: $(rocm-core-pipeline-id) rocm-core: $(ROCM_CORE_PIPELINE_ID)
rocm-examples: $(rocm-examples-pipeline-id) rocm-examples: $(ROCM_EXAMPLES_PIPELINE_ID)
rocminfo: $(rocminfo-pipeline-id) rocminfo: $(ROCMINFO_PIPELINE_ID)
rocMLIR: $(rocmlir-pipeline-id) rocMLIR: $(ROCMLIR_PIPELINE_ID)
ROCmValidationSuite: $(rocmvalidationsuite-pipeline-id) ROCmValidationSuite: $(ROCMVALIDATIONSUITE_PIPELINE_ID)
rocm_bandwidth_test: $(rocm-bandwidth-test-pipeline-id) rocm_bandwidth_test: $(ROCM_BANDWIDTH_TEST_PIPELINE_ID)
rocm_smi_lib: $(rocm-smi-lib-pipeline-id) rocm_smi_lib: $(ROCM_SMI_LIB_PIPELINE_ID)
rocPRIM: $(rocprim-pipeline-id) rocPRIM: $(ROCPRIM_PIPELINE_ID)
rocprofiler-register: $(rocprofiler-register-pipeline-id) rocprofiler-register: $(ROCPROFILER_REGISTER_PIPELINE_ID)
rocprofiler: $(rocprofiler-pipeline-id) rocprofiler: $(ROCPROFILER_PIPELINE_ID)
ROCR-Runtime: $(rocr-runtime-pipeline-id) ROCR-Runtime: $(ROCR_RUNTIME_PIPELINE_ID)
rocRAND: $(rocrand-pipeline-id) rocRAND: $(ROCRAND_PIPELINE_ID)
rocr_debug_agent: $(rocr-debug-agent-pipeline-id) rocr_debug_agent: $(ROCR_DEBUG_AGENT_PIPELINE_ID)
rocSOLVER: $(rocsolver-pipeline-id) rocSOLVER: $(ROCSOLVER_PIPELINE_ID)
rocSPARSE: $(rocsparse-pipeline-id) rocSPARSE: $(ROCSPARSE_PIPELINE_ID)
rocThrust: $(rocthrust-pipeline-id) ROCT-Thunk-Interface: $(ROCT_THUNK_INTERFACE_PIPELINE_ID)
roctracer: $(roctracer-pipeline-id) rocThrust: $(ROCTHRUST_PIPELINE_ID)
rocWMMA: $(rocwmma-pipeline-id) roctracer: $(ROCTRACER_PIPELINE_ID)
rpp: $(rpp-pipeline-id) rocWMMA: $(ROCWMMA_PIPELINE_ID)
rpp: $(RPP_PIPELINE_ID)
- name: taggedPipelineIdentifiers - name: taggedPipelineIdentifiers
type: object type: object
default: default:
AMDMIGraphX: $(amdmigraphx-tagged-pipeline-id) AMDMIGraphX: $(AMDMIGRAPHX_TAGGED_PIPELINE_ID)
amdsmi: $(amdsmi-tagged-pipeline-id) amdsmi: $(AMDSMI_TAGGED_PIPELINE_ID)
aomp-extras: $(aomp-extras-tagged-pipeline-id) aomp-extras: $(AOMP_EXTRAS_TAGGED_PIPELINE_ID)
aomp: $(aomp-tagged-pipeline-id) aomp: $(AOMP_TAGGED_PIPELINE_ID)
clr: $(clr-tagged-pipeline-id) clr: $(CLR_TAGGED_PIPELINE_ID)
composable_kernel: $(composable-kernel-tagged-pipeline-id) composable_kernel: $(COMPOSABLE_KERNEL_TAGGED_PIPELINE_ID)
half: $(half-tagged-pipeline-id) half: $(HALF_TAGGED_PIPELINE_ID)
HIP: $(hip-tagged-pipeline-id) HIP: $(HIP_TAGGED_PIPELINE_ID)
hipBLAS: $(hipblas-tagged-pipeline-id) hipBLAS: $(HIPBLAS_TAGGED_PIPELINE_ID)
hipBLASLt: $(hipblaslt-tagged-pipeline-id) hipBLAS-common: $(HIPBLAS_COMMON_TAGGED_PIPELINE_ID)
hipBLAS-common: $(hipblas-common-tagged-pipeline-id) hipBLASLt: $(HIPBLASLT_TAGGED_PIPELINE_ID)
hipCUB: $(hipcub-tagged-pipeline-id) hipCUB: $(HIPCUB_TAGGED_PIPELINE_ID)
hipFFT: $(hipfft-tagged-pipeline-id) hipFFT: $(HIPFFT_TAGGED_PIPELINE_ID)
hipfort: $(hipfort-tagged-pipeline-id) hipfort: $(HIPFORT_TAGGED_PIPELINE_ID)
HIPIFY: $(hipify-tagged-pipeline-id) HIPIFY: $(HIPIFY_TAGGED_PIPELINE_ID)
hipRAND: $(hiprand-tagged-pipeline-id) hipRAND: $(HIPRAND_TAGGED_PIPELINE_ID)
hipSOLVER: $(hipsolver-tagged-pipeline-id) hipSOLVER: $(HIPSOLVER_TAGGED_PIPELINE_ID)
hipSPARSE: $(hipsparse-tagged-pipeline-id) hipSPARSE: $(HIPSPARSE_TAGGED_PIPELINE_ID)
hipSPARSELt: $(hipsparselt-tagged-pipeline-id) hipSPARSELt: $(HIPSPARSELT_TAGGED_PIPELINE_ID)
hipTensor: $(hiptensor-tagged-pipeline-id) hipTensor: $(HIPTENSOR_TAGGED_PIPELINE_ID)
llvm-project: $(llvm-project-tagged-pipeline-id) llvm-project: $(LLVM_PROJECT_TAGGED_PIPELINE_ID)
MIOpen: $(miopen-tagged-pipeline-id) MIOpen: $(MIOpen_TAGGED_PIPELINE_ID)
MIVisionX: $(mivisionx-tagged-pipeline-id) MIVisionX: $(MIVISIONX_TAGGED_PIPELINE_ID)
rccl: $(rccl-tagged-pipeline-id) rccl: $(RCCL_TAGGED_PIPELINE_ID)
rdc: $(rdc-tagged-pipeline-id) rdc: $(RDC_TAGGED_PIPELINE_ID)
rocAL: $(rocal-tagged-pipeline-id) rocAL: $(ROCAL_TAGGED_PIPELINE_ID)
rocALUTION: $(rocalution-tagged-pipeline-id) rocALUTION: $(ROCALUTION_TAGGED_PIPELINE_ID)
rocBLAS: $(rocblas-tagged-pipeline-id) rocBLAS: $(ROCBLAS_TAGGED_PIPELINE_ID)
ROCdbgapi : $(rocdbgapi-tagged-pipeline-id) ROCdbgapi: $(ROCDBGAPI_TAGGED_PIPELINE_ID)
rocDecode: $(rocdecode-tagged-pipeline-id) rocDecode: $(ROCDECODE_TAGGED_PIPELINE_ID)
rocFFT: $(rocfft-tagged-pipeline-id) rocFFT: $(ROCFFT_TAGGED_PIPELINE_ID)
ROCgdb: $(rocgdb-tagged-pipeline-id) ROCgdb: $(ROCGDB_TAGGED_PIPELINE_ID)
rocm-cmake: $(rocm-cmake-tagged-pipeline-id) rocm-cmake: $(ROCM_CMAKE_TAGGED_PIPELINE_ID)
rocm-core: $(rocm-core-tagged-pipeline-id) rocm-core: $(ROCM_CORE_TAGGED_PIPELINE_ID)
rocm-examples: $(rocm-examples-tagged-pipeline-id) rocm-examples: $(ROCM_EXAMPLES_TAGGED_PIPELINE_ID)
rocminfo: $(rocminfo-tagged-pipeline-id) rocminfo: $(ROCMINFO_TAGGED_PIPELINE_ID)
rocMLIR: $(rocmlir-tagged-pipeline-id) rocMLIR: $(ROCMLIR_TAGGED_PIPELINE_ID)
ROCmValidationSuite: $(rocmvalidationsuite-tagged-pipeline-id) ROCmValidationSuite: $(ROCMVALIDATIONSUITE_TAGGED_PIPELINE_ID)
rocm_bandwidth_test: $(rocm-bandwidth-test-tagged-pipeline-id) rocm_bandwidth_test: $(ROCM_BANDWIDTH_TEST_TAGGED_PIPELINE_ID)
rocm_smi_lib: $(rocm-smi-lib-tagged-pipeline-id) rocm_smi_lib: $(ROCM_SMI_LIB_TAGGED_PIPELINE_ID)
rocPRIM: $(rocprim-tagged-pipeline-id) rocPRIM: $(ROCPRIM_TAGGED_PIPELINE_ID)
rocprofiler-register: $(rocprofiler-register-tagged-pipeline-id) rocprofiler-register: $(ROCPROFILER_REGISTER_TAGGED_PIPELINE_ID)
rocprofiler: $(rocprofiler-tagged-pipeline-id) rocprofiler: $(ROCPROFILER_TAGGED_PIPELINE_ID)
ROCR-Runtime: $(rocr-runtime-tagged-pipeline-id) ROCR-Runtime: $(ROCR_RUNTIME_TAGGED_PIPELINE_ID)
rocRAND: $(rocrand-tagged-pipeline-id) rocRAND: $(ROCRAND_TAGGED_PIPELINE_ID)
rocr_debug_agent: $(rocr-debug-agent-tagged-pipeline-id) rocr_debug_agent: $(ROCR_DEBUG_AGENT_TAGGED_PIPELINE_ID)
rocSOLVER: $(rocsolver-tagged-pipeline-id) rocSOLVER: $(ROCSOLVER_TAGGED_PIPELINE_ID)
rocSPARSE: $(rocsparse-tagged-pipeline-id) rocSPARSE: $(ROCSPARSE_TAGGED_PIPELINE_ID)
rocThrust: $(rocthrust-tagged-pipeline-id) ROCT-Thunk-Interface: $(ROCT_THUNK_INTERFACE_TAGGED_PIPELINE_ID)
roctracer: $(roctracer-tagged-pipeline-id) rocThrust: $(ROCTHRUST_TAGGED_PIPELINE_ID)
rocWMMA: $(rocwmma-tagged-pipeline-id) roctracer: $(ROCTRACER_TAGGED_PIPELINE_ID)
rpp: $(rpp-tagged-pipeline-id) rocWMMA: $(ROCWMMA_TAGGED_PIPELINE_ID)
rpp: $(RPP_TAGGED_PIPELINE_ID)
# set to true if you're calling this template file multiple files in same pipeline # set to true if you're calling this template file multiple files in same pipeline
# only leave last call false to optimize sequence # only leave last call false to optimize sequence
- name: skipLibraryLinking - name: skipLibraryLinking

View File

@@ -31,3 +31,275 @@ variables:
value: 6.1 value: 6.1
- name: KEYRING_VERSION - name: KEYRING_VERSION
value: 6.1 value: 6.1
- name: AMDMIGRAPHX_GFX942_TEST_PIPELINE_ID
value: 197
- name: AMDMIGRAPHX_PIPELINE_ID
value: 113
- name: AMDMIGRAPHX_TAGGED_PIPELINE_ID
value: 60
- name: AMDSMI_PIPELINE_ID
value: 99
- name: AMDSMI_TAGGED_PIPELINE_ID
value: 33
- name: AOMP_EXTRAS_PIPELINE_ID
value: 111
- name: AOMP_EXTRAS_TAGGED_PIPELINE_ID
value: 75
- name: AOMP_PIPELINE_ID
value: 115
- name: AOMP_TAGGED_PIPELINE_ID
value: 76
- name: CCACHE_DIR
value: $(Pipeline.Workspace)/ccache
- name: CLR_PIPELINE_ID
value: 145
- name: CLR_TAGGED_PIPELINE_ID
value: 71
- name: COMPOSABLE_KERNEL_GFX942_TEST_PIPELINE_ID
value: 179
- name: COMPOSABLE_KERNEL_PIPELINE_ID
value: 86
- name: COMPOSABLE_KERNEL_TAGGED_PIPELINE_ID
value: 38
- name: FLANG_LEGACY_PIPELINE_ID
value: 77
- name: FLANG_LEGACY_TAGGED_PIPELINE_ID
value: 77
- name: HALF_PIPELINE_ID
value: 101
- name: HALF_TAGGED_PIPELINE_ID
value: 11
- name: HALF560_PIPELINE_ID
value: 66
- name: HALF560_TAGGED_PIPELINE_ID
value: 66
- name: HIP_PIPELINE_ID
value: 93
- name: HIP_TAGGED_PIPELINE_ID
value: 31
- name: HIPBLAS_COMMON_PIPELINE_ID
value: 223
- name: HIPBLAS_COMMON_TAGGED_PIPELINE_ID
value: 224
- name: HIPBLAS_GFX942_TEST_PIPELINE_ID
value: 202
- name: HIPBLAS_PIPELINE_ID
value: 87
- name: HIPBLAS_TAGGED_PIPELINE_ID
value: 44
- name: HIPBLASLT_GFX942_TEST_PIPELINE_ID
value: 187
- name: HIPBLASLT_PIPELINE_ID
value: 112
- name: HIPBLASLT_TAGGED_PIPELINE_ID
value: 45
- name: HIPCUB_GFX942_TEST_PIPELINE_ID
value: 186
- name: HIPCUB_PIPELINE_ID
value: 97
- name: HIPCUB_TAGGED_PIPELINE_ID
value: 46
- name: HIPFFT_GFX942_TEST_PIPELINE_ID
value: 198
- name: HIPFFT_PIPELINE_ID
value: 121
- name: HIPFFT_TAGGED_PIPELINE_ID
value: 12
- name: HIPFORT_PIPELINE_ID
value: 102
- name: HIPFORT_TAGGED_PIPELINE_ID
value: 34
- name: HIPIFY_PIPELINE_ID
value: 92
- name: HIPIFY_TAGGED_PIPELINE_ID
value: 13
- name: HIPRAND_GFX942_TEST_PIPELINE_ID
value: 188
- name: HIPRAND_PIPELINE_ID
value: 90
- name: HIPRAND_TAGGED_PIPELINE_ID
value: 42
- name: HIPSOLVER_GFX942_TEST_PIPELINE_ID
value: 201
- name: HIPSOLVER_PIPELINE_ID
value: 84
- name: HIPSOLVER_TAGGED_PIPELINE_ID
value: 52
- name: HIPSPARSE_GFX942_TEST_PIPELINE_ID
value: 195
- name: HIPSPARSE_PIPELINE_ID
value: 83
- name: HIPSPARSE_TAGGED_PIPELINE_ID
value: 14
- name: HIPSPARSELT_GFX942_TEST_PIPELINE_ID
value: 200
- name: HIPSPARSELT_PIPELINE_ID
value: 104
- name: HIPSPARSELT_TAGGED_PIPELINE_ID
value: 53
- name: HIPTENSOR_GFX942_TEST_PIPELINE_ID
value: 192
- name: HIPTENSOR_PIPELINE_ID
value: 105
- name: HIPTENSOR_TAGGED_PIPELINE_ID
value: 56
- name: LAST_RELEASE
value: 6.1.0
- name: LLVM_PROJECT_PIPELINE_ID
value: 2
- name: LLVM_PROJECT_TAGGED_PIPELINE_ID
value: 8
- name: MIOPEN_PIPELINE_ID
value: 108
- name: MIOPEN_TAGGED_PIPELINE_ID
value: 58
- name: MIVISIONX_PIPELINE_ID
value: 80
- name: MIVISIONX_TAGGED_PIPELINE_ID
value: 18
- name: RCCL_GFX942_TEST_PIPELINE_ID
value: 184
- name: RCCL_PIPELINE_ID
value: 107
- name: RCCL_TAGGED_PIPELINE_ID
value: 15
- name: RDC_PIPELINE_ID
value: 100
- name: RDC_TAGGED_PIPELINE_ID
value: 59
- name: REIMAGE_ORG
value: AGS-ROCm-CI
- name: REIMAGE_REPO
value: cirrascale-reimage-automation
- name: ROCAL_PIPELINE_ID
value: 151
- name: ROCALUTION_GFX942_TEST_PIPELINE_ID
value: 196
- name: ROCALUTION_PIPELINE_ID
value: 89
- name: ROCALUTION_TAGGED_PIPELINE_ID
value: 16
- name: ROCBLAS_GFX942_TEST_PIPELINE_ID
value: 185
- name: ROCBLAS_PIPELINE_ID
value: 85
- name: ROCBLAS_TAGGED_PIPELINE_ID
value: 32
- name: ROCDBGAPI_PIPELINE_ID
value: 135
- name: ROCDBGAPI_TAGGED_PIPELINE_ID
value: 17
- name: ROCDECODE_PIPELINE_ID
value: 79
- name: ROCDECODE_TAGGED_PIPELINE_ID
value: 21
- name: ROCFFT_GFX942_TEST_PIPELINE_ID
value: 189
- name: ROCFFT_PIPELINE_ID
value: 120
- name: ROCFFT_TAGGED_PIPELINE_ID
value: 19
- name: ROCGDB_PIPELINE_ID
value: 134
- name: ROCGDB_TAGGED_PIPELINE_ID
value: 50
- name: ROCM_BANDWIDTH_TEST_PIPELINE_ID
value: 88
- name: ROCM_BANDWIDTH_TEST_TAGGED_PIPELINE_ID
value: 23
- name: ROCM_CMAKE_PIPELINE_ID
value: 6
- name: ROCM_CMAKE_TAGGED_PIPELINE_ID
value: 7
- name: ROCM_CORE_PIPELINE_ID
value: 103
- name: ROCM_CORE_TAGGED_PIPELINE_ID
value: 22
- name: ROCM_EXAMPLES_GFX942_TEST_PIPELINE_ID
value: 204
- name: ROCM_SMI_LIB_PIPELINE_ID
value: 96
- name: ROCM_SMI_LIB_TAGGED_PIPELINE_ID
value: 47
- name: ROCMINFO_PIPELINE_ID
value: 91
- name: ROCMINFO_TAGGED_PIPELINE_ID
value: 27
- name: ROCMLIR_PIPELINE_ID
value: 229
- name: ROCMLIR_TAGGED_PIPELINE_ID
value: 62
- name: ROCMVALIDATIONSUITE_PIPELINE_ID
value: 106
- name: ROCMVALIDATIONSUITE_TAGGED_PIPELINE_ID
value: 43
- name: ROCPRIM_GFX942_TEST_PIPELINE_ID
value: 180
- name: ROCPRIM_PIPELINE_ID
value: 82
- name: ROCPRIM_TAGGED_PIPELINE_ID
value: 20
- name: ROCPROFILER_GFX942_TEST_PIPELINE_ID
value: 190
- name: ROCPROFILER_PIPELINE_ID
value: 143
- name: ROCPROFILER_REGISTER_PIPELINE_ID
value: 1
- name: ROCPROFILER_REGISTER_TAGGED_PIPELINE_ID
value: 25
- name: ROCPROFILER_TAGGED_PIPELINE_ID
value: 28
- name: ROCR_DEBUG_AGENT_PIPELINE_ID
value: 136
- name: ROCR_DEBUG_AGENT_TAGGED_PIPELINE_ID
value: 29
- name: ROCR_RUNTIME_PIPELINE_ID
value: 10
- name: ROCR_RUNTIME_TAGGED_PIPELINE_ID
value: 24
- name: ROCRAND_GFX942_TEST_PIPELINE_ID
value: 183
- name: ROCRAND_PIPELINE_ID
value: 95
- name: ROCRAND_TAGGED_PIPELINE_ID
value: 41
- name: ROCSOLVER_GFX942_TEST_PIPELINE_ID
value: 199
- name: ROCSOLVER_PIPELINE_ID
value: 81
- name: ROCSOLVER_TAGGED_PIPELINE_ID
value: 55
- name: ROCSPARSE_GFX942_TEST_PIPELINE_ID
value: 191
- name: ROCSPARSE_PIPELINE_ID
value: 98
- name: ROCSPARSE_TAGGED_PIPELINE_ID
value: 67
- name: ROCT_THUNK_INTERFACE_PIPELINE_ID
value: 3
- name: ROCT_THUNK_INTERFACE_TAGGED_PIPELINE_ID
value: 9
- name: ROCTHRUST_GFX942_TEST_PIPELINE_ID
value: 194
- name: ROCTHRUST_PIPELINE_ID
value: 94
- name: ROCTHRUST_TAGGED_PIPELINE_ID
value: 26
- name: ROCTRACER_GFX942_TEST_PIPELINE_ID
value: 181
- name: ROCTRACER_PIPELINE_ID
value: 141
- name: ROCTRACER_TAGGED_PIPELINE_ID
value: 30
- name: ROCWMMA_GFX942_TEST_PIPELINE_ID
value: 193
- name: ROCWMMA_PIPELINE_ID
value: 109
- name: ROCWMMA_TAGGED_PIPELINE_ID
value: 57
- name: RPP_GFX942_TEST_PIPELINE_ID
value: 182
- name: RPP_PIPELINE_ID
value: 78
- name: RPP_TAGGED_PIPELINE_ID
value: 39