Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for vsubfp (0.26 sec)

  1. src/html/entity.go

    		"varsupsetneqq;":           {'\u2ACC', '\uFE00'},
    		"vnsub;":                   {'\u2282', '\u20D2'},
    		"vnsup;":                   {'\u2283', '\u20D2'},
    		"vsubnE;":                  {'\u2ACB', '\uFE00'},
    		"vsubne;":                  {'\u228A', '\uFE00'},
    		"vsupnE;":                  {'\u2ACC', '\uFE00'},
    		"vsupne;":                  {'\u228B', '\uFE00'},
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jul 31 22:10:54 UTC 2018
    - 114.3K bytes
    - Viewed (0)
  2. src/cmd/vendor/rsc.io/markdown/entity.go

    	"∝":                           "\u221d",
    	"⊳":                           "\u22b3",
    	"𝓋":                            "\U0001d4cb",
    	"⫋︀":                          "\u2acb\ufe00",
    	"⊊︀":                          "\u228a\ufe00",
    	"⫌︀":                          "\u2acc\ufe00",
    	"⊋︀":                          "\u228b\ufe00",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 101K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

      if (input_ty == result_ty) return getInput();
      return {};
    }
    
    //===----------------------------------------------------------------------===//
    // SubOp
    //===----------------------------------------------------------------------===//
    
    OpFoldResult SubOp::fold(FoldAdaptor adaptor) {
      auto operands = adaptor.getOperands();
      // TODO(b/142478136): Handle fused ops.
      if (getFusedActivationFunction() != "NONE") return {};
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 169.2K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/ppc64/asm9.go

    		v := c.regoff(p.GetFrom3())
    
    		r := int(p.From.Reg)
    		o1 = AOP_IRR(c.opirr(p.As), uint32(p.To.Reg), uint32(r), uint32(v))
    
    	case 28: /* subc r1,$lcon,r2 ==> cau+or+subfc */
    		if p.To.Reg == REGTMP || p.From.Reg == REGTMP {
    			c.ctxt.Diag("can't synthesize large constant\n%v", p)
    		}
    		v := c.vregoff(p.GetFrom3())
    		o1 = AOP_IRR(OP_ADDIS, REGTMP, REGZERO, uint32(v)>>16)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:55:28 UTC 2024
    - 156.1K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_a_m.cc

      // above kind, so that the concat hoisting optimization can still apply.
      if (!exceptions.empty()) {
        int identity_val;
        if (isa<AddOp>(first_arg_op) || isa<SubOp>(first_arg_op))
          identity_val = 0;
        else if (isa<MulOp>(first_arg_op) || isa<DivOp>(first_arg_op) ||
                 isa<RealDivOp>(first_arg_op))
          identity_val = 1;
        else
          return failure();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 146.7K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/arm64/asm7.go

    		rel.Off = int32(c.pc)
    		rel.Siz = 8
    		rel.Sym = p.From.Sym
    		rel.Add = 0
    		rel.Type = objabi.R_ARM64_GOTPCREL
    
    	case 72: /* vaddp/vand/vcmeq/vorr/vadd/veor/vfmla/vfmls/vbit/vbsl/vcmtst/vsub/vbif/vuzip1/vuzip2/vrax1 Vm.<T>, Vn.<T>, Vd.<T> */
    		af := int((p.From.Reg >> 5) & 15)
    		af3 := int((p.Reg >> 5) & 15)
    		at := int((p.To.Reg >> 5) & 15)
    		if af != af3 || af != at {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 201.1K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

    def TFL_SubOp : TFL_Op<"sub", [
        ResultsBroadcastableShape,
        BinaryOpSameElementTypeConstraint,
        TFL_RuntimePredOpTrait<"Operands do not have valid shapes",
          CPred<"TFL::VerifySubOpShapeConstraints(llvm::cast<SubOp>($_op))">>,
        Pure,
        QuantizableResult,
        DeclareOpInterfaceMethods<TFL_ArithmeticCount>]> {
      let summary = "Subtraction operator";
    
      let description = [{
        Element-wise subtraction operation.
    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