Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 55 of 55 for External (0.33 sec)

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

    // Code generated from _gen/S390X.rules using 'go generate'; DO NOT EDIT.
    
    package ssa
    
    import "math"
    import "cmd/compile/internal/types"
    import "cmd/internal/obj/s390x"
    
    func rewriteValueS390X(v *Value) bool {
    	switch v.Op {
    	case OpAdd16:
    		v.Op = OpS390XADDW
    		return true
    	case OpAdd32:
    		v.Op = OpS390XADDW
    		return true
    	case OpAdd32F:
    		return rewriteValueS390X_OpAdd32F(v)
    	case OpAdd64:
    		v.Op = OpS390XADD
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 18:09:26 UTC 2023
    - 395.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

    // range for all other dimensions. Each slice is then reshaped to drop the
    // dimension to unpack (which is always of size 1).
    // TODO(antiagainst): consider changing this into a TF internal lowering pass.
    class ConvertUnpackOp : public OpRewritePattern<TF::UnpackOp> {
     public:
      using OpRewritePattern::OpRewritePattern;
    
      LogicalResult matchAndRewrite(TF::UnpackOp op,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/rewriteARM.go

    // Code generated from _gen/ARM.rules using 'go generate'; DO NOT EDIT.
    
    package ssa
    
    import "internal/buildcfg"
    import "cmd/compile/internal/types"
    
    func rewriteValueARM(v *Value) bool {
    	switch v.Op {
    	case OpARMADC:
    		return rewriteValueARM_OpARMADC(v)
    	case OpARMADCconst:
    		return rewriteValueARM_OpARMADCconst(v)
    	case OpARMADCshiftLL:
    		return rewriteValueARM_OpARMADCshiftLL(v)
    	case OpARMADCshiftLLreg:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 17:19:36 UTC 2023
    - 486.8K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/rewrite386.go

    // Code generated from _gen/386.rules using 'go generate'; DO NOT EDIT.
    
    package ssa
    
    import "math"
    import "cmd/compile/internal/types"
    
    func rewriteValue386(v *Value) bool {
    	switch v.Op {
    	case Op386ADCL:
    		return rewriteValue386_Op386ADCL(v)
    	case Op386ADDL:
    		return rewriteValue386_Op386ADDL(v)
    	case Op386ADDLcarry:
    		return rewriteValue386_Op386ADDLcarry(v)
    	case Op386ADDLconst:
    		return rewriteValue386_Op386ADDLconst(v)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 21:05:46 UTC 2023
    - 262.4K bytes
    - Viewed (0)
  5. doc/go_spec.html

    complex, or string constant.
    </p>
    
    <p>
    Implementation restriction: Although numeric constants have arbitrary
    precision in the language, a compiler may implement them using an
    internal representation with limited precision.  That said, every
    implementation must:
    </p>
    
    <ul>
    	<li>Represent integer constants with at least 256 bits.</li>
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (0)
Back to top