Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 798 for Region (0.11 sec)

  1. tensorflow/compiler/mlir/tensorflow/ir/tf_device.cc

      }
    
      // Returns if its legal to inline 'src' region into the 'dest' region
      // attached to a TF Device operation.
      bool isLegalToInline(Region* dest, Region* src, bool wouldBeCloned,
                           IRMapping& valueMapping) const final {
        return true;
      }
    
      // Defines the legality of inlining TF Device operations into a region.
      bool isLegalToInline(Operation* call, Region*, bool, IRMapping&) const final {
        return true;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 33.4K bytes
    - Viewed (0)
  2. internal/arn/arn.go

    		Partition:    arnPartitionMinio,
    		Service:      arnServiceIAM,
    		Region:       serverRegion,
    		ResourceType: arnResourceTypeRole,
    		ResourceID:   resourceID,
    	}, nil
    }
    
    // String - returns string representation of the ARN.
    func (arn ARN) String() string {
    	return strings.Join(
    		[]string{
    			arnPrefixArn,
    			arn.Partition,
    			arn.Service,
    			arn.Region,
    			"", // account-id is always empty in this implementation
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Apr 04 08:31:34 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf_communication.cc

      auto& region = op->getRegion(region_idx);
      region.getArgument(0).replaceAllUsesWith(implicit_operand);
      region.front().eraseArguments(0, region.getNumArguments());
    }
    
    // Rewrites an `mhlo.if` op or its region. If `region_idx` is not set, the op
    // operands and results are rewritten. If `region_idx` is set, region
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 40.5K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/ir/tf_ops.cc

      }
    
      // Returns if its legal to inline 'src' region into the 'dest' region
      // attached to a TF operation.
      bool isLegalToInline(Region *dest, Region *src, bool wouldBeCloned,
                           IRMapping &valueMapping) const final {
        // Allow inlining in regions attached to region based control flow
        // operations only if the src region is a single block region
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  5. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/DefaultFileLockManager.java

             *
             * Lock file is {@link java.io.RandomAccessFile} that has two regions:
             * - lock state region, locked for the duration of the operation
             * - lock info region, locked just to write the lock info or read info from it
             * <br><br>
             *
             * Algorithm:<br>
             * 1. We first try to acquire a lock on the state region with retries, see {@link #lockStateRegion(LockMode)}.<br>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 16:02:32 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  6. cluster/gce/util.sh

        --project "${PROJECT}" \
        --region "${REGION}" \
        --protocol tcp \
        --region "${REGION}" \
        --load-balancing-scheme internal \
        --health-checks "${MASTER_NAME}-hc"
    
      gcloud compute forwarding-rules create "${MASTER_NAME}-internal" \
        --project "${PROJECT}" \
        --region "${REGION}" \
        --load-balancing-scheme internal \
        --network "${NETWORK}" \
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/transforms/host_runtime/tpu_merge_variables_with_execute.cc

      // Remove the original TPUExecute op.
      execute_launch.erase();
    
      // Move all regions from old parallel_execute to new parallel_execute.
      for (auto region : llvm::zip(new_parallel_execute_op->getRegions(),
                                   parallel_execute_op->getRegions()))
        std::get<0>(region).takeBody(std::get<1>(region));
    
      // Remove the original parallel_execute.
      parallel_execute_op->dropAllUses();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 29 17:52:11 UTC 2024
    - 27K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/prepare_tpu_computation_for_tf_export.cc

      SymbolUserMap symbol_map(table, module);
    
      // Regions that contains ops requiring token input attributes.
      absl::flat_hash_set<Region*> regions_with_token;
      while (!worklist.empty()) {
        Operation* op = worklist.back();
        worklist.pop_back();
    
        Region* region = op->getParentRegion();
        regions_with_token.insert(region);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/stablehlo/passes/quantization_patterns.cc

      }
    
      // Checks if a region only consists of ops that are quantizable in a nested
      // region.
      // tf.CustomAggregator op cannot be inserted into region of a StableHLO op,
      // thus calibration is impossible within a nested region. Therefore, when an
      // op involves a region, the op is only quantizable when the region only
      // consists of ops whose quantization parameters can be propagated from
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 06:04:36 UTC 2024
    - 41.7K bytes
    - Viewed (0)
  10. pilot/pkg/serviceregistry/kube/controller/endpoint_builder_test.go

    					},
    				},
    				Locality: &core.Locality{
    					Region: "myregion",
    				},
    			},
    			expected: labels.Instance{
    				"k1":                       "v1",
    				NodeRegionLabelGA:          "myregion",
    				label.TopologyNetwork.Name: "mynetwork",
    			},
    		},
    		{
    			name: "region and zone",
    			ctl:  testController{},
    			proxy: &model.Proxy{
    				Labels: labels.Instance{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 7.8K bytes
    - Viewed (0)
Back to top