Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 61 for createFn (0.54 sec)

  1. tensorflow/compiler/mlir/quantization/tensorflow/python/integration_test/quantize_model_test.py

          """
    
          out = math_ops.matmul(input_tensor, self.filters)
          return {'output': out}
    
      def _simple_model_data_gen(self) -> repr_dataset.RepresentativeDataset:
        """Creates an interable of representative samples.
    
        Yields:
          Representative samples, which is basically a mapping of: input key ->
          input value.
        """
        for _ in range(8):
          yield {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 235.6K bytes
    - Viewed (0)
  2. CHANGELOG/CHANGELOG-1.4.md

    - **Federation**
      - [alpha] Creating a `Federated Ingress` is as simple as submitting
        an `Ingress` creation request to the Federation API Server. The
        Federation control system then creates and maintains a single
        global virtual IP to load balance incoming HTTP(S) traffic across
        some or all the registered clusters, across all regions. Google's
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 133.5K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformIntegrationTest.groovy

        @ToBeFixedForConfigurationCache(because = "task that uses file collection containing transforms but does not declare this as an input may be encoded before the transform nodes it references")
        def "transforms are created as required and a new instance created for each file"() {
            given:
            buildFile << """
                dependencies {
                    compile project(':lib')
                }
                project(':lib') {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 07 18:43:42 UTC 2023
    - 100.8K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

    converted to operations that create a new tensor representing the list.
    
    In the current implementation, the resulting operations are statically shaped,
    which means it must be possible to infer a bound on the full shape of the
    TensorList. That is, the `element_shape` and `num_elements` arguments to a
    tensor list creation op are constant.
    
    A tensor list creation op `tf.EmptyTensorList`/`tf.TensorListReserve` will be
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  5. pkg/proxy/ipvs/proxier_test.go

    	// All ipvs services in the system.
    	currentServices := map[string]*utilipvs.VirtualServer{
    		// Created by kube-proxy.
    		"ipvs0": {
    			Address:   netutils.ParseIPSloppy("1.1.1.1"),
    			Protocol:  string(v1.ProtocolUDP),
    			Port:      53,
    			Scheduler: "rr",
    			Flags:     utilipvs.FlagHashed,
    		},
    		// Created by kube-proxy.
    		"ipvs1": {
    			Address:   netutils.ParseIPSloppy("2.2.2.2"),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 01:31:57 UTC 2024
    - 186.8K bytes
    - Viewed (0)
  6. pkg/controller/statefulset/stateful_set_control_test.go

    		totalPods int,
    		selector labels.Selector,
    	) []*v1.Pod {
    		// only one pod gets created at a time due to OrderedReady
    		if len(pods) != 5 {
    			t.Fatalf("Expected create pods 5, got pods %v", len(pods))
    		}
    		spc.setPodRunning(set, 4)
    		pods, _ = spc.setPodReady(set, 4)
    
    		// create new pods 4(only one pod gets created at a time due to OrderedReady)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 07 19:01:47 UTC 2024
    - 108.7K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_a_m.cc

    // op's type is deduced from `value`; if `value` is of scalar type,
    // wraps it up with a tensor type of empty shape.
    // TODO(jpienaar): This one differs from the autogenerated one as it takes an
    // attribute but always creates an ElementsAttr internally.
    void ConstOp::build(OpBuilder& builder, OperationState& result,
                        Attribute value) {
      ShapedType type;
      if (auto elem_attr = mlir::dyn_cast<ElementsAttr>(value)) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 146.7K bytes
    - Viewed (0)
  8. api/maven-api-model/src/main/mdo/maven.mdo

                The email address or link that can be used to subscribe to
                the mailing list.  If this is an email address, a
                {@code mailto:} link will automatically be created
                when the documentation is created.
              </description>
              <type>String</type>
            </field>
            <field>
              <name>unsubscribe</name>
              <version>3.0.0+</version>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Apr 23 13:29:46 UTC 2024
    - 115.1K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store_test.go

    	registry.DeleteStrategy = testGracefulStrategy{defaultDeleteStrategy}
    
    	// create the object with denying admission
    	_, err := registry.Create(testContext, podA, denyCreateValidation, &metav1.CreateOptions{})
    	if err == nil {
    		t.Errorf("Expected admission error: %v", err)
    	}
    
    	// create the object
    	objA, err := registry.Create(testContext, podA, rest.ValidateAllObjectFunc, &metav1.CreateOptions{})
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 101.8K bytes
    - Viewed (0)
  10. src/cmd/go/internal/load/pkg.go

    	Cover             CoverSetup           // coverage mode and other setup info of -cover is being applied to this package
    	CoverVars         map[string]*CoverVar // variables created by coverage analysis
    	OmitDebug         bool                 // tell linker not to write debug information
    	GobinSubdir       bool                 // install target would be subdir of GOBIN
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
Back to top