コード例 #1
0
    def _setup(self):
        """Download data and checkout git repository."""
        # Set up the raid array.
        start_time = time.time()
        device_utils.create_drive_from_devices('/data',
                                               self.config.gce_nvme_raid_str)
        self.benchmark_execution_time['create_drive'] = time.time(
        ) - start_time

        start_time = time.time()
        utils.download_from_gcs([{
            'gcs_url':
            'gs://tf-performance/auth_tokens',
            'local_path':
            os.path.join(self.workspace_dir, 'auth_tokens')
        }])
        self.benchmark_execution_time['download_token'] = time.time(
        ) - start_time

        # Acticate gcloud service
        start_time = time.time()
        utils.setup_python_path(self.site_packages_dir,
                                self.config.python_path_str)
        utils.active_gcloud_service(self.auth_token_path)
        utils.make_dir_if_not_exist(self.output_root_dir)
        self.benchmark_execution_time['activate_gcloud_service'] = time.time(
        ) - start_time

        # Download data
        start_time = time.time()
        utils.download_from_gcs(self.config.get_gcs_downloads('/data'))
        self.benchmark_execution_time['download_data'] = time.time(
        ) - start_time

        # Checkout git repositories
        start_time = time.time()
        site_package_info = utils.checkout_git_repos(
            self.config.get_git_repos(self.site_packages_dir),
            self.config.force_update)
        self.benchmark_execution_time['checkout_repository'] = time.time(
        ) - start_time

        self.stream_handler = logging.StreamHandler(sys.stdout)
        self.stream_handler.setFormatter(
            logging.Formatter('%(asctime)s %(levelname)s: %(message)s'))
        logging.getLogger().addHandler(self.stream_handler)
        return site_package_info
コード例 #2
0
    setup_execution_time = {}
    project_dir = os.path.abspath(os.path.dirname(os.path.dirname(__file__)))
    workspace_dir = os.path.join(project_dir, FLAGS.workspace)

    # Download gcloud auth token. Remove this operation in the future when
    # docker in Kokoro can accesss the GCP metadata server
    start_time = time.time()
    utils.active_gcloud_service(FLAGS.gcloud_key_file_url,
                                workspace_dir,
                                download_only=True)
    setup_execution_time['download_token'] = time.time() - start_time

    # Set up the raid array.
    start_time = time.time()
    device_utils.create_drive_from_devices(FLAGS.root_data_dir,
                                           FLAGS.gce_nvme_raid)
    setup_execution_time['create_drive'] = time.time() - start_time

    # Create docker image
    start_time = time.time()
    dockerfile_path = FLAGS.dockerfile_path
    if not os.path.exists(dockerfile_path):
        # Fall back to the deprecated approach if the user-specified
        # dockerfile_path does not exist
        dockerfile_path = os.path.join(project_dir, FLAGS.dockerfile_path)
    docker_tag = 'perfzero/tensorflow'
    if FLAGS.tensorflow_pip_spec:
        cmd = 'docker build --no-cache --pull -t {} --build-arg tensorflow_pip_spec={} - < {}'.format(  # pylint: disable=line-too-long
            docker_tag, FLAGS.tensorflow_pip_spec, dockerfile_path)
    else:
        cmd = 'docker build --no-cache --pull -t {} - < {}'.format(docker_tag, dockerfile_path)  # pylint: disable=line-too-long
コード例 #3
0
                      level=logging.DEBUG)
  if unparsed:
    logging.warning('Arguments %s are not recognized', unparsed)

  setup_execution_time = {}
  project_dir = os.path.abspath(os.path.dirname(os.path.dirname(__file__)))
  workspace_dir = os.path.join(project_dir, FLAGS.workspace)

  # Download gcloud auth token. Remove this operation in the future when
  # docker in Kokoro can accesss the GCP metadata server
  start_time = time.time()
  utils.active_gcloud_service(FLAGS.gcloud_key_file_url, workspace_dir, download_only=True)  # pylint: disable=line-too-long
  setup_execution_time['download_token'] = time.time() - start_time

  # Set up the raid array.
  start_time = time.time()
  device_utils.create_drive_from_devices(FLAGS.root_data_dir, FLAGS.gce_nvme_raid)  # pylint: disable=line-too-long
  setup_execution_time['create_drive'] = time.time() - start_time

  # Create docker image
  start_time = time.time()
  dockerfile_path = os.path.join(project_dir, FLAGS.dockerfile_path)
  docker_tag = 'temp/tf-gpu'
  cmd = 'docker build --pull -t {} - < {}'.format(docker_tag, dockerfile_path)
  utils.run_commands([cmd])
  logging.info('Built docker image with tag %s', docker_tag)
  setup_execution_time['build_docker'] = time.time() - start_time

  logging.info('Setup time in seconds by operation:\n %s',
               json.dumps(setup_execution_time, indent=2))