Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for UnidirectionalSequenceRnn (0.33 sec)

  1. tensorflow/compiler/mlir/lite/transforms/legalize_tf.cc

        if (op->getNumOperands() != 5) {
          op->emitError()
              << "We're expecting 5 inputs for UnidirectionalSequenceRNN, only "
              << op->getNumOperands() << " provided";
          return failure();
        }
    
        if (op->getNumResults() != 2) {
          op->emitError()
              << "We're expecting 2 inputs for UnidirectionalSequenceRNN, only "
              << op->getNumResults() << " found";
          return failure();
        }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 20 20:06:54 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/python/tf_tfl_flatbuffer_helpers.cc

        "'LastState' type: DT_FLOAT } output_arg: { name: 'Output' type: DT_FLOAT} "
        "attr : { name: '_tflite_input_indices' type: 'list(int)'}";
    
    constexpr mlir::StringRef kUnidirectionalSequenceRnnOp =
        "name: 'UnidirectionalSequenceRnn' input_arg: {name: 'Input' type: "
        "DT_FLOAT} input_arg: { name: 'Weights' type: DT_FLOAT } "
        "input_arg: { name: 'RecurrentWeights' type: DT_FLOAT } input_arg: { "
        "name: 'Bias' type: DT_FLOAT} "
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun May 12 12:39:37 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/tests/legalize-tf.mlir

      %3 = "tf.Const"() {device = "", dtype = f32, value = dense<0.000000e+00>: tensor<1x28xf32>} : () -> tensor<1x28xf32>
      %4:2 = "tf.UnidirectionalSequenceRnn"(%arg, %1, %1, %2, %3) {_tflite_input_indices = [0, 1, 2, 3, 4], device = ""} : (tensor<28x1x28xf32>, tensor<28x28xf32>, tensor<28x28xf32>, tensor<28xf32>, tensor<1x28xf32>) -> (tensor<*xf32>, tensor<28x1x28xf32>)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 05 01:54:33 UTC 2024
    - 153.4K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

          return {1,  2,  3,  4,  5,  6,  7,  8,  9,  10, 11, 16, 18, 19, 20, 21,
                  22, 23, 24, 25, 26, 27, 28, 33, 40, 41, 42, 43, 44, 45, 46, 47};
        }
      }];
    }
    
    // UnidirectionalSequenceRNN op.
    def TFL_UnidirectionalSequenceRNNOp : TFL_Op<"unidirectional_sequence_rnn", [
        TFL_OperandHasRank<4, 2>,
        PredOpTrait<"input and output must have same element type",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
Back to top