Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for FUNC (0.33 sec)

  1. pkg/apis/core/validation/validation_test.go

    	key   string
    	value string
    }
    
    func line() string {
    	_, _, line, ok := runtime.Caller(1)
    	var s string
    	if ok {
    		s = fmt.Sprintf("%d", line)
    	} else {
    		s = "<??>"
    	}
    	return s
    }
    
    func prettyErrorList(errs field.ErrorList) string {
    	var s string
    	for _, e := range errs {
    		s += fmt.Sprintf("\t%s\n", e)
    	}
    	return s
    }
    
    func newHostPathType(pathType string) *core.HostPathType {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 857.7K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/rewriteARM64.go

    			y := v_1.Args[1]
    			x := v_1.Args[0]
    			if !(a.Block.Func.useFMA(v)) {
    				continue
    			}
    			v.reset(OpARM64FMSUBD)
    			v.AddArg3(a, x, y)
    			return true
    		}
    		break
    	}
    	return false
    }
    func rewriteValueARM64_OpARM64FADDS(v *Value) bool {
    	v_1 := v.Args[1]
    	v_0 := v.Args[0]
    	// match: (FADDS a (FMULS x y))
    	// cond: a.Block.Func.useFMA(v)
    	// result: (FMADDS a x y)
    	for {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 608.6K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/rewritegeneric.go

    		v1.AuxInt = int64ToAuxInt(0)
    		v.AddArg3(v0, v1, v1)
    		return true
    	}
    	return false
    }
    func rewriteValuegeneric_OpConstString(v *Value) bool {
    	b := v.Block
    	config := b.Func.Config
    	fe := b.Func.fe
    	typ := &b.Func.Config.Types
    	// match: (ConstString {str})
    	// cond: config.PtrSize == 4 && str == ""
    	// result: (StringMake (ConstNil) (Const32 <typ.Int> [0]))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 18:24:47 UTC 2024
    - 812.2K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

      TF_DerivedResultTypeListAttr Tout = TF_DerivedResultTypeListAttr<0>;
    
      let extraClassDeclaration = [{
        // Returns the callee of this operation.
        func::FuncOp func() {
          return SymbolTable::lookupNearestSymbolFrom<func::FuncOp>(*this, getF());
        }
    
        // Erases variable arguments from `batch_func_op`. `erase_indices` contains
        // the indices of the arguments to erase.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
Back to top