Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 528 for Grappler (0.13 sec)

  1. tensorflow/c/experimental/grappler/BUILD

    )
    
    cc_library(
        name = "grappler_hdrs",
        hdrs = ["grappler.h"],
        visibility = ["//tensorflow:internal"],
        deps = [
            "//tensorflow/c:c_api",
            "//tensorflow/c:c_api_macros",
            "//tensorflow/c:tf_status_headers",
        ],
    )
    
    cc_library(
        name = "grappler",
        srcs = ["grappler.cc"],
        hdrs = [
            "grappler.h",
            "grappler_internal.h",
        ],
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 27 18:00:18 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/translate/upgrade_graph.cc

    #include "tensorflow/core/common_runtime/device_factory.h"
    #include "tensorflow/core/common_runtime/device_mgr.h"
    #include "tensorflow/core/grappler/clusters/virtual_cluster.h"
    #include "tensorflow/core/grappler/grappler_item.h"
    #include "tensorflow/core/grappler/grappler_item_builder.h"
    #include "tensorflow/core/grappler/optimizers/meta_optimizer.h"
    #include "tensorflow/core/protobuf/meta_graph.pb.h"
    
    namespace tensorflow {
    namespace {
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Feb 27 14:33:47 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/translate/BUILD

            "//tensorflow/core/grappler:grappler_item",
            "//tensorflow/core/grappler:grappler_item_builder",
            "//tensorflow/core/grappler/clusters:virtual_cluster",
            "//tensorflow/core/grappler/optimizers:meta_optimizer",
            "//tensorflow/core/protobuf:for_core_protos_cc",
            "@llvm-project//llvm:Support",
        ],
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 22:19:26 UTC 2024
    - 11K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/translate/tf_mlir_translate.cc

        }
        for (const auto& input : specs.inputs) {
          terminal_nodes.push_back(input.first);
        }
        TF_RETURN_IF_ERROR(tensorflow::grappler::SetTransitiveFaninGraph(
            graphdef, &pruned_graph_def, terminal_nodes));
        // TODO(ashwinm): Add a separate utility in grappler utils that abstracts
        // both SetTransitiveFaninGraph and restoring the missing contents from the
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 07 11:51:44 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  5. tensorflow/BUILD

            "//tensorflow/core/grappler/clusters:cluster",
            "//tensorflow/core/grappler/clusters:single_machine",
            "//tensorflow/core/grappler/clusters:virtual_cluster",
            "//tensorflow/core/grappler/costs:graph_memory",
            "//tensorflow/core/grappler/graph_analyzer:graph_analyzer_tool",
            "//tensorflow/core/grappler/optimizers:meta_optimizer",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 16:51:59 UTC 2024
    - 53.5K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tfrt/function/function.h

    struct TfrtFunctionCompileOptions : public TfrtCompileOptions {
      // Currently only SavedModel API inference uses the tpu_fuse_ops option
      TfrtFunctionCompileOptions() {
        tpu_fuse_ops = false;
        // Currently grappler is not correctly applied in the eager execution of TF
        // functions, as it may sometimes remove arguments and results.
        enable_grappler = false;
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 17 04:50:20 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/transforms/fused_kernel_matcher.cc

    // Note: This implements the fusions performed in the old Remapper Grappler
    // pass. That pass has specific cases for GPU and based on different
    // target configurations on both CPU and GPU (Intel MKL, ROCm, etc.). This MLIR
    // pass covers (some of) the general CPU case and at the moment does not account
    // for any target-specific configurations.
    
    // This pass is being ported over from the Grappler Remapper pass based on
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  8. .bazelrc

    ntegration_testing/... -//tensorflow/compiler/tf2tensorrt/... -//tensorflow/core/tpu/... -//tensorflow/lite/... -//tensorflow/tools/toolchains/...  -//tensorflow/go/... -//tensorflow/java/... -//tensorflow/core/grappler/optimizers:auto_mixed_precision_test_cpu -//tensorflow/core/grappler/optimizers:remapper_test_cpu -//tensorflow/core/kernels/image:resize_bicubic_op_test -//tensorflow/compiler/mlir/tfr/examples/customization:test_ops_test -//tensorflow/compiler/mlir/tfr/examples/mnist:mnist_ops_test...
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 17:12:54 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  9. tensorflow/cc/BUILD

            "//tensorflow/cc/saved_model:loader.h",
        ],
    )
    
    filegroup(
        name = "pywrap_required_hdrs",
        srcs = [
            "training/coordinator.h",
        ],
        visibility = ["//tensorflow/python/grappler:__pkg__"],
    )
    
    cc_library(
        name = "gradients",
        srcs = [
            "framework/gradients.cc",
            "framework/while_gradients.cc",
            "framework/while_gradients.h",
        ],
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 27 18:00:18 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  10. RELEASE.md

            summaries will be written, even when `tf.summary.record_if()` is not n
            effect, by returning True tensor if default writer is present.
    *   Grappler:
        *   Disable default Grappler optimization timeout to make the optimization
            pipeline deterministic. This may lead to increased model loading time,
            because time spent in graph optimizations is now unbounded (was 20
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
Back to top