Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 478 for Region (0.1 sec)

  1. tensorflow/compiler/mlir/tensorflow/tests/tpu-variable-runtime-reformatting.mlir

           // Condition region
           // CHECK: ^bb
           // CHECK: "tf.Yield"
           ^bb0(%carg0: tensor<i32>):
              %c0 = "tf.Const"() {value = dense<0> : tensor<i32>} : () -> tensor<i32>
              %c1 = "tf.GreaterEqual"(%carg0, %0) {T = i32, device = ""} : (tensor<i32>, tensor<i32>) -> tensor<i1>
              "tf.Yield"(%c1) : (tensor<i1>) -> ()
          }, {
           // Body region
           // CHECK: ^bb0
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 31 08:59:10 UTC 2023
    - 25.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/tensor_list_ops_decomposition.cc

      auto modify_region_arguments = [&](Region& region) {
        int64_t original_arg_count = region.getNumArguments();
        for (int64_t i = 0; i < original_arg_count; ++i) {
          auto operand = while_op.getOperand(i);
          auto it = buffer_to_size->find(operand);
          if (it == buffer_to_size->end()) continue;
          auto buffer_type = it->getFirst().getType();
          region.getArgument(i).setType(buffer_type);
          auto size_arg =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 39.2K bytes
    - Viewed (0)
  3. cmd/post-policy_test.go

    	t := UTCNow()
    	region := "us-east-1"
    	policy := buildGenericPolicy(t, accessKey, region, bucketName, objectName, true)
    	return newPostRequestV4Generic(endPoint, bucketName, objectName, objData, accessKey, secretKey, region, t, policy, nil, false, false, false)
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 22 23:07:14 UTC 2024
    - 30.2K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/tf_saved_model_freeze_variables.cc

      }
    }
    
    // An override that takes region.
    void PropagateUsage(
        Region* region, ElementsAttr value, int argument_index,
        llvm::SmallVector<std::pair<Region*, int>, 4>* work_list,
        llvm::MapVector<Operation*, llvm::SmallVector<unsigned int, 4>>*
            arguments_to_erase) {
      auto arg = region->getArgument(argument_index);
      for (auto& usage : arg.getUses()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 09:56:53 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/common/ir/QuantOps.td

      let summary = [{
        The `region` operation wraps high-precision ops as a logical low-precision
        quantized kernel.
      }];
    
      let arguments = (ins Variadic<AnyType>:$inputs,
                        TypeArrayAttr:$input_specs,
                        TypeArrayAttr:$output_specs,
                        StrAttr:$logical_kernel);
      let results = (outs Variadic<AnyType>:$outputs);
      let regions = (region SizedRegion<1>:$body);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jan 09 03:10:59 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  6. pkg/bootstrap/platform/gcp.go

    			}
    		}()
    	}
    	return &wg
    }
    
    // Converts a GCP zone into a region.
    func zoneToRegion(z string) (string, error) {
    	// Zones are in the form <region>-<zone_suffix>, so capture everything but the suffix.
    	re := regexp.MustCompile("(.*)-.*")
    	m := re.FindStringSubmatch(z)
    	if len(m) != 2 {
    		return "", fmt.Errorf("unable to extract region from GCP zone: %s", z)
    	}
    	return m[1], nil
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Dec 15 00:37:33 UTC 2023
    - 11.1K bytes
    - Viewed (0)
  7. tools/packaging/common/envoy_bootstrap.json

        "id": "{{ .nodeID }}",
        "cluster": "{{ .cluster }}",
        "locality": {
          {{- if .region }}
          "region": "{{ .region }}"
          {{- end }}
          {{- if .zone }}
          {{- if .region }}
          ,
          {{- end }}
          "zone": "{{ .zone }}"
          {{- end }}
          {{- if .sub_zone }}
          {{- if or .region .zone }}
          ,
          {{- end }}
          "sub_zone": "{{ .sub_zone }}"
          {{- end }}
        },
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 17:05:28 UTC 2024
    - 22.6K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/replicate_to_island.cc

    // represents replica id.
    LogicalResult UpdateRegionReplicateVariantOps(
        OpBuilder& builder, Location loc, Region& region, int replica_id,
        const std::optional<DictionaryAttr>& devices) {
      auto result = region.walk([&](Operation* op) -> WalkResult {
        if (RequiresReplicaIDAttribute(op)) {
          op->setAttr(kReplicaIdAttr, builder.getI64IntegerAttr(replica_id));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jul 24 21:01:40 UTC 2023
    - 16.9K bytes
    - Viewed (0)
  9. src/internal/trace/event.go

    		Parent: parentID,
    		Type:   typ,
    	}
    }
    
    // Region returns details about a RegionBegin or RegionEnd event.
    //
    // Panics if Kind != EventRegionBegin and Kind != EventRegionEnd.
    func (e Event) Region() Region {
    	if kind := e.Kind(); kind != EventRegionBegin && kind != EventRegionEnd {
    		panic("Region called on non-Region event")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 12:39:00 UTC 2024
    - 28.9K bytes
    - Viewed (0)
  10. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/TestOptionsIntegrationSpec.groovy

    import org.junit.jupiter.api.Tag;
    
    @Tag("fast")
    public class SomeIntegTestClass {
        @Test
        public void ok1() {
        }
    
        @Test
        public void ok2() {
        }
    }
            """
        }
        // region default test suite
    
        def "can set test framework in default test suite prior to setting options within test task"() {
            given:
            buildFile << """
            // Configure task through suite
            testing {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 12.5K bytes
    - Viewed (0)
Back to top