Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 151 for iterations (0.29 sec)

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

           (HasRankAtMost<4> $input),
           (HasRankAtMost<4> $lhs),
           (HasRankAtMost<4> $rhs),
           (IsDefinedByFullyConnectedOp $input)]>;
    }
    
    // Reorder the element-wise value operations and the element move operations,
    // such that the value operation happens before move operation.
    foreach ValueOp = [TFL_CeilOp, TFL_ExpOp, TFL_FloorOp, TFL_NegOp,
                       TFL_ReluOp, TFL_Relu1Op, TFL_Relu6Op, TFL_RoundOp,
    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. tensorflow/compiler/mlir/tf2xla/internal/passes/extract_outside_compilation.cc

      FuncOp outlined_func =
          FuncOp::create(ops.front()->getLoc(), kHostFunctionAttr, func_type);
    
      // Create function body.
      Block* outlined_func_block = outlined_func.addEntryBlock();
    
      // Clone the operations and remap the inputs to use the function arguments.
      IRMapping mapping;
      mapping.map(inputs, outlined_func.getArguments());
      builder->setInsertionPoint(outlined_func_block, outlined_func_block->begin());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 21:25:12 UTC 2024
    - 68.3K bytes
    - Viewed (0)
  3. subprojects/core/src/test/groovy/org/gradle/api/internal/AbstractDomainObjectCollectionSpec.groovy

    import org.gradle.internal.code.UserCodeApplicationId
    import org.gradle.internal.code.UserCodeSource
    import org.gradle.internal.metaobject.ConfigureDelegate
    import org.gradle.internal.operations.TestBuildOperationRunner
    import org.gradle.util.TestUtil
    import org.gradle.util.internal.ConfigureUtil
    import org.hamcrest.CoreMatchers
    import spock.lang.Specification
    
    import static org.gradle.util.Matchers.hasMessage
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 52.4K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/regalloc.go

    	p, b *Block // edge goes from p->b.
    
    	// for each pre-regalloc value, a list of equivalent cached values
    	cache      map[ID][]*Value
    	cachedVals []ID // (superset of) keys of the above map, for deterministic iteration
    
    	// map from location to the value it contains
    	contents map[Location]contentRecord
    
    	// desired destination locations
    	destinations []dstRecord
    	extra        []dstRecord
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 17:49:56 UTC 2023
    - 87.2K bytes
    - Viewed (0)
  5. pkg/scheduler/framework/plugins/dynamicresources/dynamicresources.go

    	// claimParametersIndexer has the common claimParametersGeneratedFrom indexer installed to
    	// limit iteration over claimParameters to those of interest.
    	claimParametersIndexer cache.Indexer
    	// classParametersIndexer has the common classParametersGeneratedFrom indexer installed to
    	// limit iteration over classParameters to those of interest.
    	classParametersIndexer cache.Indexer
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 15:22:37 UTC 2024
    - 75.9K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/riscv/obj.go

    	maxTrampSize := int64(callCount * callTrampSize)
    
    	// Compute instruction addresses.  Once we do that, we need to check for
    	// overextended jumps and branches.  Within each iteration, Pc differences
    	// are always lower bounds (since the program gets monotonically longer,
    	// a fixed point will be reached).  No attempt to handle functions > 2GiB.
    	for {
    		big, rescan := false, false
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 07 03:32:27 UTC 2024
    - 77K bytes
    - Viewed (0)
  7. pkg/controller/daemon/daemon_controller.go

    	BurstReplicas = 250
    
    	// StatusUpdateRetries limits the number of retries if sending a status update to API server fails.
    	StatusUpdateRetries = 1
    
    	// BackoffGCInterval is the time that has to pass before next iteration of backoff GC is run
    	BackoffGCInterval = 1 * time.Minute
    )
    
    // Reasons for DaemonSet events
    const (
    	// SelectingAllReason is added to an event when a DaemonSet selects all Pods.
    	SelectingAllReason = "SelectingAll"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.3K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/types2/expr.go

    		} else {
    			if op < len(op2str2) {
    				return op2str2[op]
    			}
    		}
    	}
    	return ""
    }
    
    var op2str1 = [...]string{
    	syntax.Xor: "bitwise complement",
    }
    
    // This is only used for operations that may cause overflow.
    var op2str2 = [...]string{
    	syntax.Add: "addition",
    	syntax.Sub: "subtraction",
    	syntax.Xor: "bitwise XOR",
    	syntax.Mul: "multiplication",
    	syntax.Shl: "shift",
    }
    
    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. pkg/controller/nodelifecycle/node_lifecycle_controller.go

    					// If error happened during node status transition (Ready -> NotReady)
    					// we need to mark node for retry to force MarkPodsNotReady execution
    					// in the next iteration.
    					nc.nodesToRetry.Store(node.Name, struct{}{})
    				}
    				return
    			}
    			nc.processTaintBaseEviction(ctx, node, &observedReadyCondition)
    
    			_, needsRetry := nc.nodesToRetry.Load(node.Name)
    			switch {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.6K bytes
    - Viewed (0)
  10. platforms/core-configuration/file-collections/src/test/groovy/org/gradle/api/internal/file/collections/DefaultConfigurableFileCollectionSpec.groovy

            }
    
            when:
            operations.each {operation -> operation.call(collection) }
    
            then:
            collection.from.flatten() as List == expected
    
            where:
            expected        | explicit      | convention        | label                                         | operations
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 18 17:09:50 UTC 2024
    - 53K bytes
    - Viewed (0)
Back to top