diff --git a/projects/rocdecode/CHANGELOG.md b/projects/rocdecode/CHANGELOG.md index ce8413ba9b..0e925f431d 100644 --- a/projects/rocdecode/CHANGELOG.md +++ b/projects/rocdecode/CHANGELOG.md @@ -29,7 +29,7 @@ Documentation for rocDecode is available at * rocm-core - `6.1.0.60100-28` * amdgpu-core - `1:6.1.60100-1731559` * FFMPEG - `4.2.7` / `4.4.2-0` -* rocDecode Setup Script - `V1.7` +* rocDecode Setup Script - `V1.7.1` ## rocDecode 0.5.0 diff --git a/projects/rocdecode/README.md b/projects/rocdecode/README.md index 2265397e8f..21811d544f 100644 --- a/projects/rocdecode/README.md +++ b/projects/rocdecode/README.md @@ -223,4 +223,4 @@ page. * rocm-core - `6.1.0.60100-28` * amdgpu-core - `1:6.1.60100-1731559` * FFmpeg - `4.2.7` / `4.4.2-0` -* rocDecode Setup Script - `V1.7` +* rocDecode Setup Script - `V1.7.1` diff --git a/projects/rocdecode/docs/install/install.rst b/projects/rocdecode/docs/install/install.rst index 6a18ed177d..12cd4d5d70 100644 --- a/projects/rocdecode/docs/install/install.rst +++ b/projects/rocdecode/docs/install/install.rst @@ -25,7 +25,7 @@ Tested configurations * FFmpeg: 4.2.7/4.4.2-0 -* rocDecode Setup Script: V1.7 +* rocDecode Setup Script: V1.7.1 Supported codecs ======================================== diff --git a/projects/rocdecode/rocDecode-setup.py b/projects/rocdecode/rocDecode-setup.py index eef33c510f..e93e32c67d 100644 --- a/projects/rocdecode/rocDecode-setup.py +++ b/projects/rocdecode/rocDecode-setup.py @@ -28,7 +28,7 @@ else: import subprocess __copyright__ = "Copyright (c) 2023 - 2024, AMD ROCm rocDecode" -__version__ = "1.7" +__version__ = "1.7.1" __email__ = "mivisionx.support@amd.com" __status__ = "Shipping" @@ -58,7 +58,7 @@ print("\nROCm PATH set to -- "+ROCM_PATH+"\n") # check ROCm installation if os.path.exists(ROCM_PATH): print("\nROCm Installation Found -- "+ROCM_PATH+"\n") - ERROR_CHECK(os.system('echo ROCm Info -- && '+ROCM_PATH+'/bin/rocminfo')) + os.system('echo ROCm Info -- && '+ROCM_PATH+'/bin/rocminfo') else: print( "WARNING: If ROCm installed, set ROCm Path with \"--rocm_path\" option for full installation [Default:/opt/rocm]\n")