Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 18 of 18 for aligned (0.14 sec)

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

        )
    
        self.assertIsNotNone(converted_model)
        self.assertCountEqual(
            converted_model.signatures._signatures.keys(), {'serving_default'}
        )
    
        # Test whether the aliased function exists.
        output_loader = saved_model_loader.SavedModelLoader(
            self._output_saved_model_path
        )
    
        # Confirm that the function alias is preserved.
    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. operator/cmd/mesh/testdata/manifest-generate/data-snapshot.tar.gz

    The filter name to match on. type: string subFilter: description: The next level filter within this filter to match upon. properties: name: description: The filter name to match on. type: string type: object type: object name: description: The name assigned to the filter chain. type: string sni: description: The SNI value used by a filter chain's match condition. type: string transportProtocol: description: Applies only to `SIDECAR_INBOUND` context. type: string type: object listenerFilter: description:...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 198.1K bytes
    - Viewed (0)
  3. src/reflect/value.go

    			// Because it's the same type for the value, and it's assigned
    			// to registers both times, it should always take up the same
    			// number of registers for each ABI.
    			panic("method ABI and value ABI don't align")
    		}
    		for i, vStep := range valueSteps {
    			mStep := methodSteps[i]
    			if mStep.kind != vStep.kind {
    				panic("method ABI and value ABI don't align")
    			}
    			switch vStep.kind {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  4. api/maven-api-model/src/main/mdo/maven.mdo

            </field>
            <field xml.transient="true">
              <name>mergeId</name>
              <version>4.0.0+</version>
              <description>
                FOR INTERNAL USE ONLY. This is a unique identifier assigned to each
                resource to allow Maven to merge changes to this resource that take
                place during the execution of a plugin. This field must be managed
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Apr 23 13:29:46 UTC 2024
    - 115.1K bytes
    - Viewed (0)
  5. src/cmd/vendor/github.com/ianlancetaylor/demangle/ast.go

    		return fn(bt)
    	}
    	bt = &BitIntType{Size: size, Signed: bt.Signed}
    	if r := fn(bt); r != nil {
    		return r
    	}
    	return bt
    }
    
    func (bt *BitIntType) GoString() string {
    	return bt.goString(0, "")
    }
    
    func (bt *BitIntType) goString(indent int, field string) string {
    	return fmt.Sprintf("%*s%sBitIntType: Signed: %t\n%s", indent, "", field,
    		bt.Signed,
    		bt.Size.goString(indent+2, "Size: "))
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 105.8K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_a_m.cc

    template <class Op>
    static LogicalResult InferenceFoldOperandsPermutation(
        ArrayRef<int64_t> permutation, Op* op) {
      // FusedBatchNorm in training mode is a layout sentitive operation, and should
      // have already assigned an optimal data format.
      if (op->getIsTraining()) return failure();
      return ::mlir::TF::FoldOperandsPermutation(permutation, op);
    }
    
    template <class Op>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 146.7K bytes
    - Viewed (0)
  7. pkg/scheduler/internal/queue/scheduling_queue_test.go

    	}
    
    	// Move clock to make the unschedulable pods complete backoff.
    	c.Step(DefaultPodInitialBackoffDuration + time.Second)
    	// Simulate addition of an assigned pod. The pod has matching labels for
    	// affinityPod. So, affinityPod should go to activeQ.
    	q.AssignedPodAdded(logger, labelPod)
    	if getUnschedulablePod(q, affinityPod) != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  8. src/runtime/proc.go

    	if readgstatus(newg) != _Gdead {
    		throw("newproc1: new g is not Gdead")
    	}
    
    	totalSize := uintptr(4*goarch.PtrSize + sys.MinFrameSize) // extra space in case of reads slightly beyond frame
    	totalSize = alignUp(totalSize, sys.StackAlign)
    	sp := newg.stack.hi - totalSize
    	if usesLR {
    		// caller's LR
    		*(*uintptr)(unsafe.Pointer(sp)) = 0
    		prepGoExitFrame(sp)
    	}
    	if GOARCH == "arm64" {
    		// caller's FP
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
Back to top