Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for FUNC (0.06 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. 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