Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 261 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. 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)
  4. 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)
  5. 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)
  6. tensorflow/compiler/mlir/tensorflow/tests/tf_device_ops_invalid.mlir

    }
    
    // -----
    
    // Check that a parallel_execute op with a single region is not allowed.
    func.func @parallel_execute_single_region() {
      "tf_device.parallel_execute"() {} : () -> ()
    // expected-error@-1 {{'tf_device.parallel_execute' op must have at least one region.}}
      func.return
    }
    
    // -----
    
    // Check that a parallel_execute op with empty regions are not allowed.
    func.func @parallel_execute_empty_region() {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Aug 14 15:35:49 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  7. src/cmd/trace/pprof.go

    		})
    		var lastTimestamp trace.Time
    		var n int
    		// Select only the outermost regions.
    		for _, i := range intervals {
    			if lastTimestamp <= i.start {
    				intervals[n] = i // new non-overlapping region starts.
    				lastTimestamp = i.end
    				n++
    			}
    			// Otherwise, skip because this region overlaps with a previous region.
    		}
    		gToIntervals[g] = intervals[:n]
    	}
    	return gToIntervals, nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/analysis/resource_alias_analysis.cc

      for (Region& region : case_or_if_op->getRegions())
        infos.push_back(&backtrack_analysis.GetAnalysisForRegion(region));
    
      // For region Case/If, the walk would have visited all branch regions before
      // visiting the Case/If op. Backtracking of each region results will either
      // give a value computed within these regions, or a region capture. If it is a
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 09:04:13 UTC 2024
    - 28.2K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/transforms/while_loop_outline.cc

      }
      b.create<func::ReturnOp>(yield_op->getLoc(), args);
      yield_op->erase();
      SymbolTable(region.getParentOfType<ModuleOp>()).insert(outlined_func);
      outlined_func.setPrivate();
      return outlined_func;
    }
    
    // Replace region with call to outline function.
    void ReplaceRegionWithCall(StringRef name, Region& region,
                               bool passthru_extra_args, int num_loop_carried,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  10. src/runtime/memmove_amd64.s

    	// There are two implementations of move algorithm.
    	// The first one for non-overlapped memory regions. It uses forward copying.
    	// The second one for overlapped regions. It uses backward copying
    	MOVQ	DI, CX
    	SUBQ	SI, CX
    	// Now CX contains distance between SRC and DEST
    	CMPQ	CX, BX
    	// If the distance lesser than region length it means that regions are overlapped
    	JC	copy_backward
    
    	// Non-temporal copy would be better for big sizes.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 10 15:52:08 UTC 2022
    - 12.5K bytes
    - Viewed (0)
Back to top