Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 31 for function_ops (0.18 sec)

  1. tensorflow/cc/BUILD

    )
    
    tf_gen_op_wrappers_cc(
        name = "function_ops",
        include_internal_ops = 1,
        op_lib_names = [
            "function_ops",
        ],
        pkg = "//tensorflow/core",
        visibility = ["//tensorflow:internal"],
    )
    
    tf_gen_op_wrappers_cc(
        name = "functional_ops",
        include_internal_ops = 1,
        op_lib_names = [
            "functional_ops",
        ],
        pkg = "//tensorflow/core",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 27 18:00:18 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/pjrt_compile_util_test.cc

    #if GOOGLE_CUDA || TENSORFLOW_USE_ROCM
    #include "tensorflow/compiler/jit/pjrt_compile_util.h"
    
    #include <gmock/gmock.h>
    #include <gtest/gtest.h>
    #include "tensorflow/cc/framework/scope.h"
    #include "tensorflow/cc/ops/function_ops.h"
    #include "tensorflow/cc/ops/math_ops.h"
    #include "tensorflow/compiler/jit/test_util.h"
    #include "tensorflow/core/framework/device_base.h"
    #include "tensorflow/core/framework/function.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Aug 21 23:21:57 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/xla_device_ops.h

    #include "tensorflow/core/kernels/data/options_dataset_op.h"
    #include "tensorflow/core/kernels/data/prefetch_dataset_op.h"
    #include "tensorflow/core/kernels/fifo_queue.h"
    #include "tensorflow/core/kernels/function_ops.h"
    #include "tensorflow/core/kernels/identity_op.h"
    #include "tensorflow/core/kernels/resource_variable_ops.h"
    #include "tensorflow/core/kernels/shape_ops.h"
    #include "tensorflow/core/kernels/variable_ops.h"
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Nov 23 19:28:25 UTC 2021
    - 17.1K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/rearrange_function_argument_pass_test.cc

    #include "absl/strings/match.h"
    #include "tensorflow/cc/framework/scope.h"
    #include "tensorflow/cc/ops/array_ops.h"
    #include "tensorflow/cc/ops/function_ops.h"
    #include "tensorflow/cc/ops/functional_ops.h"
    #include "tensorflow/cc/ops/standard_ops.h"
    #include "tensorflow/compiler/jit/encapsulate_util.h"
    #include "tensorflow/compiler/tf2xla/rearrange_function_argument.h"
    #include "xla/test.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Feb 09 11:36:41 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  5. tensorflow/compiler/jit/xla_cluster_util_test.cc

    #include "absl/algorithm/container.h"
    #include "absl/strings/str_join.h"
    #include "tensorflow/cc/framework/ops.h"
    #include "tensorflow/cc/ops/control_flow_ops_internal.h"
    #include "tensorflow/cc/ops/function_ops.h"
    #include "tensorflow/cc/ops/functional_ops.h"
    #include "tensorflow/cc/ops/standard_ops.h"
    #include "xla/status_macros.h"
    #include "tensorflow/core/common_runtime/graph_constructor.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 09:53:30 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tf2xla/internal/mlir_bridge_pass_util_test.cc

    #include "mlir/Parser/Parser.h"  // from @llvm-project
    #include "tensorflow/cc/framework/ops.h"
    #include "tensorflow/cc/framework/scope.h"
    #include "tensorflow/cc/ops/array_ops.h"
    #include "tensorflow/cc/ops/function_ops.h"
    #include "tensorflow/cc/ops/tpu_functional_ops.h"
    #include "tensorflow/compiler/mlir/tensorflow/ir/tf_dialect.h"
    #include "tensorflow/compiler/tf2xla/tf2xla_defs.h"
    #include "tensorflow/core/framework/function.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 17 19:51:50 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  7. tensorflow/compiler/jit/compilability_check_util_test.cc

      const auto uncompilable_nodes =
          checker_->FindUncompilableNodes(**if_node_it, flib_runtime);
      ASSERT_EQ(2, uncompilable_nodes.size());
    
      NameAttrList function_one;
      function_one.set_name(kUncompilableFunctionName);
      auto it = uncompilable_nodes.find(function_one.ShortDebugString());
      ASSERT_NE(uncompilable_nodes.end(), it);
    
      const auto& uncompilable_node_list = it->second.second;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jun 10 12:32:39 UTC 2022
    - 22.3K bytes
    - Viewed (0)
  8. tensorflow/compiler/jit/encapsulate_xla_computations_pass_test.cc

          EncapsulateXlaComputationsPass::Encapsulate(&graph_copy, &flib_def));
      std::unordered_map<string, Node*> index_copy =
          graph_copy->BuildNodeNameIndex();
      string function_copy = index_copy.at("launch0")->type_string();
      EXPECT_EQ(function, function_copy);
    }
    
    TEST(EncapsulateXlaComputations, BuildXlaLaunchOp) {
      std::unique_ptr<Graph> body_graph = MakeBodyGraph();
      FunctionDefLibrary flib;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 16 18:03:15 UTC 2023
    - 14.7K bytes
    - Viewed (0)
  9. tensorflow/compiler/jit/resource_operation_safety_analysis_test.cc

    #include "tensorflow/cc/framework/ops.h"
    #include "tensorflow/cc/ops/array_ops.h"
    #include "tensorflow/cc/ops/control_flow_ops_internal.h"
    #include "tensorflow/cc/ops/function_ops.h"
    #include "tensorflow/cc/ops/functional_ops.h"
    #include "tensorflow/cc/ops/resource_variable_ops.h"
    #include "tensorflow/cc/ops/sendrecv_ops.h"
    #include "tensorflow/cc/ops/standard_ops.h"
    #include "tensorflow/compiler/jit/defs.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 28 16:53:59 UTC 2020
    - 18.7K bytes
    - Viewed (0)
  10. tensorflow/compiler/jit/device_compiler_test.cc

    #include <memory>
    #include <optional>
    #include <string>
    #include <utility>
    #include <vector>
    
    #include <gmock/gmock.h>
    #include <gtest/gtest.h>
    #include "tensorflow/cc/framework/scope.h"
    #include "tensorflow/cc/ops/function_ops.h"
    #include "tensorflow/cc/ops/math_ops.h"
    #include "tensorflow/compiler/jit/device_compilation_cluster_signature.h"
    #include "tensorflow/compiler/jit/device_compiler_client.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 19.8K bytes
    - Viewed (0)
Back to top