Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 34 for AnyType (0.62 sec)

  1. tensorflow/compiler/mlir/tfrt/ir/mlrt/mlrt_ops.td

        Execute $a_true_fn with $args if $cond is true; otherwise, %b_false_fn is
        executed.
      }];
    
      let arguments = (ins
        I1:$cond,
        Variadic<AnyType>:$args,
        SymbolRefAttr:$a_true_fn,
        SymbolRefAttr:$b_false_fn
      );
    
      let results = (outs
        Variadic<AnyType>:$results
      );
    
      let assemblyFormat = [{
        $cond $a_true_fn $b_false_fn `(` $args `)` attr-dict `:` `(` type($args) `)` `->` `(` type($results) `)`
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 08 22:07:30 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/ir/tf_executor_ops.td

        Note: Additional result corresponds to the control output.
      }];
    
      let arguments = (ins
        AnyType:$data,
        TensorOf<[I1]>:$predicate,
        // Optional extra control inputs.
        Variadic<TfeControlType>:$controlInputs
      );
    
      let results = (outs
        AnyType: $falseOutput,
        AnyType: $trueOutput,
        TfeControlType: $control
      );
    
       let hasVerifier = 0;
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 23 19:35:12 UTC 2023
    - 22K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/ir/tf_device_ops.td

    ```
      }];
    
      let arguments = (ins
        Variadic<AnyType>:$replicated_inputs,
        Variadic<AnyType>:$packed_inputs,
    
        ConfinedAttr<I32Attr, [IntMinValue<2>]>:$n,
        OptionalAttr<DictionaryAttr>:$devices
      );
    
      let results = (outs
        Variadic<AnyType>:$replicated_outputs
      );
    
      let regions = (region SizedRegion<1>:$body);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jan 23 23:53:20 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/types/identity.go

    			isUnnamedEface := func(t *Type) bool { return t.IsEmptyInterface() && t.Sym() == nil }
    			if flags&identStrict != 0 {
    				return t1 == AnyType && isUnnamedEface(t2) && !t2.HasShape() || t2 == AnyType && isUnnamedEface(t1) && !t1.HasShape()
    			}
    			return t1 == AnyType && isUnnamedEface(t2) || t2 == AnyType && isUnnamedEface(t1)
    		default:
    			return false
    		}
    	}
    cont:
    
    	// Any cyclic type must go through a named type, and if one is
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 20:57:01 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  5. src/go/internal/gcimporter/support.go

    	// not to be confused with the universe any
    	anyType{},
    
    	// comparable
    	types.Universe.Lookup("comparable").Type(),
    
    	// "any" has special handling: see usage of predeclared.
    }
    
    type anyType struct{}
    
    func (t anyType) Underlying() types.Type { return t }
    func (t anyType) String() string         { return "any" }
    
    // See cmd/compile/internal/noder.derivedInfo.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/types/universe.go

    	ComparableType = defBasic(TFORW, BuiltinPkg, "comparable")
    	ComparableType.SetUnderlying(makeComparableInterface())
    	ResumeCheckSize()
    
    	// any type (interface)
    	DeferCheckSize()
    	AnyType = defBasic(TFORW, BuiltinPkg, "any")
    	AnyType.SetUnderlying(NewInterface(nil))
    	ResumeCheckSize()
    
    	Types[TUNSAFEPTR] = defBasic(TUNSAFEPTR, UnsafePkg, "Pointer")
    
    	Types[TBLANK] = newType(TBLANK)
    	Types[TNIL] = newType(TNIL)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 26 21:56:49 UTC 2023
    - 4K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/internal/resolve/caching/CrossBuildCachingRuleExecutor.java

                    encoder.writeSmallInt(-1);
                    return;
                }
                Class<?> anyType = value.getClass();
                Serializer<Object> serializer = Cast.uncheckedCast(SERIALIZER_FACTORY.getSerializerFor(anyType));
                for (int i = 0; i < USUAL_TYPES.length; i++) {
                    if (USUAL_TYPES[i].equals(anyType)) {
                        encoder.writeSmallInt(i);
                        serializer.write(encoder, value);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 10 15:51:31 UTC 2024
    - 16.1K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/authentication/cel/compile.go

    	}
    
    	found := false
    	returnTypes := expressionAccessor.ReturnTypes()
    	for _, returnType := range returnTypes {
    		if ast.OutputType() == returnType || cel.AnyType == returnType {
    			found = true
    			break
    		}
    	}
    	if !found {
    		var reason string
    		if len(returnTypes) == 1 {
    			reason = fmt.Sprintf("must evaluate to %v", returnTypes[0].String())
    		} else {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 17:59:05 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tfrt/runtime_fallback/runtime_fallback_ops.td

          } : (!tfrt.chain, !tfd.tf_tensor, !tfd.tf_tensor) -> (
            !tfrt.chain, !tfd.tf_tensor)
      }];
    
      let arguments = (ins TFRT_ChainType, Variadic<AnyType>);
      let results = (outs TFRT_ChainType, Variadic<AnyType>);
    }
    
    def PrintTftOp : RuntimeFallbackDialect_Op<"print_tft"> {
      let summary = "print TF tensor operation";
      let description = [{
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 23 19:35:12 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/authentication/cel/interface.go

    	// to the claim mapping expressions is a map[string]interface{}, so we can't
    	// really know what the return type is during compilation. Strict type checking
    	// is done during evaluation.
    	return []*celgo.Type{celgo.AnyType}
    }
    
    var _ ExpressionAccessor = &ClaimValidationCondition{}
    
    // ClaimValidationCondition is a CEL expression that validates a claim.
    type ClaimValidationCondition struct {
    	Expression string
    	Message    string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 17:59:05 UTC 2024
    - 5.2K bytes
    - Viewed (0)
Back to top