Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for gotType (0.22 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. tensorflow/compiler/mlir/tf2xla/tests/legalize-tf.mlir

      // CHECK: %[[COMPARE:.*]] = mhlo.compare GE, %[[ARG1]], %[[ARG3]], NOTYPE : (tensor<i64>, tensor<i64>) -> tensor<i1>
      // CHECK:  %[[RESULT1:.*]] = mhlo.select %[[COMPARE]], %[[ARG1]], %[[ARG3]] : tensor<i1>, tensor<i64>
      // CHECK: %[[COMPARE_EQ:.*]] = mhlo.compare EQ, %[[ARG1]], %[[ARG3]], NOTYPE : (tensor<i64>, tensor<i64>) -> tensor<i1>
      // CHECK:  %[[MIN:.*]] = mhlo.minimum %[[ARG2]], %[[ARG4]]
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 06 18:46:23 UTC 2024
    - 335.5K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssagen/ssa.go

    		var v *ssa.Value
    		if n.Op() == ir.ODOTTYPE {
    			v, _ = s.dottype(n.(*ir.TypeAssertExpr), false)
    		} else {
    			v, _ = s.dynamicDottype(n.(*ir.DynamicTypeAssertExpr), false)
    		}
    		if v.Op != ssa.OpLoad {
    			s.Fatalf("dottype of non-load")
    		}
    		if v.Args[1] != s.mem() {
    			s.Fatalf("memory no longer live from dottype load")
    		}
    		return v.Args[0]
    	default:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  4. 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)
  5. 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)
Back to top