Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for newtype (0.26 sec)

  1. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

        auto ty = mlir::dyn_cast<TensorType>(op.getType());
        if (!ty ||
            !mlir::isa<FloatType, IntegerType, ComplexType>(ty.getElementType()))
          return failure();
    
        Location loc = op.getLoc();
        Value result = rewriter.create<mhlo::ConstantOp>(loc, op.getValue());
        if (result.getType() != op.getType())
          result = rewriter.create<tensor::CastOp>(loc, op.getType(), result);
        rewriter.replaceOp(op, result);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssagen/ssa.go

    	s.startBlock(bThen)
    	s.vars[n] = s.zeroVal(lenType)
    	s.endBlock()
    	bThen.AddEdgeTo(bAfter)
    
    	b.AddEdgeTo(bElse)
    	s.startBlock(bElse)
    	switch n.Op() {
    	case ir.OLEN:
    		// length is stored in the first word for map/chan
    		s.vars[n] = s.load(lenType, x)
    	case ir.OCAP:
    		// capacity is stored in the second word for chan
    		sw := s.newValue1I(ssa.OpOffPtr, lenType.PtrTo(), lenType.Size(), x)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  3. maven-core/src/test/resources/apiv4-repo/junit/junit/4.13.1/junit-4.13.1.jar

    private void ParameterSignature(Class, annotation.Annotation[]); public boolean canAcceptValue(Object); public boolean canAcceptType(Class); public boolean canPotentiallyAccept(Class); private boolean isAssignableViaTypeC(Class, Class); public Class getType(); public java.util.List getAnnotations(); public boolean hasAnnotation(Class); public annotation.Annotation findDeepAnnotation(Class); private annotation.Annotation findDeepAnnotation(annotation.Annotation[], Class, int); public annotation.Annotation...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Dec 19 19:08:55 UTC 2023
    - 373.7K bytes
    - Viewed (0)
  4. operator/pkg/apis/istio/v1alpha1/values_types.pb.go

    	return nil
    }
    
    func (x *EgressGatewayConfig) GetServiceAnnotations() *structpb.Struct {
    	if x != nil {
    		return x.ServiceAnnotations
    	}
    	return nil
    }
    
    func (x *EgressGatewayConfig) GetType() string {
    	if x != nil {
    		return x.Type
    	}
    	return ""
    }
    
    func (x *EgressGatewayConfig) GetZvpn() *ZeroVPNConfig {
    	if x != nil {
    		return x.Zvpn
    	}
    	return nil
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 329.6K bytes
    - Viewed (0)
  5. doc/go_spec.html

    element type, indexed by a set of unique <i>keys</i> of another type,
    called the key type.
    The value of an uninitialized map is <code>nil</code>.
    </p>
    
    <pre class="ebnf">
    MapType     = "map" "[" KeyType "]" ElementType .
    KeyType     = Type .
    </pre>
    
    <p>
    The <a href="#Comparison_operators">comparison operators</a>
    <code>==</code> and <code>!=</code> must be fully defined
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (1)
Back to top