Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for GetFcOutput (0.1 sec)

  1. tensorflow/compiler/mlir/lite/transforms/optimize_patterns.td

       (HasOneUse $mul_out),
       (HasOneUse $add_out),
       (HasOneUse $erf_out),
       (HasOneUse $mul_out1),
      ]>;
    
    // Fetches the output of FC op, from the provided arguments.
    def GetFcOutput : NativeCodeCall<
      "GetFcOutput(&$_builder, $0, $1, $2, $3, $4, $5, $6, $7)">;
    
    // Verifies all values in the provided argument are zero.
    def AllValuesAreZero :  Constraint<CPred<"AllValuesAreZero($0)">>;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 20:31:41 UTC 2024
    - 66.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/transforms/optimize.cc

                                        value_type.getDimSize(0)};
      return value_type.clone(new_shape);
    }
    
    // Creates FullyConnected op from params and returns the output.
    mlir::Value GetFcOutput(OpBuilder *builder,
                            ::mlir::Operation::result_range result, Value input,
                            Value filter, Value bias,
                            StringAttr fused_activation_function,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 00:40:15 UTC 2024
    - 102.3K bytes
    - Viewed (0)
Back to top