Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for qint (0.15 sec)

  1. tensorflow/compiler/mlir/tf2xla/tests/legalize-tf.mlir

    func.func @max_qint(%arg0: tensor<4x8x!tf_type.qint8>) -> tensor<4x1x!tf_type.qint8> {
      %dimension = "tf.Const"() { value = dense<1> : tensor<1xi64> } : () -> tensor<1xi64>
      %0 = "tf.Max"(%arg0, %dimension) { keep_dims = true }: (tensor<4x8x!tf_type.qint8>, tensor<1xi64>) -> tensor<4x1x!tf_type.qint8>
      func.return %0 : tensor<4x1x!tf_type.qint8>
    }
    
    // -----
    
    // CHECK-LABEL: func @max_dynamic
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 06 18:46:23 UTC 2024
    - 335.5K bytes
    - Viewed (0)
  2. prow/config/calico.yaml

                      never change the enforcement behaviour of the policy. \n Currently,
                      the only available hint is \"AssumeNeededOnEveryNode\".  When that
                      hint is set on a policy, Felix will act as if the policy matches
                      a local endpoint even if it does not. This is useful for \"preloading\"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 246.5K bytes
    - Viewed (0)
  3. pkg/apis/core/types.go

    	InternalTrafficPolicy *ServiceInternalTrafficPolicy
    
    	// TrafficDistribution offers a way to express preferences for how traffic is
    	// distributed to Service endpoints. Implementations can use this field as a
    	// hint, but are not required to guarantee strict adherence. If the field is
    	// not set, the implementation will apply its default routing strategy. If set
    	// to "PreferClose", implementations should prioritize endpoints that are
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	"port":        "The port number of the endpoint.",
    	"protocol":    "The IP protocol for this port. Must be UDP, TCP, or SCTP. Default is TCP.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  5. CHANGELOG/CHANGELOG-1.24.md

    - github.com/stretchr/testify: [v1.7.0 → v1.8.0](https://github.com/stretchr/testify/compare/v1.7.0...v1.8.0)
    - go.uber.org/goleak: v1.1.10 → v1.2.0
    - golang.org/x/lint: 6edffad → 83fdc39
    - gopkg.in/yaml.v3: 496545a → v3.0.1
    - sigs.k8s.io/apiserver-network-proxy/konnectivity-client: v0.0.30 → v0.0.33
    
    ### Removed
    _Nothing has changed._
    
    
    
    # v1.24.6
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 24 00:02:43 UTC 2023
    - 473.4K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/core/v1/generated.proto

      // The IP protocol for this port.
      // Must be UDP, TCP, or SCTP.
      // Default is TCP.
      // +optional
      optional string protocol = 3;
    
      // The application protocol for this port.
      // This is used as a hint for implementations to offer richer behavior for protocols that they understand.
      // This field follows standard Kubernetes label syntax.
      // Valid values are either:
      //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

      auto shape_x = x_rankless.getShape();
      auto shape_y = y_rankless.getShape();
    
      int rank_diff = shape_x.size() - shape_y.size();
      int offset_x = rank_diff > 0 ? rank_diff : 0;
      int offset_y = rank_diff < 0 ? -rank_diff : 0;
      for (int i = 0, s = std::min(shape_x.size(), shape_y.size()); i < s; i++) {
        int index_x = i + offset_x;
        int index_y = i + offset_y;
        if ((shape_x[index_x] == -1 && shape_y[index_y] != 1) ||
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
  8. docs/en/docs/release-notes.md

        ...
    
    
    @app.get("/items/{item_id}")
    def read_item(*, user: User = Depends(get_current_user), item_id: int):
        ...
    
    
    @app.delete("/items/{item_id}")
    def delete_item(*, user: User = Depends(get_current_user), item_id: int):
        ...
    ```
    
    There's a bit of code duplication for the dependency:
    
    ```Python
    user: User = Depends(get_current_user)
    ```
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jun 14 15:07:37 UTC 2024
    - 395.4K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/core/v1/types.go

    	// TrafficDistribution offers a way to express preferences for how traffic is
    	// distributed to Service endpoints. Implementations can use this field as a
    	// hint, but are not required to guarantee strict adherence. If the field is
    	// not set, the implementation will apply its default routing strategy. If set
    	// to "PreferClose", implementations should prioritize endpoints that are
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  10. doc/go_spec.html

    may be invoked with zero or more arguments for that parameter.
    </p>
    
    <pre>
    func()
    func(x int) int
    func(a, _ int, z float32) bool
    func(a, b int, z float32) (bool)
    func(prefix string, values ...int)
    func(a, b int, z float64, opt ...interface{}) (success bool)
    func(int, int, float64) (float64, *[]int)
    func(n int) func(p *T)
    </pre>
    
    <h3 id="Interface_types">Interface types</h3>
    
    <p>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (1)
Back to top