Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for BuildSelectV2Op (0.56 sec)

  1. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

    }
    
    //===----------------------------------------------------------------------===//
    // SelectV2Op
    //===----------------------------------------------------------------------===//
    
    static void BuildSelectV2Op(Builder* builder, OperationState& result,
                                Value cond, Value x, Value y) {
      auto operand_type =
          OpTrait::util::getBroadcastedType(x.getType(), y.getType());
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 169.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

      let results = (outs
        TFL_TensorOf<[F32, I1, I8, I16, I32, I64, UI32, QI8, QUI8, QI16, TFL_Quint8]>:$output);
    
      let builders = [
        OpBuilder<(ins "Value":$cond, "Value":$x, "Value":$y),
        [{
        BuildSelectV2Op(&$_builder, $_state, cond, x, y);
      }]>];
    
      let hasOptions = 1;
    }
    
    def TFL_SinOp: TFL_Op<"sin", [
        Pure,
        TF_SameOperandsAndResultTypeResolveRef]> {
    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