Skip to content

Commit

Permalink
RHOAIENG-11087 Fix: Remove install of package in bootstrapper as pre-…
Browse files Browse the repository at this point in the history
…installed

Signed-off-by: Harshad Reddy Nalla <hnalla@redhat.com>
  • Loading branch information
harshad16 committed Aug 8, 2024
1 parent ae4e01f commit 53d057a
Show file tree
Hide file tree
Showing 10 changed files with 1 addition and 11 deletions.
1 change: 0 additions & 1 deletion runtimes/datascience/ubi8-python-3.8/utils/bootstrapper.py
Original file line number Diff line number Diff line change
Expand Up @@ -750,7 +750,6 @@ def main():
input_params = OpUtil.parse_arguments(sys.argv[1:])
OpUtil.log_operation_info("starting operation")
t0 = time.time()
OpUtil.package_install(user_volume_path=input_params.get("user-volume-path"))

# Create the appropriate instance, process dependencies and execute the operation
file_op = FileOpBase.get_instance(**input_params)
Expand Down
1 change: 0 additions & 1 deletion runtimes/datascience/ubi9-python-3.9/utils/bootstrapper.py
Original file line number Diff line number Diff line change
Expand Up @@ -750,7 +750,6 @@ def main():
input_params = OpUtil.parse_arguments(sys.argv[1:])
OpUtil.log_operation_info("starting operation")
t0 = time.time()
OpUtil.package_install(user_volume_path=input_params.get("user-volume-path"))

# Create the appropriate instance, process dependencies and execute the operation
file_op = FileOpBase.get_instance(**input_params)
Expand Down
1 change: 0 additions & 1 deletion runtimes/minimal/ubi8-python-3.8/utils/bootstrapper.py
Original file line number Diff line number Diff line change
Expand Up @@ -750,7 +750,6 @@ def main():
input_params = OpUtil.parse_arguments(sys.argv[1:])
OpUtil.log_operation_info("starting operation")
t0 = time.time()
OpUtil.package_install(user_volume_path=input_params.get("user-volume-path"))

# Create the appropriate instance, process dependencies and execute the operation
file_op = FileOpBase.get_instance(**input_params)
Expand Down
1 change: 0 additions & 1 deletion runtimes/minimal/ubi9-python-3.9/utils/bootstrapper.py
Original file line number Diff line number Diff line change
Expand Up @@ -750,7 +750,6 @@ def main():
input_params = OpUtil.parse_arguments(sys.argv[1:])
OpUtil.log_operation_info("starting operation")
t0 = time.time()
OpUtil.package_install(user_volume_path=input_params.get("user-volume-path"))

# Create the appropriate instance, process dependencies and execute the operation
file_op = FileOpBase.get_instance(**input_params)
Expand Down
1 change: 0 additions & 1 deletion runtimes/pytorch/ubi8-python-3.8/utils/bootstrapper.py
Original file line number Diff line number Diff line change
Expand Up @@ -750,7 +750,6 @@ def main():
input_params = OpUtil.parse_arguments(sys.argv[1:])
OpUtil.log_operation_info("starting operation")
t0 = time.time()
OpUtil.package_install(user_volume_path=input_params.get("user-volume-path"))

# Create the appropriate instance, process dependencies and execute the operation
file_op = FileOpBase.get_instance(**input_params)
Expand Down
1 change: 0 additions & 1 deletion runtimes/pytorch/ubi9-python-3.9/utils/bootstrapper.py
Original file line number Diff line number Diff line change
Expand Up @@ -750,7 +750,6 @@ def main():
input_params = OpUtil.parse_arguments(sys.argv[1:])
OpUtil.log_operation_info("starting operation")
t0 = time.time()
OpUtil.package_install(user_volume_path=input_params.get("user-volume-path"))

# Create the appropriate instance, process dependencies and execute the operation
file_op = FileOpBase.get_instance(**input_params)
Expand Down
3 changes: 1 addition & 2 deletions runtimes/rocm-pytorch/ubi9-python-3.9/utils/bootstrapper.py
Original file line number Diff line number Diff line change
Expand Up @@ -750,8 +750,7 @@ def main():
input_params = OpUtil.parse_arguments(sys.argv[1:])
OpUtil.log_operation_info("starting operation")
t0 = time.time()
OpUtil.package_install(user_volume_path=input_params.get("user-volume-path"))


# Create the appropriate instance, process dependencies and execute the operation
file_op = FileOpBase.get_instance(**input_params)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -750,7 +750,6 @@ def main():
input_params = OpUtil.parse_arguments(sys.argv[1:])
OpUtil.log_operation_info("starting operation")
t0 = time.time()
OpUtil.package_install(user_volume_path=input_params.get("user-volume-path"))

# Create the appropriate instance, process dependencies and execute the operation
file_op = FileOpBase.get_instance(**input_params)
Expand Down
1 change: 0 additions & 1 deletion runtimes/tensorflow/ubi8-python-3.8/utils/bootstrapper.py
Original file line number Diff line number Diff line change
Expand Up @@ -750,7 +750,6 @@ def main():
input_params = OpUtil.parse_arguments(sys.argv[1:])
OpUtil.log_operation_info("starting operation")
t0 = time.time()
OpUtil.package_install(user_volume_path=input_params.get("user-volume-path"))

# Create the appropriate instance, process dependencies and execute the operation
file_op = FileOpBase.get_instance(**input_params)
Expand Down
1 change: 0 additions & 1 deletion runtimes/tensorflow/ubi9-python-3.9/utils/bootstrapper.py
Original file line number Diff line number Diff line change
Expand Up @@ -750,7 +750,6 @@ def main():
input_params = OpUtil.parse_arguments(sys.argv[1:])
OpUtil.log_operation_info("starting operation")
t0 = time.time()
OpUtil.package_install(user_volume_path=input_params.get("user-volume-path"))

# Create the appropriate instance, process dependencies and execute the operation
file_op = FileOpBase.get_instance(**input_params)
Expand Down

0 comments on commit 53d057a

Please sign in to comment.