Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for funcResult (0.08 sec)

  1. src/cmd/compile/internal/syntax/parser.go

    		}
    		typ.MethodList = append(typ.MethodList, f)
    		return false
    	})
    
    	return typ
    }
    
    // Result = Parameters | Type .
    func (p *parser) funcResult() []*Field {
    	if trace {
    		defer p.trace("funcResult")()
    	}
    
    	if p.got(_Lparen) {
    		return p.paramList(nil, nil, _Rparen, false)
    	}
    
    	pos := p.pos()
    	if typ := p.typeOrNil(); typ != nil {
    		f := new(Field)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 62.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/tpu_space_to_depth_pass.cc

      // Space to depth only supports training loop.
      auto func_result = getOperation().walk([&](tf_device::ClusterFuncOp cluster) {
        cluster_func = cluster;
        return WalkResult::interrupt();
      });
    
      // Return if there is no tf_device::ClusterFuncOp in training loop.
      if (!func_result.wasInterrupted() || !cluster_func.has_value()) {
        return;
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 29.3K bytes
    - Viewed (0)
Back to top