2024-03-25 17:05:31 -04:00
|
|
|
# Copyright (c) 2023 - 2024 Advanced Micro Devices, Inc. All rights reserved.
|
|
|
|
|
#
|
|
|
|
|
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
|
# of this software and associated documentation files (the "Software"), to deal
|
|
|
|
|
# in the Software without restriction, including without limitation the rights
|
|
|
|
|
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
|
# copies of the Software, and to permit persons to whom the Software is
|
|
|
|
|
# furnished to do so, subject to the following conditions:
|
|
|
|
|
#
|
|
|
|
|
# The above copyright notice and this permission notice shall be included in
|
|
|
|
|
# all copies or substantial portions of the Software.
|
|
|
|
|
#
|
|
|
|
|
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
|
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
|
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
|
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
|
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
|
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
|
|
# THE SOFTWARE.
|
|
|
|
|
|
|
|
|
|
import os
|
|
|
|
|
import sys
|
|
|
|
|
import argparse
|
|
|
|
|
import platform
|
|
|
|
|
if sys.version_info[0] < 3:
|
|
|
|
|
import commands
|
|
|
|
|
else:
|
|
|
|
|
import subprocess
|
|
|
|
|
|
|
|
|
|
__copyright__ = "Copyright (c) 2024, AMD ROCm rocJPEG"
|
|
|
|
|
__version__ = "1.0"
|
|
|
|
|
__email__ = "mivisionx.support@amd.com"
|
|
|
|
|
__status__ = "Shipping"
|
|
|
|
|
|
|
|
|
|
# Arguments
|
|
|
|
|
parser = argparse.ArgumentParser()
|
|
|
|
|
parser.add_argument('--rocm_path', type=str, default='/opt/rocm',
|
|
|
|
|
help='ROCm Installation Path - optional (default:/opt/rocm) - ROCm Installation Required')
|
|
|
|
|
|
|
|
|
|
args = parser.parse_args()
|
|
|
|
|
|
|
|
|
|
ROCM_PATH = args.rocm_path
|
|
|
|
|
|
|
|
|
|
if "ROCM_PATH" in os.environ:
|
|
|
|
|
ROCM_PATH = os.environ.get('ROCM_PATH')
|
|
|
|
|
print("\nROCm PATH set to -- "+ROCM_PATH+"\n")
|
|
|
|
|
|
|
|
|
|
# check ROCm installation
|
|
|
|
|
if os.path.exists(ROCM_PATH):
|
|
|
|
|
print("\nROCm Installation Found -- "+ROCM_PATH+"\n")
|
|
|
|
|
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")
|
|
|
|
|
print("ERROR: rocJPEG Setup requires ROCm install\n")
|
|
|
|
|
exit(-1)
|
|
|
|
|
|
|
|
|
|
# get platfrom info
|
|
|
|
|
platfromInfo = platform.platform()
|
|
|
|
|
|
|
|
|
|
# sudo requirement check
|
|
|
|
|
sudoLocation = ''
|
|
|
|
|
userName = ''
|
|
|
|
|
if sys.version_info[0] < 3:
|
|
|
|
|
status, sudoLocation = commands.getstatusoutput("which sudo")
|
|
|
|
|
if sudoLocation != '/usr/bin/sudo':
|
|
|
|
|
status, userName = commands.getstatusoutput("whoami")
|
|
|
|
|
else:
|
|
|
|
|
status, sudoLocation = subprocess.getstatusoutput("which sudo")
|
|
|
|
|
if sudoLocation != '/usr/bin/sudo':
|
|
|
|
|
status, userName = subprocess.getstatusoutput("whoami")
|
|
|
|
|
|
|
|
|
|
# setup for Linux
|
|
|
|
|
linuxSystemInstall = ''
|
|
|
|
|
linuxCMake = 'cmake'
|
|
|
|
|
linuxSystemInstall_check = ''
|
|
|
|
|
linuxFlag = ''
|
|
|
|
|
if "centos" in platfromInfo or "redhat" in platfromInfo or os.path.exists('/usr/bin/yum'):
|
|
|
|
|
linuxSystemInstall = 'yum -y'
|
|
|
|
|
linuxSystemInstall_check = '--nogpgcheck'
|
|
|
|
|
if "centos-7" in platfromInfo or "redhat-7" in platfromInfo:
|
|
|
|
|
linuxCMake = 'cmake3'
|
|
|
|
|
os.system(linuxSystemInstall+' install cmake3')
|
|
|
|
|
if not "centos" in platfromInfo or not "redhat" in platfromInfo:
|
|
|
|
|
platfromInfo = platfromInfo+'-redhat'
|
|
|
|
|
elif "Ubuntu" in platfromInfo or os.path.exists('/usr/bin/apt-get'):
|
|
|
|
|
linuxSystemInstall = 'apt-get -y'
|
|
|
|
|
linuxSystemInstall_check = '--allow-unauthenticated'
|
|
|
|
|
linuxFlag = '-S'
|
|
|
|
|
if not "Ubuntu" in platfromInfo:
|
|
|
|
|
platfromInfo = platfromInfo+'-Ubuntu'
|
|
|
|
|
elif os.path.exists('/usr/bin/zypper'):
|
|
|
|
|
linuxSystemInstall = 'zypper -n'
|
|
|
|
|
linuxSystemInstall_check = '--no-gpg-checks'
|
|
|
|
|
platfromInfo = platfromInfo+'-SLES'
|
|
|
|
|
else:
|
|
|
|
|
print("\nrocJPEG Setup on "+platfromInfo+" is unsupported\n")
|
2024-03-26 12:48:27 -04:00
|
|
|
print("\nrocJPEG Setup Supported on: Ubuntu 20/22; CentOS 8; RedHat 8/9; & SLES 15 SP5\n")
|
2024-03-25 17:05:31 -04:00
|
|
|
exit(-1)
|
|
|
|
|
|
|
|
|
|
# rocJPEG Setup
|
|
|
|
|
print("\nrocJPEG Setup on: "+platfromInfo+"\n")
|
|
|
|
|
print("\nrocJPEG Dependencies Installation with rocJPEG-setup.py V-"+__version__+"\n")
|
|
|
|
|
|
|
|
|
|
if userName == 'root':
|
|
|
|
|
os.system(linuxSystemInstall+' update')
|
|
|
|
|
os.system(linuxSystemInstall+' install sudo')
|
|
|
|
|
|
|
|
|
|
# install pre-reqs
|
|
|
|
|
os.system('sudo -v')
|
|
|
|
|
os.system(linuxSystemInstall+' update')
|
|
|
|
|
os.system('sudo '+linuxFlag+' '+linuxSystemInstall+' ' +
|
|
|
|
|
linuxSystemInstall_check+' install gcc cmake pkg-config')
|
|
|
|
|
|
|
|
|
|
# rocJPEG Core - VA/DRM Requirements
|
|
|
|
|
if "Ubuntu" in platfromInfo:
|
|
|
|
|
os.system('sudo -v')
|
|
|
|
|
os.system('sudo '+linuxFlag+' '+linuxSystemInstall+' '+linuxSystemInstall_check +
|
|
|
|
|
' install vainfo libdrm-amdgpu1 libva-amdgpu-dev mesa-amdgpu-va-drivers')
|
|
|
|
|
if "22.04" in platform.version():
|
|
|
|
|
os.system('sudo '+linuxFlag+' '+linuxSystemInstall+' '+linuxSystemInstall_check +
|
|
|
|
|
' install libstdc++-12-dev')
|
|
|
|
|
else:
|
|
|
|
|
os.system('sudo -v')
|
|
|
|
|
os.system('sudo '+linuxFlag+' '+linuxSystemInstall+' '+linuxSystemInstall_check +
|
|
|
|
|
' install libdrm-amdgpu libva-amdgpu-devel mesa-amdgpu-dri-drivers')
|
|
|
|
|
|
|
|
|
|
print("\nrocJPEG Dependencies Installed with rocJPEG-setup.py V-"+__version__+"\n")
|