diff --git a/devops/dependencies.json b/devops/dependencies.json index 25283242aeeda..4275b897601dc 100644 --- a/devops/dependencies.json +++ b/devops/dependencies.json @@ -25,21 +25,21 @@ "root": "{DEPS_ROOT}/opencl/runtime/linux/oclgpu" }, "tbb": { - "github_tag": "v2021.12.0", - "version": "2021.12.0", - "url": "https://github.com/oneapi-src/oneTBB/releases/download/v2021.12.0/oneapi-tbb-2021.12.0-lin.tgz", + "github_tag": "v2022.0.0", + "version": "2022.0.0", + "url": "https://github.com/oneapi-src/oneTBB/releases/download/v2022.0.0/oneapi-tbb-2022.0.0-lin.tgz", "root": "{DEPS_ROOT}/tbb/lin" }, "oclcpu": { - "github_tag": "2024-WW25", - "version": "2024.18.6.0.02", - "url": "https://github.com/intel/llvm/releases/download/2024-WW25/oclcpuexp-2024.18.6.0.02_rel.tar.gz", + "github_tag": "2024-WW43", + "version": "2024.18.10.0.08", + "url": "https://github.com/intel/llvm/releases/download/2024-WW43/oclcpuexp-2024.18.10.0.08_rel.tar.gz", "root": "{DEPS_ROOT}/opencl/runtime/linux/oclcpu" }, "fpgaemu": { - "github_tag": "2024-WW25", - "version": "2024.18.6.0.02", - "url": "https://github.com/intel/llvm/releases/download/2024-WW25/fpgaemu-2024.18.6.0.02_rel.tar.gz", + "github_tag": "2024-WW43", + "version": "2024.18.10.0.08", + "url": "https://github.com/intel/llvm/releases/download/2024-WW43/fpgaemu-2024.18.10.0.08_rel.tar.gz", "root": "{DEPS_ROOT}/opencl/runtime/linux/oclfpgaemu" }, "fpga": { @@ -53,21 +53,21 @@ "root": "" }, "tbb": { - "github_tag": "v2021.12.0", - "version": "2021.12.0", - "url": "https://github.com/oneapi-src/oneTBB/releases/download/v2021.12.0/oneapi-tbb-2021.12.0-win.zip", + "github_tag": "v2022.0.0", + "version": "2022.0.0", + "url": "https://github.com/oneapi-src/oneTBB/releases/download/v2022.0.0/oneapi-tbb-2022.0.0-win.zip", "root": "{DEPS_ROOT}/tbb/win" }, "oclcpu": { - "github_tag": "2024-WW25", - "version": "2024.18.6.0.02", - "url": "https://github.com/intel/llvm/releases/download/2024-WW25/win-oclcpuexp-2024.18.6.0.02_rel.zip", + "github_tag": "2024-WW43", + "version": "2024.18.10.0.08", + "url": "https://github.com/intel/llvm/releases/download/2024-WW43/win-oclcpuexp-2024.18.10.0.08_rel.zip", "root": "{DEPS_ROOT}/opencl/runtime/linux/oclcpu" }, "fpgaemu": { - "github_tag": "2024-WW25", - "version": "2024.18.6.0.02", - "url": "https://github.com/intel/llvm/releases/download/2024-WW25/win-fpgaemu-2024.18.6.0.02_rel.zip", + "github_tag": "2024-WW43", + "version": "2024.18.10.0.08", + "url": "https://github.com/intel/llvm/releases/download/2024-WW43/win-fpgaemu-2024.18.10.0.08_rel.zip", "root": "{DEPS_ROOT}/opencl/runtime/linux/oclfpgaemu" }, "fpga": { diff --git a/devops/scripts/install_drivers.sh b/devops/scripts/install_drivers.sh index 0fd8673e0edfa..0fc177cd42afe 100755 --- a/devops/scripts/install_drivers.sh +++ b/devops/scripts/install_drivers.sh @@ -81,6 +81,10 @@ InstallTBB () { if [ "$TBB_INSTALLED" = false ]; then mkdir -p $INSTALL_LOCATION cd $INSTALL_LOCATION + if [ -d "$INSTALL_LOCATION/oneapi-tbb" ]; then + echo "$INSTALL_LOCATION/oneapi-tbb exists and will be removed!" + rm -Rf $INSTALL_LOCATION/oneapi-tbb; + fi echo "Installing TBB..." echo "TBB version $TBB_TAG" get_release oneapi-src/onetbb $TBB_TAG \