Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 820 for more (0.25 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/promote_resources_to_args.cc

    // not `tf.AssignVariableOp`.
    llvm::SmallSet<llvm::StringRef, 1> GetCompositeResourceUserNames(
        Value resource) {
      // SmallSet will use a vector when there is only one element and use std::set
      // when there are more than one elements. This ensures that the operations in
      // the error message are ordered.
      llvm::SmallSet<llvm::StringRef, 1> composite_users;
      for (Operation* user : resource.getUsers())
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

      selected_boxes = tf.gather(boxes, selected_indices)
    This op also supports a Soft-NMS (with Gaussian weighting) mode (c.f.
    Bodla et al, https://arxiv.org/abs/1704.04503) where boxes reduce the score
    of other overlapping boxes instead of directly causing them to be pruned.
    To enable this Soft-NMS mode, set the `soft_nms_sigma` parameter to be
    larger than 0.
      }];
    
      let arguments = (ins
        TFL_FpTensor:$boxes,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  3. tensorflow/c/experimental/gradients/nn_grad.cc

    #include "tensorflow/c/experimental/ops/array_ops.h"
    #include "tensorflow/c/experimental/ops/math_ops.h"
    #include "tensorflow/c/experimental/ops/nn_ops.h"
    #include "tensorflow/core/lib/llvm_rtti/llvm_rtti.h"
    #include "tensorflow/core/platform/errors.h"
    
    using std::vector;
    using tensorflow::ops::BiasAddGrad;
    using tensorflow::ops::ReluGrad;
    
    namespace tensorflow {
    namespace gradients {
    namespace {
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 09 06:38:45 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/python/saved_model_to_tfl_flatbuffer.cc

    #include "tensorflow/compiler/mlir/tensorflow/translate/mlir_roundtrip_flags.h"
    #include "tensorflow/core/framework/graph.pb.h"
    #include "tensorflow/core/framework/graph_debug_info.pb.h"
    #include "tensorflow/core/framework/types.pb.h"
    #include "tensorflow/core/lib/core/errors.h"
    #include "tensorflow/core/platform/status.h"
    #include "tensorflow/core/platform/types.h"
    #include "tensorflow/lite/toco/model_flags.pb.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun May 12 12:39:37 UTC 2024
    - 11K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

    #include "xla/translate/hlo_to_mhlo/hlo_utils.h"
    #include "xla/translate/mhlo_to_hlo/type_to_shape.h"
    #include "xla/window_util.h"
    #include "xla/xla_data.pb.h"
    #include "tensorflow/core/framework/shape_inference.h"
    #include "tensorflow/core/framework/types.pb.h"
    #include "tensorflow/core/ir/types/dialect.h"
    #include "tsl/platform/errors.h"
    
    #define DEBUG_TYPE "tf-shape-inference"
    
    #define DCOMMENT(MSG) LLVM_DEBUG(llvm::dbgs() << MSG << "\n")
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/host_runtime/tpu_rewrite_pass.cc

    #include "xla/xla_data.pb.h"
    #include "tensorflow/core/framework/tensor_shape.h"
    #include "tensorflow/core/framework/tensor_shape.pb.h"
    #include "tensorflow/core/framework/types.pb.h"
    #include "tensorflow/core/lib/core/status.h"
    #include "tensorflow/core/platform/fingerprint.h"
    #include "tensorflow/core/platform/protobuf.h"
    #include "tensorflow/core/protobuf/tpu/compile_metadata.pb.h"
    #include "tensorflow/core/util/device_name_utils.h"
    
    namespace mlir {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 21:25:12 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/tests/tpu_rewrite.mlir

    // Test that SplitOp is not generated when an input sharding has 
    // last_tile_dims REPLICATED and more tile_assignment_dimensions 
    // than tensor dimenstions, even when the SPMD sharding is enabled and
    // num_cores_per_replica is more than 1.
    // Test that ConcatV2 Op is not generated when a output sharding has 
    // last_tile_dims REPLICATED and more tile_assignment_dimensions 
    // than tensor dimenstions, even when the SPMD sharding is enabled and
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 22:03:30 UTC 2024
    - 172.9K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/ir/tf_ops.td

    logical_core attribute correspond to a TPU core. This op maps the TPU core to a
    device_ordinal, where the device ordinal is the index of the core relative to
    its host.
    
    The replicate_to_island pass removes and flattens tf_device.replicate, so it
    converts this op to the constant index of the core relative to its host.
      }];
    
      let arguments = (ins
        I64Attr:$logical_core
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 04:08:35 UTC 2024
    - 90.5K bytes
    - Viewed (0)
  9. tensorflow/compiler/jit/xla_launch_util.cc

    #include "tensorflow/core/framework/types.h"
    #include "tensorflow/core/lib/core/errors.h"
    #include "tensorflow/core/lib/core/refcount.h"
    #include "tensorflow/core/platform/errors.h"
    #include "tensorflow/core/platform/status.h"
    #include "tensorflow/core/platform/statusor.h"
    #include "tensorflow/core/tfrt/common/async_value_tensor.h"
    #include "tensorflow/core/util/stream_executor_util.h"
    #include "tsl/framework/device_id_utils.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 00:36:08 UTC 2024
    - 40.4K bytes
    - Viewed (0)
  10. tensorflow/cc/experimental/libtf/BUILD

            "//tensorflow/core:test_main",
            "//tensorflow/core/platform:path",
            "//tensorflow/core/platform:protobuf",
            "//tensorflow/core/platform:resource_loader",
            "//tensorflow/core/platform:status_matchers",
            "//tensorflow/core/platform:statusor",
        ],
    )
    
    tf_cc_test(
        name = "libtf_tensor_test",
        size = "medium",
        srcs = ["tests/tensor_test.cc"],
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 27 18:00:18 UTC 2024
    - 8.6K bytes
    - Viewed (0)
Back to top