From 42abff3d1093034d301fb56972950404b3c16170 Mon Sep 17 00:00:00 2001 From: abhimeda <138710508+abhimeda@users.noreply.github.com> Date: Mon, 26 Aug 2024 13:49:39 -0400 Subject: [PATCH] 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 --- .azuredevops/components/AMDMIGraphX.yml | 2 +- .azuredevops/templates/steps/ccache.yml | 5 +- .../templates/steps/dependencies-rocm.yml | 210 +++++++------- .azuredevops/variables-global.yml | 272 ++++++++++++++++++ 4 files changed, 383 insertions(+), 106 deletions(-) diff --git a/.azuredevops/components/AMDMIGraphX.yml b/.azuredevops/components/AMDMIGraphX.yml index 130caa132..6b05f0c90 100644 --- a/.azuredevops/components/AMDMIGraphX.yml +++ b/.azuredevops/components/AMDMIGraphX.yml @@ -79,7 +79,7 @@ jobs: parameters: dependencySource: fixed fixedComponentName: half - fixedPipelineIdentifier: $(half560-pipeline-id) + fixedPipelineIdentifier: ${{ variables.HALF560_PIPELINE_ID }} skipLibraryLinking: true skipLlvmSymlink: true - template: ${{ variables.CI_TEMPLATE_PATH }}/steps/dependencies-rocm.yml diff --git a/.azuredevops/templates/steps/ccache.yml b/.azuredevops/templates/steps/ccache.yml index 324054e3d..a5f662f5f 100644 --- a/.azuredevops/templates/steps/ccache.yml +++ b/.azuredevops/templates/steps/ccache.yml @@ -1,11 +1,14 @@ # to use ccache, run this template step before build-cmake.yml # and add this cmake flag to extraBuildFlags # -DCMAKE_CXX_COMPILER_LAUNCHER=ccache +variables: + - group: common + - template: /.azuredevops/variables-global.yml steps: - task: Cache@2 displayName: Ccache caching inputs: key: 'ccache | "$(Agent.OS)" | $(Build.SourceVersion)' - path: $(CCACHE_DIR) + path: ${{ variables.CCACHE_DIR }} restoreKeys: | ccache | "$(Agent.OS)" diff --git a/.azuredevops/templates/steps/dependencies-rocm.yml b/.azuredevops/templates/steps/dependencies-rocm.yml index e21546345..7bc8ca788 100644 --- a/.azuredevops/templates/steps/dependencies-rocm.yml +++ b/.azuredevops/templates/steps/dependencies-rocm.yml @@ -29,113 +29,115 @@ parameters: - name: stagingPipelineIdentifiers type: object default: - AMDMIGraphX: $(amdmigraphx-pipeline-id) - amdsmi: $(amdsmi-pipeline-id) - aomp-extras: $(aomp-extras-pipeline-id) - aomp: $(aomp-pipeline-id) - clr: $(clr-pipeline-id) - composable_kernel: $(composable-kernel-pipeline-id) - half: $(half-pipeline-id) - HIP: $(hip-pipeline-id) - hipBLAS: $(hipblas-pipeline-id) - hipBLASLt: $(hipblaslt-pipeline-id) - hipBLAS-common: $(hipblas-common-pipeline-id) - hipCUB: $(hipcub-pipeline-id) - hipFFT: $(hipfft-pipeline-id) - hipfort: $(hipfort-pipeline-id) - HIPIFY: $(hipify-pipeline-id) - hipRAND: $(hiprand-pipeline-id) - hipSOLVER: $(hipsolver-pipeline-id) - hipSPARSE: $(hipsparse-pipeline-id) - hipSPARSELt: $(hipsparselt-pipeline-id) - hipTensor: $(hiptensor-pipeline-id) - llvm-project: $(llvm-project-pipeline-id) - MIOpen: $(miopen-pipeline-id) - MIVisionX: $(mivisionx-pipeline-id) - rccl: $(rccl-pipeline-id) - rdc: $(rdc-pipeline-id) - rocAL: $(rocal-pipeline-id) - rocALUTION: $(rocalution-pipeline-id) - rocBLAS: $(rocblas-pipeline-id) - ROCdbgapi : $(rocdbgapi-pipeline-id) - rocDecode: $(rocdecode-pipeline-id) - rocFFT: $(rocfft-pipeline-id) - ROCgdb: $(rocgdb-pipeline-id) - rocm-cmake: $(rocm-cmake-pipeline-id) - rocm-core: $(rocm-core-pipeline-id) - rocm-examples: $(rocm-examples-pipeline-id) - rocminfo: $(rocminfo-pipeline-id) - rocMLIR: $(rocmlir-pipeline-id) - ROCmValidationSuite: $(rocmvalidationsuite-pipeline-id) - rocm_bandwidth_test: $(rocm-bandwidth-test-pipeline-id) - rocm_smi_lib: $(rocm-smi-lib-pipeline-id) - rocPRIM: $(rocprim-pipeline-id) - rocprofiler-register: $(rocprofiler-register-pipeline-id) - rocprofiler: $(rocprofiler-pipeline-id) - ROCR-Runtime: $(rocr-runtime-pipeline-id) - rocRAND: $(rocrand-pipeline-id) - rocr_debug_agent: $(rocr-debug-agent-pipeline-id) - rocSOLVER: $(rocsolver-pipeline-id) - rocSPARSE: $(rocsparse-pipeline-id) - rocThrust: $(rocthrust-pipeline-id) - roctracer: $(roctracer-pipeline-id) - rocWMMA: $(rocwmma-pipeline-id) - rpp: $(rpp-pipeline-id) + AMDMIGraphX: $(AMDMIGRAPHX_PIPELINE_ID) + amdsmi: $(AMDSMI_PIPELINE_ID) + aomp-extras: $(AOMP_EXTRAS_PIPELINE_ID) + aomp: $(AOMP_PIPELINE_ID) + clr: $(CLR_PIPELINE_ID) + composable_kernel: $(COMPOSABLE_KERNEL_PIPELINE_ID) + half: $(HALF_PIPELINE_ID) + HIP: $(HIP_PIPELINE_ID) + hipBLAS: $(HIPBLAS_PIPELINE_ID) + hipBLAS-common: $(HIPBLAS_COMMON_PIPELINE_ID) + hipBLASLt: $(HIPBLASLT_PIPELINE_ID) + hipCUB: $(HIPCUB_PIPELINE_ID) + hipFFT: $(HIPFFT_PIPELINE_ID) + hipfort: $(HIPFORT_PIPELINE_ID) + HIPIFY: $(HIPIFY_PIPELINE_ID) + hipRAND: $(HIPRAND_PIPELINE_ID) + hipSOLVER: $(HIPSOLVER_PIPELINE_ID) + hipSPARSE: $(HIPSPARSE_PIPELINE_ID) + hipSPARSELt: $(HIPSPARSELT_PIPELINE_ID) + hipTensor: $(HIPTENSOR_PIPELINE_ID) + llvm-project: $(LLVM_PROJECT_PIPELINE_ID) + MIOpen: $(MIOpen_PIPELINE_ID) + MIVisionX: $(MIVISIONX_PIPELINE_ID) + rccl: $(RCCL_PIPELINE_ID) + rdc: $(RDC_PIPELINE_ID) + rocAL: $(ROCAL_PIPELINE_ID) + rocALUTION: $(ROCALUTION_PIPELINE_ID) + rocBLAS: $(ROCBLAS_PIPELINE_ID) + ROCdbgapi: $(ROCDBGAPI_PIPELINE_ID) + rocDecode: $(ROCDECODE_PIPELINE_ID) + rocFFT: $(ROCFFT_PIPELINE_ID) + ROCgdb: $(ROCGDB_PIPELINE_ID) + rocm-cmake: $(ROCM_CMAKE_PIPELINE_ID) + rocm-core: $(ROCM_CORE_PIPELINE_ID) + rocm-examples: $(ROCM_EXAMPLES_PIPELINE_ID) + rocminfo: $(ROCMINFO_PIPELINE_ID) + rocMLIR: $(ROCMLIR_PIPELINE_ID) + ROCmValidationSuite: $(ROCMVALIDATIONSUITE_PIPELINE_ID) + rocm_bandwidth_test: $(ROCM_BANDWIDTH_TEST_PIPELINE_ID) + rocm_smi_lib: $(ROCM_SMI_LIB_PIPELINE_ID) + rocPRIM: $(ROCPRIM_PIPELINE_ID) + rocprofiler-register: $(ROCPROFILER_REGISTER_PIPELINE_ID) + rocprofiler: $(ROCPROFILER_PIPELINE_ID) + ROCR-Runtime: $(ROCR_RUNTIME_PIPELINE_ID) + rocRAND: $(ROCRAND_PIPELINE_ID) + rocr_debug_agent: $(ROCR_DEBUG_AGENT_PIPELINE_ID) + rocSOLVER: $(ROCSOLVER_PIPELINE_ID) + rocSPARSE: $(ROCSPARSE_PIPELINE_ID) + ROCT-Thunk-Interface: $(ROCT_THUNK_INTERFACE_PIPELINE_ID) + rocThrust: $(ROCTHRUST_PIPELINE_ID) + roctracer: $(ROCTRACER_PIPELINE_ID) + rocWMMA: $(ROCWMMA_PIPELINE_ID) + rpp: $(RPP_PIPELINE_ID) - name: taggedPipelineIdentifiers type: object default: - AMDMIGraphX: $(amdmigraphx-tagged-pipeline-id) - amdsmi: $(amdsmi-tagged-pipeline-id) - aomp-extras: $(aomp-extras-tagged-pipeline-id) - aomp: $(aomp-tagged-pipeline-id) - clr: $(clr-tagged-pipeline-id) - composable_kernel: $(composable-kernel-tagged-pipeline-id) - half: $(half-tagged-pipeline-id) - HIP: $(hip-tagged-pipeline-id) - hipBLAS: $(hipblas-tagged-pipeline-id) - hipBLASLt: $(hipblaslt-tagged-pipeline-id) - hipBLAS-common: $(hipblas-common-tagged-pipeline-id) - hipCUB: $(hipcub-tagged-pipeline-id) - hipFFT: $(hipfft-tagged-pipeline-id) - hipfort: $(hipfort-tagged-pipeline-id) - HIPIFY: $(hipify-tagged-pipeline-id) - hipRAND: $(hiprand-tagged-pipeline-id) - hipSOLVER: $(hipsolver-tagged-pipeline-id) - hipSPARSE: $(hipsparse-tagged-pipeline-id) - hipSPARSELt: $(hipsparselt-tagged-pipeline-id) - hipTensor: $(hiptensor-tagged-pipeline-id) - llvm-project: $(llvm-project-tagged-pipeline-id) - MIOpen: $(miopen-tagged-pipeline-id) - MIVisionX: $(mivisionx-tagged-pipeline-id) - rccl: $(rccl-tagged-pipeline-id) - rdc: $(rdc-tagged-pipeline-id) - rocAL: $(rocal-tagged-pipeline-id) - rocALUTION: $(rocalution-tagged-pipeline-id) - rocBLAS: $(rocblas-tagged-pipeline-id) - ROCdbgapi : $(rocdbgapi-tagged-pipeline-id) - rocDecode: $(rocdecode-tagged-pipeline-id) - rocFFT: $(rocfft-tagged-pipeline-id) - ROCgdb: $(rocgdb-tagged-pipeline-id) - rocm-cmake: $(rocm-cmake-tagged-pipeline-id) - rocm-core: $(rocm-core-tagged-pipeline-id) - rocm-examples: $(rocm-examples-tagged-pipeline-id) - rocminfo: $(rocminfo-tagged-pipeline-id) - rocMLIR: $(rocmlir-tagged-pipeline-id) - ROCmValidationSuite: $(rocmvalidationsuite-tagged-pipeline-id) - rocm_bandwidth_test: $(rocm-bandwidth-test-tagged-pipeline-id) - rocm_smi_lib: $(rocm-smi-lib-tagged-pipeline-id) - rocPRIM: $(rocprim-tagged-pipeline-id) - rocprofiler-register: $(rocprofiler-register-tagged-pipeline-id) - rocprofiler: $(rocprofiler-tagged-pipeline-id) - ROCR-Runtime: $(rocr-runtime-tagged-pipeline-id) - rocRAND: $(rocrand-tagged-pipeline-id) - rocr_debug_agent: $(rocr-debug-agent-tagged-pipeline-id) - rocSOLVER: $(rocsolver-tagged-pipeline-id) - rocSPARSE: $(rocsparse-tagged-pipeline-id) - rocThrust: $(rocthrust-tagged-pipeline-id) - roctracer: $(roctracer-tagged-pipeline-id) - rocWMMA: $(rocwmma-tagged-pipeline-id) - rpp: $(rpp-tagged-pipeline-id) + AMDMIGraphX: $(AMDMIGRAPHX_TAGGED_PIPELINE_ID) + amdsmi: $(AMDSMI_TAGGED_PIPELINE_ID) + aomp-extras: $(AOMP_EXTRAS_TAGGED_PIPELINE_ID) + aomp: $(AOMP_TAGGED_PIPELINE_ID) + clr: $(CLR_TAGGED_PIPELINE_ID) + composable_kernel: $(COMPOSABLE_KERNEL_TAGGED_PIPELINE_ID) + half: $(HALF_TAGGED_PIPELINE_ID) + HIP: $(HIP_TAGGED_PIPELINE_ID) + hipBLAS: $(HIPBLAS_TAGGED_PIPELINE_ID) + hipBLAS-common: $(HIPBLAS_COMMON_TAGGED_PIPELINE_ID) + hipBLASLt: $(HIPBLASLT_TAGGED_PIPELINE_ID) + hipCUB: $(HIPCUB_TAGGED_PIPELINE_ID) + hipFFT: $(HIPFFT_TAGGED_PIPELINE_ID) + hipfort: $(HIPFORT_TAGGED_PIPELINE_ID) + HIPIFY: $(HIPIFY_TAGGED_PIPELINE_ID) + hipRAND: $(HIPRAND_TAGGED_PIPELINE_ID) + hipSOLVER: $(HIPSOLVER_TAGGED_PIPELINE_ID) + hipSPARSE: $(HIPSPARSE_TAGGED_PIPELINE_ID) + hipSPARSELt: $(HIPSPARSELT_TAGGED_PIPELINE_ID) + hipTensor: $(HIPTENSOR_TAGGED_PIPELINE_ID) + llvm-project: $(LLVM_PROJECT_TAGGED_PIPELINE_ID) + MIOpen: $(MIOpen_TAGGED_PIPELINE_ID) + MIVisionX: $(MIVISIONX_TAGGED_PIPELINE_ID) + rccl: $(RCCL_TAGGED_PIPELINE_ID) + rdc: $(RDC_TAGGED_PIPELINE_ID) + rocAL: $(ROCAL_TAGGED_PIPELINE_ID) + rocALUTION: $(ROCALUTION_TAGGED_PIPELINE_ID) + rocBLAS: $(ROCBLAS_TAGGED_PIPELINE_ID) + ROCdbgapi: $(ROCDBGAPI_TAGGED_PIPELINE_ID) + rocDecode: $(ROCDECODE_TAGGED_PIPELINE_ID) + rocFFT: $(ROCFFT_TAGGED_PIPELINE_ID) + ROCgdb: $(ROCGDB_TAGGED_PIPELINE_ID) + rocm-cmake: $(ROCM_CMAKE_TAGGED_PIPELINE_ID) + rocm-core: $(ROCM_CORE_TAGGED_PIPELINE_ID) + rocm-examples: $(ROCM_EXAMPLES_TAGGED_PIPELINE_ID) + rocminfo: $(ROCMINFO_TAGGED_PIPELINE_ID) + rocMLIR: $(ROCMLIR_TAGGED_PIPELINE_ID) + ROCmValidationSuite: $(ROCMVALIDATIONSUITE_TAGGED_PIPELINE_ID) + rocm_bandwidth_test: $(ROCM_BANDWIDTH_TEST_TAGGED_PIPELINE_ID) + rocm_smi_lib: $(ROCM_SMI_LIB_TAGGED_PIPELINE_ID) + rocPRIM: $(ROCPRIM_TAGGED_PIPELINE_ID) + rocprofiler-register: $(ROCPROFILER_REGISTER_TAGGED_PIPELINE_ID) + rocprofiler: $(ROCPROFILER_TAGGED_PIPELINE_ID) + ROCR-Runtime: $(ROCR_RUNTIME_TAGGED_PIPELINE_ID) + rocRAND: $(ROCRAND_TAGGED_PIPELINE_ID) + rocr_debug_agent: $(ROCR_DEBUG_AGENT_TAGGED_PIPELINE_ID) + rocSOLVER: $(ROCSOLVER_TAGGED_PIPELINE_ID) + rocSPARSE: $(ROCSPARSE_TAGGED_PIPELINE_ID) + ROCT-Thunk-Interface: $(ROCT_THUNK_INTERFACE_TAGGED_PIPELINE_ID) + rocThrust: $(ROCTHRUST_TAGGED_PIPELINE_ID) + roctracer: $(ROCTRACER_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 # only leave last call false to optimize sequence - name: skipLibraryLinking diff --git a/.azuredevops/variables-global.yml b/.azuredevops/variables-global.yml index d9d54f29a..4ff2a157d 100644 --- a/.azuredevops/variables-global.yml +++ b/.azuredevops/variables-global.yml @@ -31,3 +31,275 @@ variables: value: 6.1 - name: KEYRING_VERSION 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