Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 145 for untracked (0.24 sec)

  1. src/internal/trace/mud.go

    	if thresh := float64(d.trackBucket) / mudDegree; l < thresh {
    		if r < thresh {
    			d.trackSum += area
    		} else {
    			d.trackSum += area * (thresh - l) / (r - l)
    		}
    		if d.trackSum >= d.trackMass {
    			// The tracked mass now falls in a different
    			// bucket. Recompute the inverse cumulative sum.
    			d.setTrackMass(d.trackMass)
    		}
    	}
    }
    
    // setTrackMass sets the mass to track the inverse cumulative sum for.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheInputListenerLifecycleIntegrationTest.groovy

    
    import org.gradle.initialization.StartParameterBuildOptions
    
    class ConfigurationCacheInputListenerLifecycleIntegrationTest extends AbstractConfigurationCacheIntegrationTest {
    
        def "configuration inputs are tracked during task graph serialization"() {
            given:
            def configurationCache = newConfigurationCacheFixture()
    
            and: "a project that has a provider having undeclared configuration inputs, which is linked to a task"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/internal/work/AsyncWorkTracker.java

     * limitations under the License.
     */
    
    package org.gradle.internal.work;
    
    import org.gradle.internal.operations.BuildOperationRef;
    
    import java.util.List;
    
    /**
     * Allows asynchronous work to be tracked based on the build operation it is associated with.
     */
    public interface AsyncWorkTracker {
        enum ProjectLockRetention {
            RETAIN_PROJECT_LOCKS, RELEASE_PROJECT_LOCKS, RELEASE_AND_REACQUIRE_PROJECT_LOCKS
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 11:22:05 UTC 2024
    - 3K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/tpu_partitioned_op_conversion.cc

      }
    
      auto tensor_type = mlir::dyn_cast_or_null<TensorType>(first_operand_type);
      if (!(tensor_type && tensor_type.hasRank())) {
        return op->emitError()
               << "cannot convert op with unranked or non-tensor input type "
               << tensor_type << ".";
      }
    
      int rank = tensor_type.getRank();
      if (rank <= partition_dim) {
        return op->emitError() << "cannot partition " << first_operand_type
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  5. src/runtime/trace.go

    	// this here and not e.g. on the trace reader.
    	traceFrequency(gen)
    
    	// Collect all the untraced Gs.
    	type untracedG struct {
    		gp           *g
    		goid         uint64
    		mid          int64
    		stackID      uint64
    		status       uint32
    		waitreason   waitReason
    		inMarkAssist bool
    	}
    	var untracedGs []untracedG
    	forEachGRace(func(gp *g) {
    		// Make absolutely sure all Gs are ready for the next
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 37.1K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/stablehlo/tests/components/post_calibration_component.mlir

    // RUN:   -split-input-file | FileCheck %s --check-prefix=CHECK-NO-UNPACK
    
    // Tests that a simple dot_general (lifted as a function) with CustomAggregators
    // around it is quantized. The resulting graph has quantized types unpacked into
    // int ops.
    func.func @main(%arg0: tensor<1x1024xf32>) -> tensor<1x3xf32> {
      %0 = "tf.Const"() <{value = dense<0.5> : tensor<1024x3xf32>}> : () -> tensor<1024x3xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 01:09:50 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/utils/validators.cc

        return mlir::cast<IntegerAttr>(e).getValue() != 1;
      });
    }
    
    bool IsBroadcastableElementsAttrs(mlir::TypedAttr a, mlir::TypedAttr b) {
      // This would return false if we had unranked tensors (where they should
      // probably be considered as broadcastable), but given we are working with
      // attributes here that shouldn't be an issue,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  8. subprojects/core/src/integTest/groovy/org/gradle/api/UndefinedBuildExecutionIntegrationTest.groovy

            def dirContents = dir.list()
            if (dirContents) {
                printFileTree(dir)
            }
            // caches: Gradle user home caches, not present in project .gradle caches directory
            // native: unpacked native platform libraries, not present in project .gradle caches directory
            // .tmp: Temporary folder for worker classpath files and configuration caching report intermediate files, not present in project .gradle caches directory
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 25 09:18:31 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  9. src/net/http/httptest/server.go

    		case http.StateNew:
    			if _, exists := s.conns[c]; exists {
    				panic("invalid state transition")
    			}
    			if s.conns == nil {
    				s.conns = make(map[net.Conn]http.ConnState)
    			}
    			// Add c to the set of tracked conns and increment it to the
    			// waitgroup.
    			s.wg.Add(1)
    			s.conns[c] = cs
    			if s.closed {
    				// Probably just a socket-late-binding dial from
    				// the default transport that lost the race (and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 10 17:26:10 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tfrt/analysis/cost_analysis.cc

      for (auto operand : op->getOperands()) {
        auto type = mlir::cast<mlir::TensorType>(operand.getType());
        if (type.hasRank()) {
          cost += GetRankedTensorSize(type);
        } else {
          // For unranked tensors, use the max size among the input tensors. This is
          // because the only dynamic information of the function should be the
          // input, so the size of dynamic tensors should be usually capped by
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 7.6K bytes
    - Viewed (0)
Back to top