Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 161 for Invert (0.17 sec)

  1. tensorflow/compiler/mlir/lite/transforms/optimize_patterns.td

      "  return true;"
      "})">, "all users are AddOp and can fuse with "#op_to_fuse_with#"">;
    
    // TODO(b/294385379): This pattern only appears when we convert
    // from shlo due to differences in broadcasting behavior
    def UndoBroadcastFullyConnectedBiasAdd : Pat<
      (TFL_AddOp $lhs, (Arith_ConstantOp:$const_value $bias), TFL_AF_None),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 20:31:41 UTC 2024
    - 66.4K bytes
    - Viewed (0)
  2. src/go/types/expr.go

    			return true
    		}
    		// A boolean type can only convert to another boolean type.
    		if allBoolean(x.typ) != allBoolean(y.typ) {
    			return false
    		}
    		// A string type can only convert to another string type.
    		if allString(x.typ) != allString(y.typ) {
    			return false
    		}
    		// Untyped nil can only convert to a type that has a nil.
    		if x.isNil() {
    			return hasNil(y.typ)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  3. pkg/scheduler/framework/runtime/framework.go

    		// to check double registration
    		enabledSet := newOrderedSet()
    		for _, plugin := range e.plugins.Enabled {
    			enabledSet.insert(plugin.Name)
    		}
    
    		disabledSet := sets.New[string]()
    		for _, disabledPlugin := range e.plugins.Disabled {
    			disabledSet.Insert(disabledPlugin.Name)
    		}
    		if disabledSet.Has("*") {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 60.9K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/flatbuffer_import.cc

      // Traverse the graph towards inputs.
      absl::flat_hash_set<const tflite::OperatorT*> visited;
      while (!queue.empty()) {
        const tflite::OperatorT* op = queue.back();
        queue.pop_back();
        if (!visited.insert(op).second) {
          // The node has already been visited.
          continue;
        }
    
        for (int32_t input : op->inputs) {
          // Input tensor may not have a defining op in case it is a subgraph input
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 66.8K bytes
    - Viewed (0)
  5. pilot/pkg/config/kube/gateway/conversion.go

    				}
    				if _, f := res[fromKey][toKey]; !f {
    					res[fromKey][toKey] = &Grants{
    						AllowedNames: sets.New[string](),
    					}
    				}
    				if to.Name != nil {
    					res[fromKey][toKey].AllowedNames.Insert(string(*to.Name))
    				} else {
    					res[fromKey][toKey].AllowAll = true
    				}
    			}
    		}
    	}
    	return res
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/_gen/ARM64Ops.go

    		// bitfield ops
    		// for all bitfield ops lsb is auxInt>>8, width is auxInt&0xff
    		// insert low width bits of arg1 into the result starting at bit lsb, copy other bits from arg0
    		{name: "BFI", argLength: 2, reg: gp21nog, asm: "BFI", aux: "ARM64BitField", resultInArg0: true},
    		// extract width bits of arg1 starting at bit lsb and insert at low end of result, copy other bits from arg0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 58.8K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/manage/schema/extract/ManagedProxyClassGenerator.java

                finishVisitingMethod(methodVisitor);
                return;
            }
    
            // Adds a void $propName(Closure<?> cl) method that throws MME, to avoid attempts to convert closure to something else
            MethodVisitor methodVisitor = declareMethod(visitor, property.getName(), Type.getMethodDescriptor(Type.VOID_TYPE, CLOSURE_TYPE), null);
            putThisOnStack(methodVisitor);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 55.3K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/types2/expr.go

    			return true
    		}
    		// A boolean type can only convert to another boolean type.
    		if allBoolean(x.typ) != allBoolean(y.typ) {
    			return false
    		}
    		// A string type can only convert to another string type.
    		if allString(x.typ) != allString(y.typ) {
    			return false
    		}
    		// Untyped nil can only convert to a type that has a nil.
    		if x.isNil() {
    			return hasNil(y.typ)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 51.7K bytes
    - Viewed (0)
  9. cmd/xl-storage-format-v2.go

    	x.versions = append(x.versions, xlMetaV2ShallowVersion{header: xlMetaV2VersionHeader{ModTime: -1}})
    
    	// Linear search, we likely have to insert at front.
    	for i, existing := range x.versions {
    		if existing.header.ModTime <= modTime {
    			// Insert at current idx. First move current back.
    			copy(x.versions[i+1:], x.versions[i:])
    			x.versions[i] = xlMetaV2ShallowVersion{
    				header: ver.header(),
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 29 19:14:09 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/customresource_handler.go

    	delegate  runtime.ObjectConvertor
    	validator unstructuredSchemaCoercer
    }
    
    var _ runtime.ObjectConvertor = schemaCoercingConverter{}
    
    func (v schemaCoercingConverter) Convert(in, out, context interface{}) error {
    	if err := v.delegate.Convert(in, out, context); err != nil {
    		return err
    	}
    
    	if u, ok := out.(*unstructured.Unstructured); ok {
    		if _, err := v.validator.apply(u); err != nil {
    			return err
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 52.9K bytes
    - Viewed (0)
Back to top