Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 29 for OP (0.14 sec)

  1. src/cmd/compile/internal/ssa/rewrite386.go

    		v.Op = Op386CVTTSD2SL
    		return true
    	case OpCvt64Fto32F:
    		v.Op = Op386CVTSD2SS
    		return true
    	case OpCvtBoolToUint8:
    		v.Op = OpCopy
    		return true
    	case OpDiv16:
    		v.Op = Op386DIVW
    		return true
    	case OpDiv16u:
    		v.Op = Op386DIVWU
    		return true
    	case OpDiv32:
    		v.Op = Op386DIVL
    		return true
    	case OpDiv32F:
    		v.Op = Op386DIVSS
    		return true
    	case OpDiv32u:
    		v.Op = Op386DIVLU
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 21:05:46 UTC 2023
    - 262.4K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/rewritePPC64.go

    func rewriteValuePPC64(v *Value) bool {
    	switch v.Op {
    	case OpAbs:
    		v.Op = OpPPC64FABS
    		return true
    	case OpAdd16:
    		v.Op = OpPPC64ADD
    		return true
    	case OpAdd32:
    		v.Op = OpPPC64ADD
    		return true
    	case OpAdd32F:
    		v.Op = OpPPC64FADDS
    		return true
    	case OpAdd64:
    		v.Op = OpPPC64ADD
    		return true
    	case OpAdd64F:
    		v.Op = OpPPC64FADD
    		return true
    	case OpAdd8:
    		v.Op = OpPPC64ADD
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 360.2K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/rewriteS390X.go

    		v.Op = OpS390XMULLD
    		return true
    	case OpMul64F:
    		v.Op = OpS390XFMUL
    		return true
    	case OpMul64uhilo:
    		v.Op = OpS390XMLGR
    		return true
    	case OpMul8:
    		v.Op = OpS390XMULLW
    		return true
    	case OpNeg16:
    		v.Op = OpS390XNEGW
    		return true
    	case OpNeg32:
    		v.Op = OpS390XNEGW
    		return true
    	case OpNeg32F:
    		v.Op = OpS390XFNEGS
    		return true
    	case OpNeg64:
    		v.Op = OpS390XNEG
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 18:09:26 UTC 2023
    - 395.1K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

          rewriter.replaceOpWithNewOp<mhlo::GatherOp>(
              op, op.getType(), op.getParams(), op.getIndices(), dims_attr,
              GetI64ElementsAttr(slice_sizes, &rewriter));
        } else {
          rewriter.replaceOpWithNewOp<mhlo::DynamicGatherOp>(
              op, op.getType(), op.getParams(), op.getIndices(), slice_sizes_value,
              dims_attr);
        }
        return success();
      }
    };
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/rewriteARM.go

    		v.Op = OpARMSUBD
    		return true
    	case OpSub8:
    		v.Op = OpARMSUB
    		return true
    	case OpSubPtr:
    		v.Op = OpARMSUB
    		return true
    	case OpTailCall:
    		v.Op = OpARMCALLtail
    		return true
    	case OpTrunc16to8:
    		v.Op = OpCopy
    		return true
    	case OpTrunc32to16:
    		v.Op = OpCopy
    		return true
    	case OpTrunc32to8:
    		v.Op = OpCopy
    		return true
    	case OpWB:
    		v.Op = OpARMLoweredWB
    		return true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 17:19:36 UTC 2023
    - 486.8K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssagen/ssa.go

    			}
    
    			if hasIntrinsic {
    				var op ssa.Op
    				switch {
    				case typ.Kind() == types.TFLOAT64 && n.Op() == ir.OMIN:
    					op = ssa.OpMin64F
    				case typ.Kind() == types.TFLOAT64 && n.Op() == ir.OMAX:
    					op = ssa.OpMax64F
    				case typ.Kind() == types.TFLOAT32 && n.Op() == ir.OMIN:
    					op = ssa.OpMin32F
    				case typ.Kind() == types.TFLOAT32 && n.Op() == ir.OMAX:
    					op = ssa.OpMax32F
    				}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tf2xla/tests/legalize-tf.mlir

    //      issues with the full lowering (can catch some broadcasting corner
    //      cases which emit with a warning).
    
    //===----------------------------------------------------------------------===//
    // BatchNorm op legalizations.
    //===----------------------------------------------------------------------===//
    
    // -----
    
    // fusedBatchNormV2 is almost identical to fusedBatchNormV3 (and uses the same
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 06 18:46:23 UTC 2024
    - 335.5K bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.23.md

    - Kubeadm: remove the `--port` flag from the manifest for the kube-scheduler since the flag has been a NO-OP since 1.23 and insecure serving was removed for the component. ([#105034](https://github.com/kubernetes/k...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 28 21:06:52 UTC 2023
    - 424.5K bytes
    - Viewed (0)
  9. doc/go_spec.html

    </pre>
    
    <p>
    An <i>assignment operation</i> <code>x</code> <i>op</i><code>=</code>
    <code>y</code> where <i>op</i> is a binary <a href="#Arithmetic_operators">arithmetic operator</a>
    is equivalent to <code>x</code> <code>=</code> <code>x</code> <i>op</i>
    <code>(y)</code> but evaluates <code>x</code>
    only once.  The <i>op</i><code>=</code> construct is a single token.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (1)
  10. src/net/http/h2_bundle.go

    	// no-op: idle streams are not tracked
    }
    
    func (ws *http2randomWriteScheduler) CloseStream(streamID uint32) {
    	q, ok := ws.sq[streamID]
    	if !ok {
    		return
    	}
    	delete(ws.sq, streamID)
    	ws.queuePool.put(q)
    }
    
    func (ws *http2randomWriteScheduler) AdjustStream(streamID uint32, priority http2PriorityParam) {
    	// no-op: priorities are ignored
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
Back to top