Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 14 of 14 for unsorted_segment_sum (0.4 sec)

  1. 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)
  2. tensorflow/compiler/mlir/lite/schema/schema_generated.h

    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 1M bytes
    - Viewed (0)
  3. 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)
  4. 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)
Back to top