Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for ReverseSequence (0.21 sec)

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

     AddN 1
     Const 1
     MatMul 2
     Mul 1
     Reshape 3
     Sum 1
     Transpose 1
    cluster 4 size 11
     ConcatOffset 1
     Const 4
     ReverseSequence 1
     Slice 2
     Transpose 3
    cluster 5 size 21
     All 1
     ConcatV2 1
     Const 11
     Equal 1
     ExpandDims 1
     ReverseSequence 1
     Shape 1
     StridedSlice 1
     Transpose 3
    cluster 6 size 11
     Cast 1
     Const 5
     GatherV2 1
     Shape 1
     StridedSlice 1
    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/framework/fuzzing/op_fuzzing.bzl

    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Nov 07 19:14:57 UTC 2022
    - 4.3K bytes
    - Viewed (0)
  3. tensorflow/cc/gradients/array_grad.cc

      TF_RETURN_IF_ERROR(GetNodeAttr(op.node()->attrs(), "seq_dim", &seq_dim));
      grad_outputs->push_back(
          ReverseSequence(scope, grad_inputs[0], seq_lengths, seq_dim,
                          ReverseSequence::BatchDim(batch_dim)));
      grad_outputs->push_back(NoGradient());
      return scope.status();
    }
    REGISTER_GRADIENT_OP("ReverseSequence", ReverseSequenceGrad);
    
    Status ReverseGrad(const Scope& scope, const Operation& op,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 10 23:33:32 UTC 2023
    - 31.7K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tf2xla/tests/legalize-tf-with-tf2xla-hlo-importer.mlir

      }
    
      // CHECK-LABEL: reverse_sequence
      func.func @reverse_sequence(%arg0: tensor<4x2x3x1x1xi32>, %arg1: tensor<3xi32>) -> tensor<4x2x3x1x1xi32> {
        // CHECK-NOT: tf.ReverseSequence
        %0 = "tf.ReverseSequence"(%arg0, %arg1) {batch_dim = 2 : i64, seq_dim = 0 : i64}: (tensor<4x2x3x1x1xi32>, tensor<3xi32>) -> tensor<4x2x3x1x1xi32>
        func.return %0 : tensor<4x2x3x1x1xi32>
      }
    
      // CHECK-LABEL: mirror_pad
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 06 15:32:52 UTC 2024
    - 38.6K bytes
    - Viewed (0)
  5. tensorflow/cc/gradients/array_grad_test.cc

      TensorShape shape({5, 2, 5});
      auto x = Placeholder(scope_, DT_FLOAT, Placeholder::Shape(shape));
      auto seq_lengths = Const(scope_, {1, 2, 3, 4, 5});
      // batch_dim defaults to 0.
      auto y = ReverseSequence(scope_, x, seq_lengths, /* seq_dim */ 2);
      RunTest(x, shape, y, shape);
    }
    
    TEST_F(ArrayGradTest, ReverseGrad) {
      TensorShape shape({5, 2, 5});
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 10 23:33:32 UTC 2023
    - 19.3K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/tests/legalize-tf.mlir

    }
    
    func.func @ReverseSequence(%arg0: tensor<2x3xf32>, %arg1: tensor<2xi32>) -> tensor<2x3xf32> {
      %0 = "tf.ReverseSequence"(%arg0, %arg1) {seq_dim = 0 : i64, batch_dim = 0 : i64}: (tensor<2x3xf32>, tensor<2xi32>) -> tensor<2x3xf32>
      func.return %0: tensor<2x3xf32>
    
    // CHECK-LABEL: ReverseSequence
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 05 01:54:33 UTC 2024
    - 153.4K bytes
    - Viewed (0)
  7. 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)
  8. RELEASE.md

    *   Fixes a floating point division by 0 when executing convolution operators
        ([CVE-2022-21725](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-21725))
    *   Fixes a heap OOB read in shape inference for `ReverseSequence`
        ([CVE-2022-21728](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-21728))
    *   Fixes a heap OOB access in `Dequantize`
        ([CVE-2022-21726](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-21726))
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

      );
    
      TF_DerivedOperandTypeAttr T = TF_DerivedOperandTypeAttr<0>;
    }
    
    def TF_ReverseSequenceOp : TF_Op<"ReverseSequence", [Pure]> {
      let summary = "Reverses variable length slices.";
    
      let description = [{
    This op first slices `input` along the dimension `batch_dim`, and for each
    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