Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 578 for Regions (0.12 sec)

  1. src/cmd/trace/regions.go

      padding-bottom: 4px;
    }
    </style>
    <body>
    <h1>Regions</h1>
    
    Below is a table containing a summary of all the user-defined regions in the trace.
    Regions are grouped by the region type and the point at which the region started.
    The rightmost column of the table contains a latency histogram for each region group.
    Note that this histogram only counts regions that began and ended within the traced
    period.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/tests/functional-control-flow-to-regions.mlir

    // RUN: tf-opt %s -pass-pipeline='builtin.module(tf-functional-control-flow-to-regions{allow-passthrough-args})' -split-input-file -verify-diagnostics | FileCheck %s
    
    // Simple If
    // CHECK: func private @testIf1Then{{.+}}
    // CHECK: func private @testIf1Else{{.+}}
    func.func private @testIf1Then(tensor<*xf32>) -> tensor<*xf32>
    func.func private @testIf1Else(tensor<*xf32>) -> tensor<*xf32>
    
    // CHECK-LABEL: func @testIf1Result(%arg0: tensor<i1>, %arg1: tensor<*xf32>)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Nov 06 21:59:28 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  3. platforms/software/resources-s3/src/test/groovy/org/gradle/internal/resource/transport/aws/s3/S3RegionalResourceTest.groovy

    import com.amazonaws.regions.RegionUtils
    import com.amazonaws.regions.Regions
    import com.amazonaws.services.s3.model.Region
    import com.google.common.base.Optional
    import spock.lang.Specification
    
    import static com.amazonaws.regions.Region.getRegion
    
    class S3RegionalResourceTest extends Specification {
    
        def "should determine the aws region from virtual hosted urls"() {
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/text/language/coverage.go

    type allSubtags struct{}
    
    // Regions returns the list of supported regions. As all regions are in a
    // consecutive range, it simply returns a slice of numbers in increasing order.
    // The "undefined" region is not returned.
    func (s allSubtags) Regions() []Region {
    	reg := make([]Region, language.NumRegions)
    	for i := range reg {
    		reg[i] = Region{language.Region(i + 1)}
    	}
    	return reg
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  5. platforms/software/resources-s3/src/main/java/org/gradle/internal/resource/transport/aws/s3/S3RegionalResource.java

                String region = matcher.group(2);
                String key = matcher.group(4);
                Region derivedRegion;
                if (region.equals("external-1")) {
                    derivedRegion = Region.getRegion(Regions.US_EAST_1);
                } else {
                    derivedRegion = RegionUtils.getRegion(region);
                }
    
                this.region = Optional.of(derivedRegion);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 3K bytes
    - Viewed (0)
  6. src/internal/trace/summary.go

    		task.Regions = append(task.Regions, region)
    		task.Goroutines[g.ID] = g
    	case EventRegionEnd:
    		g := s.gs[ev.Goroutine()]
    		r := ev.Region()
    		var sd *UserRegionSummary
    		if regionStk := g.activeRegions; len(regionStk) > 0 {
    			// Pop the top region from the stack since that's what must have ended.
    			n := len(regionStk)
    			sd = regionStk[n-1]
    			regionStk = regionStk[:n-1]
    			g.activeRegions = regionStk
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/ir/tf_device_ops.td

        must represent separate sets of instructions to execute concurrently. In
        order to represent concurrently executed regions with dependencies, multiple
        ParallelExecute ops can be used instead. As so, regions within
        ParallelExecute op must not have control/data dependencies.
    
        While explicit dependencies between regions are disallowed, ParallelExecute
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jan 23 23:53:20 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/resource_op_lifting.cc

          // If the user is not in one of the regions, we are not interested in it.
          // Since all the sub-regions within this region (i.e., regions attached to
          // op's in this region) have themselves gone through lifting, all resource
          // users are expected to be operations in this region and not embedded
          // within other sub-regions attached to ops in this region. So the check
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/region_control_flow_to_functional.cc

    }
    
    // Returns all the external values referenced from the given regions. If the
    // external value is a constant, sink it into the region instead (and do not
    // add it to the returned vector).
    llvm::SmallVector<Value, 4> CollectExternValues(mlir::RegionRange regions) {
      llvm::SetVector<Value> extern_values;
    
      for (Region* region : regions) {
        llvm::SetVector<Value> region_extern_values;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  10. src/runtime/trace/trace.go

    // By definition, a region starts and ends in the same goroutine.
    // Regions can be nested to represent subintervals.
    // For example, the following code records four regions in the execution
    // trace to trace the durations of sequential steps in a cappuccino making
    // operation.
    //
    //	trace.WithRegion(ctx, "makeCappuccino", func() {
    //
    //	   // orderID allows to identify a specific order
    //	   // among many cappuccino order region records.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 20 00:47:09 UTC 2023
    - 5.1K bytes
    - Viewed (0)
Back to top