-
Notifications
You must be signed in to change notification settings - Fork 75
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* RPP -updates * codeowners - added * Codeowners - updates * Package - Dependencies
- Loading branch information
1 parent
4b5922e
commit 3e0e7e4
Showing
5 changed files
with
28 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
# Documentation files | ||
docs/* @saadrahim @LisaDelaney @kiritigowda @rrawther | ||
*.md @saadrahim @LisaDelaney @kiritigowda @rrawther | ||
*.rst @saadrahim @LisaDelaney | ||
# Header directory | ||
library/include/* @saadrahim @LisaDelaney @kiritigowda @rrawther | ||
# Source code | ||
@kiritigowda @rrawther |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -30,7 +30,7 @@ | |
__author__ = "Kiriti Nagesh Gowda" | ||
__copyright__ = "Copyright 2018 - 2023, AMD ROCm MIVisionX" | ||
__license__ = "MIT" | ||
__version__ = "2.5.8" | ||
__version__ = "2.6.0" | ||
__maintainer__ = "Kiriti Nagesh Gowda" | ||
__email__ = "[email protected]" | ||
__status__ = "Shipping" | ||
|
@@ -43,8 +43,6 @@ | |
help='OpenCV Version - optional (default:4.6.0)') | ||
parser.add_argument('--protobuf', type=str, default='3.12.4', | ||
help='ProtoBuf Version - optional (default:3.12.4)') | ||
parser.add_argument('--rpp', type=str, default='1.4.0', | ||
help='RPP Version - optional (default:1.4.0)') | ||
parser.add_argument('--pybind11', type=str, default='v2.10.4', | ||
help='PyBind11 Version - optional (default:v2.10.4)') | ||
parser.add_argument('--ffmpeg', type=str, default='ON', | ||
|
@@ -68,7 +66,6 @@ | |
setupDir = args.directory | ||
opencvVersion = args.opencv | ||
ProtoBufVersion = args.protobuf | ||
rppVersion = args.rpp | ||
pybind11Version = args.pybind11 | ||
ffmpegInstall = args.ffmpeg.upper() | ||
neuralNetInstall = args.neural_net.upper() | ||
|
@@ -228,10 +225,12 @@ | |
|
||
if rocalInstall == 'ON': | ||
# RPP | ||
if os.path.exists(deps_dir+'/rpp/build-'+backend): | ||
os.system('sudo -v') | ||
os.system('(cd '+deps_dir+'/rpp/build-'+backend+'; sudo ' + | ||
linuxFlag+' make install -j8)') | ||
if "Ubuntu" in platfromInfo: | ||
os.system('sudo '+linuxFlag+' '+linuxSystemInstall + | ||
' '+linuxSystemInstall_check+' install -y rpp rpp-dev') | ||
else: | ||
os.system('sudo '+linuxFlag+' '+linuxSystemInstall + | ||
' '+linuxSystemInstall_check+' install -y rpp rpp-devel') | ||
|
||
if ffmpegInstall == 'ON': | ||
# FFMPEG | ||
|
@@ -438,8 +437,12 @@ | |
' -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=RELEASE -DENABLE_STATIC=FALSE -DCMAKE_INSTALL_DEFAULT_LIBDIR=lib ..; make -j 4; sudo make install )') | ||
# RPP | ||
os.system('sudo -v') | ||
os.system('(cd '+deps_dir+'; git clone -b '+rppVersion+' https://github.com/ROCm/rpp.git; cd rpp; mkdir build-'+backend+'; cd build-'+backend+'; ' + | ||
linuxCMake+' -DBACKEND='+backend+' -DCMAKE_INSTALL_PREFIX='+ROCM_PATH+' ../; make -j4; sudo make install)') | ||
if "Ubuntu" in platfromInfo: | ||
os.system('sudo '+linuxFlag+' '+linuxSystemInstall + | ||
' '+linuxSystemInstall_check+' install -y rpp rpp-dev') | ||
else: | ||
os.system('sudo '+linuxFlag+' '+linuxSystemInstall + | ||
' '+linuxSystemInstall_check+' install -y rpp rpp-devel') | ||
# RapidJSON | ||
os.system('sudo -v') | ||
os.system('(cd '+deps_dir+'; git clone https://github.com/Tencent/rapidjson.git; cd rapidjson; mkdir build; cd build; ' + | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters