afc968adbfb1b7e134c14282a8ecc7d39552a149,perfkitbenchmarker/linux_packages/tensorflow.py,,Install,#Any#,81

Before Change


                    FLAGS.tf_cpu_pip_package)

  if has_gpu:
    vm.Install("cuda_toolkit")
    vm.Install("cudnn")

  vm.Install("pip")
  vm.RemoteCommand("sudo pip install requests")

After Change


                    FLAGS.tf_cpu_pip_package)

  if has_gpu:
    vm.Install("cuda_toolkit")
    vm.Install("cudnn")

    // TODO(ferneyhough): Move NCCL installation to its own package.
    // Currently this is dependent on CUDA 9 being installed.
    vm.RemoteCommand("wget %s" % NCCL_URL)
    vm.RemoteCommand("sudo dpkg -i %s" % NCCL_PACKAGE)
    vm.RemoteCommand("sudo apt install libnccl2=2.3.5-2+cuda9.0 "
                     "libnccl-dev=2.3.5-2+cuda9.0")

  vm.Install("pip")
  vm.RemoteCommand("sudo pip install requests")
  vm.RemoteCommand("sudo pip install --upgrade absl-py")
Italian Trulli
In pattern: SUPERPATTERN

Frequency: 3

Non-data size: 3

Instances


Project Name: GoogleCloudPlatform/PerfKitBenchmarker
Commit Name: afc968adbfb1b7e134c14282a8ecc7d39552a149
Time: 2018-12-03
Author: ferneyhough@google.com
File Name: perfkitbenchmarker/linux_packages/tensorflow.py
Class Name:
Method Name: Install


Project Name: GoogleCloudPlatform/PerfKitBenchmarker
Commit Name: 6ca76b91a8471c45e692ff2d2ccee2c26ae1441a
Time: 2020-07-08
Author: p3rf@google.com
File Name: perfkitbenchmarker/linux_benchmarks/horovod_benchmark.py
Class Name:
Method Name: _PrepareHorovod


Project Name: GoogleCloudPlatform/PerfKitBenchmarker
Commit Name: 055540e2fb2f157c4b0021e15f61b35e1950160e
Time: 2017-02-23
Author: yuyanting@google.com
File Name: perfkitbenchmarker/linux_packages/fio.py
Class Name:
Method Name: _Install