• 大小: 83.54MB
    文件类型: .zip
    金币: 2
    下载: 1 次
    发布日期: 2022-09-22
  • 语言: 其他
  • 标签: bazel  tensor  

资源简介

1、编译tensorflow用到参考,不同版本的tensorflow需要对应一定范围的bazel版本,可参考官方说明: https://tensorflow.google.cn/install/source 2、github用的aws,在国内下载太慢,特下上传以方便国内下载。

资源截图

代码片段和文件信息

# pylint: disable=g-bad-file-header
# pylint: disable=g-direct-third-party-import
#
# Copyright 2017 The Bazel Authors. All rights reserved.
#
# Licensed under the Apache License Version 2.0 (the “License“);
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#    http:#www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing software
# distributed under the License is distributed on an “AS IS“ BASIS
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
“““Creates the Bazel source distribution archive.“““

import contextlib
import os.path
import sys
import zipfile

from src.create_embedded_tools_lib import copy_tar_to_zip
from src.create_embedded_tools_lib import copy_zip_to_zip


def main():
  output_zip = os.path.join(os.getcwd() sys.argv[1])
  input_files = sorted(sys.argv[2:])

  # Copy all the input_files into output_zip.
  # Adding contextlib.closing to be python 2.6 (for centos 6.7) compatible
  with contextlib.closing(
      zipfile.ZipFile(output_zip “w“ zipfile.ZIP_DEFLATED)) as output_zip:

    def _normalize(path):
      return path[2:] if path.startswith(“./“) else path

    for input_file in input_files:
      if input_file.endswith(“.tar“):
        copy_tar_to_zip(output_zip input_file _normalize)
      elif input_file.endswith(“.zip“):
        copy_zip_to_zip(output_zip input_file _normalize)
      else:
        raise Exception(“unknown archive type \“%s\““ % input_file)


if __name__ == “__main__“:
  main()

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     文件        1303  1980-01-01 00:00  AUTHORS
     文件        3091  1980-01-01 00:00  BUILD
     文件      174655  1980-01-01 00:00  CHANGELOG.md
     文件        3205  1980-01-01 00:00  CODEOWNERS
     文件         822  1980-01-01 00:00  CONTRIBUTING.md
     文件        3941  1980-01-01 00:00  CONTRIBUTORS
     文件        1704  1980-01-01 00:00  ISSUE_TEMPLATE.md
     文件       11358  1980-01-01 00:00  LICENSE
     文件        2172  1980-01-01 00:00  README.md
     文件       10993  1980-01-01 00:00  WORKSPACE
     文件        1682  1980-01-01 00:00  combine_distfiles.py
     文件        1408  1980-01-01 00:00  combine_distfiles_to_tar.sh
     文件        3925  1980-01-01 00:00  compile.sh
     文件        1474  1980-01-01 00:00  distdir.bzl
     文件         448  1980-01-01 00:00  examples\BUILD
     文件        2677  1980-01-01 00:00  examples\android\README.md
     文件         695  1980-01-01 00:00  examples\android\java\bazel\AndroidManifest.xml
     文件         645  1980-01-01 00:00  examples\android\java\bazel\BUILD
     文件         139  1980-01-01 00:00  examples\android\java\bazel\Jni.java
     文件         168  1980-01-01 00:00  examples\android\java\bazel\Lib.java
     文件         521  1980-01-01 00:00  examples\android\java\bazel\MainActivity.java
     文件         229  1980-01-01 00:00  examples\android\java\bazel\jni.cc
     文件         407  1980-01-01 00:00  examples\android\java\bazel\jni_dep.cc
     文件          87  1980-01-01 00:00  examples\android\java\bazel\jni_dep.h
     文件         117  1980-01-01 00:00  examples\android\java\bazel\res\values\colors.xml
     文件         185  1980-01-01 00:00  examples\android\java\bazel\res\values\styles.xml
     文件         508  1980-01-01 00:00  examples\cpp\BUILD
     文件          88  1980-01-01 00:00  examples\cpp\README.md
     文件         451  1980-01-01 00:00  examples\cpp\hello-fail.cc
     文件         328  1980-01-01 00:00  examples\cpp\hello-lib.cc
     文件         365  1980-01-01 00:00  examples\cpp\hello-lib.h
............此处省略10345个文件信息

评论

共有 条评论