Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for UnsortedSegmentSum (0.43 sec)

  1. tensorflow/compiler/jit/tests/opens2s_gnmt_mixed_precision.golden_summary

    cluster 29 size 9
     Add 1
     Mul 2
     RealDiv 2
     Sqrt 2
     Sub 2
    cluster 30 size 9
     Add 1
     Mul 2
     RealDiv 2
     Sqrt 2
     Sub 2
    cluster 31 size 4
     Mul 3
     UnsortedSegmentSum 1
    cluster 32 size 4
     Mul 3
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jan 06 10:38:14 UTC 2023
    - 5K bytes
    - Viewed (0)
  2. tensorflow/cc/gradients/math_grad.cc

                                  std::vector<Output>* grad_outputs) {
      if (op.num_inputs() != 3) {
        return errors::InvalidArgument("UnsortedSegmentSum requires 3 arguments");
      }
    
      if (grad_inputs.size() != 1) {
        return errors::InvalidArgument(
            "UnsortedSegmentSum grad requires 1 grad input");
      }
    
      auto zero_clipped_indices = GetZeroClippedIndices(scope, op.input(1));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Aug 25 18:20:20 UTC 2023
    - 50.7K bytes
    - Viewed (0)
  3. tensorflow/cc/gradients/math_grad_test.cc

    using ops::RealDiv;
    using ops::SegmentSum;
    using ops::SelectV2;
    using ops::SquaredDifference;
    using ops::Sub;
    using ops::Sum;
    using ops::UnsortedSegmentMax;
    using ops::UnsortedSegmentMin;
    using ops::UnsortedSegmentSum;
    using ops::Where3;
    
    // TODO(andydavis) Test gradient function against numeric gradients output.
    // TODO(andydavis) As more gradients are added move common test functions
    // to a testutil library.
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Aug 25 18:20:20 UTC 2023
    - 36K bytes
    - Viewed (0)
  4. tensorflow/cc/gradients/array_grad.cc

        values = Reshape(scope, values, flat_values_shape);
      }
    
      indices = Reshape(scope, indices, indices_size);
      Output params_grad =
          UnsortedSegmentSum(scope, values, indices, gather_dim_size);
    
      if (batch_dims != 0) {
        // Put back the batch dimensions.
        params_grad = Reshape(scope, params_grad, params_shape);
      }
      return params_grad;
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 10 23:33:32 UTC 2023
    - 31.7K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/tests/legalize-tf.mlir

    }
    
    // -----
    
    func.func @unsorted_segment_sum(%arg0: tensor<8xf32>, %arg1: tensor<8xi32>) -> tensor<8xf32> {
      %num_segments = "tf.Const"() {value = dense<8> : tensor<i32>} : () -> tensor<i32>
      %0 = "tf.UnsortedSegmentSum"(%arg0, %arg1, %num_segments) : (tensor<8xf32>, tensor<8xi32>, tensor<i32>) -> tensor<8xf32>
      func.return %0 : tensor<8xf32>
      // CHECK-LABEL: unsorted_segment_sum
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 05 01:54:33 UTC 2024
    - 153.4K bytes
    - Viewed (0)
  6. tensorflow/compiler/jit/mark_for_compilation_pass.cc

    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/tests/tf-ops.mlir

    func.func @unsortedSegmentReduction(%data: tensor<7x10x8xf32>, %segment_ids: tensor<7x10x8x1xi32>, %num_segments: tensor<i32>) {
      // expected-error @+1 {{requires segment ids rank to be less than or equal to data's rank}}
      %0 = "tf.UnsortedSegmentSum"(%data, %segment_ids, %num_segments) : (tensor<7x10x8xf32>, tensor<7x10x8x1xi32>, tensor<i32>) -> (tensor<?x8xf32>)
      func.return
    }
    
    // -----
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 23 14:40:35 UTC 2023
    - 236.4K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

    }
    
    def TFL_UnsortedSegmentSumOp: TFL_Op<"unsorted_segment_sum", [
        Pure, PredOpTrait<"input and output must have same element type",
          TFL_TCresVTEtIsSameAsOp<0, 0>>]> {
    
      let summary = "UnsortedSegmentSum operator";
    
      let description = [{
        From a tensor segmentation, computes the `output` resulting from
        summing together elements mapped to the same segment_id. I.e. `output[i]` is
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tf2xla/tests/legalize-tf.mlir

      // CHECK:   mhlo.return [[ADD]]
      // CHECK-NEXT: (tensor<4x64xf32>, tensor<8x16xi32>, tensor<8x16x64xf32>) -> tensor<4x64xf32>
      // CHECK: return [[SCATTER]]
      %0 = "tf.UnsortedSegmentSum"(%data, %segment_ids, %num_segments) : (tensor<8x16x64xf32>, tensor<8x16xi32>, tensor<i32>) -> (tensor<4x64xf32>)
      func.return %0: tensor<4x64xf32>
    }
    
    // -----
    
    // CHECK-LABEL: @unsorted_segment_prod
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 06 18:46:23 UTC 2024
    - 335.5K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

      TF_DerivedOperandTypeAttr Tnumsegments = TF_DerivedOperandTypeAttr<2>;
    
      let hasVerifier = 1;
    }
    
    def TF_UnsortedSegmentSumOp : TF_Op<"UnsortedSegmentSum", [Pure]> {
      let summary = "Computes the sum along segments of a tensor.";
    
      let description = [{
    Read
    [the section on segmentation](https://tensorflow.org/api_docs/python/tf/math#Segmentation)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
Back to top