Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for kernel_type (0.1 sec)

  1. 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)
  2. 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)
  3. 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)
  4. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

        ConfinedAttr<
          DefaultValuedOptionalAttr<TFL_LSTMKernelTypeAttr, "mlir::TFL::LSTMKernelType::BASIC">,
          [TFL_LSTMKernelTypeEqualsTo<"mlir::TFL::LSTMKernelType::BASIC">]>:$kernel_type
      );
    
      let hasOptions = 1;
    
      let results = (outs TFL_2DTensorOf<[F32, QUI8]>:$activ_output,
                          TFL_2DTensorOf<[F32, QUI16]>:$state_output,
    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