Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 67 for region (0.78 sec)

  1. src/internal/trace/testdata/fuzz/FuzzReader/closing-unknown-region

    Carlos Amedee <******@****.***> 1715265901 -0400
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 240 bytes
    - Viewed (0)
  2. src/internal/trace/testdata/testprog/annotations.go

    		trace.WithRegion(ctx, "region0", func() {
    			// EvUserRegionBegin("region0", start)
    			trace.WithRegion(ctx, "region1", func() {
    				trace.Log(ctx, "key0", "0123456789abcdef") // EvUserLog("task0", "key0", "0....f")
    			})
    			// EvUserRegionEnd("region0", end)
    		})
    	}()
    	wg.Wait()
    
    	preExistingRegion.End()
    	postExistingRegion := trace.StartRegion(bgctx, "post-existing region")
    
    	// End of traced execution.
    	trace.Stop()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/analysis/resource_value_typed_analyzer.h

      // Given a Region associated with the callee and operands from the
      // corresponding callOp, propagate the potentially written decision to the
      // callOp's operands, if the corresponding region's arguments are potentially
      // written resources.
      void PropagatePotentiallyWrittenUpFromCallee(
          Region& region, Operation::operand_range propagate_to);
    
      // Marks 'resource' as written.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 09:04:13 UTC 2024
    - 3K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/stablehlo/passes/insert_calibration_statistics_saver.cc

    // Inserts a `CalibrationStatisticsSaverOp` to the end of the region.
    LogicalResult InsertCalibrationStatisticsSaverOp(
        Region& region, MLIRContext& ctx, absl::string_view output_file_path,
        const std::unordered_set<std::string>& aggregator_ops_to_ignore) {
      SmallVector<Value> statistics_outputs;
      SmallVector<StringRef> ids;
      SmallVector<int32_t> calibration_methods;
      FindCustomAggregatorOps(region, aggregator_ops_to_ignore, statistics_outputs,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 06:31:57 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/analysis/resource_value_typed_analyzer.cc

          SetPotentiallyWritten(operand->get());
        }
      });
    }
    
    void ResourceAnalyzer::PropagatePotentiallyWrittenUpFromCallee(
        Region& region, Operation::operand_range propagate_to) {
      (void)AnalyzeRegion(region);
      for (auto t : llvm::zip(region.getArguments(), propagate_to)) {
        if (!IsResource(std::get<0>(t))) {
          continue;
        }
        if (IsPotentiallyWritten(std::get<0>(t))) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 09:04:13 UTC 2024
    - 8K bytes
    - Viewed (0)
  6. src/internal/trace/oldtrace_test.go

    				if testName == "user_task_region_1_21_good" {
    					testedUserRegions = true
    					validRegions := map[string]struct{}{
    						"post-existing region": struct{}{},
    						"region0":              struct{}{},
    						"region1":              struct{}{},
    					}
    					// Check that we correctly convert user regions. These
    					// strings were generated by
    					// runtime/trace.TestUserTaskRegion, which is the basis for
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  7. cmd/config-current_test.go

    	if err = newTestConfig(globalMinioDefaultRegion, objLayer); err != nil {
    		t.Fatalf("Init Test config failed")
    	}
    
    	if globalSite.Region() != globalMinioDefaultRegion {
    		t.Errorf("Expecting region `us-east-1` found %s", globalSite.Region())
    	}
    
    	// Set new region and verify.
    	config.SetRegion(globalServerConfig, "us-west-1")
    	site, err := config.LookupSite(
    		globalServerConfig[config.SiteSubSys][config.Default],
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 16 23:13:47 UTC 2024
    - 2K bytes
    - Viewed (0)
  8. cluster/gce/upgrade-aliases.sh

        "${IP_ALIAS_SUBNETWORK}" --project="${PROJECT}" --region="${REGION}" \
        --format='value(fingerprint)')
      local access_token
      access_token=$(gcloud auth print-access-token)
      local request="{\"allowSubnetCidrRoutesOverlap\":$1, \"fingerprint\":\"${fingerprint}\"}"
      local subnetwork_url
      subnetwork_url="${GCE_API_ENDPOINT}projects/${PROJECT}/regions/${REGION}/subnetworks/${IP_ALIAS_SUBNETWORK}"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 03:36:35 UTC 2024
    - 6K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/remove_unused_arguments.cc

    };
    
    // Return a bitvector that marks all return values that always come from
    // the same value.
    llvm::BitVector GetInvariantReturns(Region* region, int number_of_results) {
      llvm::BitVector invariant(number_of_results, true);
      std::vector<Value> used_argument(number_of_results, nullptr);
      for (Block& block : region->getBlocks()) {
        for (Operation& op : block.getOperations()) {
          if (!op.hasTrait<OpTrait::ReturnLike>()) continue;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/transforms/rewrite_tpu_embedding_ops.cc

    // failure.
    template <typename OpT>
    LogicalResult GetOp(Region* region, OpT* result) {
      *result = {};
      for (auto op : region->getOps<OpT>()) {
        if (*result) return op.emitError("should be unique within a function");
        *result = op;
      }
      return success();
    }
    
    LogicalResult RunOnRegion(Region* region) {
      RecvTPUEmbeddingActivationsOp recv_op;
      if (failed(GetOp(region, &recv_op))) return failure();
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 22:55:42 UTC 2024
    - 4.5K bytes
    - Viewed (0)
Back to top