Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for tensorflow_framework (0.26 sec)

  1. tensorflow/cc/saved_model/BUILD

            "testdata/CyclicModule/**",
            "testdata/VarsAndArithmeticObjectGraph/**",
            "testdata/fuzz_generated/**",
        ]),
    )
    
    # Linked directly into ":tensorflow_framework".
    cc_library(
        name = "metrics_impl",
        srcs = [
            "metrics.cc",
            "metrics.h",
        ],
        visibility = [
            "//tensorflow:__pkg__",
            "//tensorflow/python:__pkg__",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 05:43:44 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  2. tensorflow/BUILD

    # projects building with Bazel and importing TensorFlow as a dependency will not
    # depend on libtensorflow_framework.so unless they opt in.
    tf_cc_shared_library(
        name = "tensorflow_framework",
        additional_linker_inputs = [
            "//tensorflow:tf_framework_version_script.lds",
            "//tensorflow:tf_private_symbols.lds",
        ],
        framework_so = [],
        linkopts = select({
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 16:51:59 UTC 2024
    - 53.5K bytes
    - Viewed (0)
  3. tensorflow/c/generate-pc.sh

    includedir=\${prefix}/include/tensorflow
    
    Name: TensorFlow
    Version: ${TF_VERSION}
    Description: Library for computation using data flow graphs for scalable machine learning
    Requires:
    Libs: -L\${libdir} -ltensorflow -ltensorflow_framework
    Cflags: -I\${includedir}
    EOF
    
    cat << EOF > tensorflow_cc.pc
    prefix=${TF_PREFIX}
    exec_prefix=\${prefix}
    libdir=\${exec_prefix}/${LIBDIR}
    includedir=\${prefix}/include/tensorflow
    
    Name: TensorFlow
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun Aug 04 07:01:14 UTC 2019
    - 2.7K bytes
    - Viewed (0)
Back to top