Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for kernel_type (0.17 sec)

  1. tensorflow/compiler/mlir/lite/tests/flatbuffer2mlir/lstm.mlir

    %arg1, %arg2, %arg3, %arg4, %arg5, %arg6, %arg7, %arg8, %arg9, %arg10, %arg11, %arg12, %arg13, %arg14, %arg15, %arg16, %arg17, %cst0, %cst1, %arg18, %arg19, %arg20, %arg21) ({}) {cell_clip = 0.000000e+00 : f32, fused_activation_function = "NONE", kernel_type = #tfl<lstm_kernel_type_attr FULL>, proj_clip = 0.000000e+00 : f32} : (tensor<1x4xf32>, tensor<4x4xf32>, tensor<4x4xf32>, tensor<4x4xf32>, tensor<4x4xf32>, tensor<4x4xf32>, tensor<4x4xf32>, tensor<4x4xf32>, tensor<4x4xf32>, tensor<4xf32>, tensor<4xf32>,...
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/tests/flatbuffer2mlir/basic_lstm.mlir

    // CHECK-LABEL: @main
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/flatbuffer_operator.cc

      mlir::TFL::LSTMKernelType kernel_type;
      switch (value) {
        case tflite::LSTMKernelType_FULL:
          kernel_type = mlir::TFL::LSTMKernelType::FULL;
          break;
        case tflite::LSTMKernelType_BASIC:
          kernel_type = mlir::TFL::LSTMKernelType::BASIC;
          break;
      }
      return mlir::TFL::LSTMKernelTypeAttr::get(builder.getContext(), kernel_type);
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 38K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/tests/ops.mlir

      %0 = "tfl.lstm"(%arg0, %arg1, %arg2, %arg3, %arg4, %arg5, %arg6, %arg7, %arg8, %arg9, %arg10, %arg11, %arg12, %arg13, %arg14, %arg15, %arg16, %arg17, %arg18, %arg19, %arg20, %arg21, %arg22, %arg23) ({}) {cell_clip = 1.000000e+00 : f32, fused_activation_function = "NONE", kernel_type = #tfl<lstm_kernel_type_attr BASIC>} : (tensor<?xf32>,...
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 189.2K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/tests/canonicalize.mlir

         cell_clip = 1.000000e+01 : f32, fused_activation_function = "TANH", kernel_type = #tfl<lstm_kernel_type_attr FULL>, proj_clip = 0.01 : f32
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/schema/schema_v3b.fbs

      cell_clip: float; // Optional, 0.0 means no clipping
      proj_clip: float; // Optional, 0.0 means no clipping
    
      // Parameters for LSTM version 2 or above.
      // Basic kernel is only supported in version 2 or above.
      kernel_type: LSTMKernelType = FULL;
    
      // Parameters for LSTM version 4 or above.
      asymmetric_quantize_inputs: bool;
    }
    
    // An implementation of TensorFlow dynamic_rnn with LSTMCell.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 14:28:27 UTC 2024
    - 30K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/schema/schema.fbs

      cell_clip: float; // Optional, 0.0 means no clipping
      proj_clip: float; // Optional, 0.0 means no clipping
    
      // Parameters for LSTM version 2 or above.
      // Basic kernel is only supported in version 2 or above.
      kernel_type: LSTMKernelType = FULL;
    
      // Parameters for LSTM version 4 or above.
      asymmetric_quantize_inputs: bool;
    }
    
    // An implementation of TensorFlow dynamic_rnn with LSTMCell.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 18:01:23 UTC 2024
    - 41.7K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo.cc

        // Reshape kernel to add a new spatial dimension.
        auto kernel_type = mlir::cast<ShapedType>(conv_op.getRhs().getType());
        SmallVector<int64_t, 4> kernel_2d_shape;
        for (int64_t dim : kernel_type.getShape()) {
          kernel_2d_shape.push_back(dim);
        }
        kernel_2d_shape.push_back(1);
        auto kernel_2d_type =
            RankedTensorType::get(kernel_2d_shape, kernel_type.getElementType());
        auto kernel_2d_op =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 154.9K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

        // precise than the input types, are used for this op.
        Type kernel_type = mlir::cast<TensorType>(scale.getType()).getElementType();
        grad = rewriter.create<ConvertOp>(loc, grad, kernel_type);
        act = rewriter.create<ConvertOp>(loc, act, kernel_type);
    
        tensorflow::TensorFormat data_format;
        if (!FormatFromString(op.getDataFormat().str(), &data_format))
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/tests/prepare-composite-functions-tf.mlir

    // CHECK-SAME:      <{cell_clip = 1.000000e+01 : f32, fused_activation_function = "TANH", kernel_type = #tfl<lstm_kernel_type_attr FULL>, proj_clip = 0.000000e+00 : f32}> ({
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 122.1K bytes
    - Viewed (0)
Back to top