Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for Ftruncate (0.18 sec)

  1. tensorflow/compiler/mlir/lite/tests/fuse-tftext.mlir

      %19 = "tf.StringLength"(%arg0) {device = "", unit = "BYTE"} : (tensor<1x!tf_type.string>) -> tensor<1xi32>
      %20 = "tf.ExpandDims"(%19, %7) {device = ""} : (tensor<1xi32>, tensor<i32>) -> tensor<1x1xi32>
      %21 = "tf.Cast"(%20) {Truncate = false, device = ""} : (tensor<1x1xi32>) -> tensor<1x1xi64>
      %22 = "tf.Reshape"(%21, %12) {device = ""} : (tensor<1x1xi64>, tensor<1xi64>) -> tensor<1xi64>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 460.3K bytes
    - Viewed (0)
  2. src/net/http/h2_bundle.go

    	// missing, however. Use the MetaHeadersFrame.Pseudo accessor
    	// method access pseudo headers.
    	Fields []hpack.HeaderField
    
    	// Truncated is whether the max header list size limit was hit
    	// and Fields is incomplete. The hpack decoder state is still
    	// valid, however.
    	Truncated bool
    }
    
    // PseudoValue returns the given pseudo header field's value.
    // The provided pseudo field should not contain the leading colon.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/stablehlo/tests/legalize_hlo.mlir

    }
    
    // CHECK-LABEL:   func @convert_i32_f32(
    // CHECK-SAME:                          %[[VAL_0:.*]]: tensor<2xi32>) -> tensor<2xf32> {
    // CHECK:           %[[VAL_1:.*]] = "tf.Cast"(%[[VAL_0]]) <{Truncate = false}> : (tensor<2xi32>) -> tensor<2xf32>
    // CHECK:           return %[[VAL_1]] : tensor<2xf32>
    // CHECK:         }
    func.func @convert_i32_f32(%arg0: tensor<2xi32>) -> tensor<2xf32> {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 29 07:26:59 UTC 2024
    - 340.2K bytes
    - Viewed (0)
  4. doc/go_spec.html

    relationships:
    </p>
    
    <pre>
    x = q*y + r  and  |r| &lt; |y|
    </pre>
    
    <p>
    with <code>x / y</code> truncated towards zero
    (<a href="https://en.wikipedia.org/wiki/Modulo_operation">"truncated division"</a>).
    </p>
    
    <pre>
     x     y     x / y     x % y
     5     3       1         2
    -5     3      -1        -2
     5    -3      -1         2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	"terminationMessagePolicy": "Indicate how the termination message should...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  6. api/openapi-spec/v3/apis__batch__v1_openapi.json

                "type": "string"
              },
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 485.4K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/core/v1/generated.proto

      // will be written is mounted into the container's filesystem.
      // Message written is intended to be brief final status, such as an assertion failure message.
      // Will be truncated by the node if greater than 4096 bytes. The total message length across
      // all containers will be limited to 12kb.
      // Defaults to /dev/termination-log.
      // Cannot be updated.
      // +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/core/v1/types.go

    	// will be written is mounted into the container's filesystem.
    	// Message written is intended to be brief final status, such as an assertion failure message.
    	// Will be truncated by the node if greater than 4096 bytes. The total message length across
    	// all containers will be limited to 12kb.
    	// Defaults to /dev/termination-log.
    	// Cannot be updated.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.25.md

    ## Changes by Kind
    
    ### API Change
    
    - Protobuf serialization of metav1.MicroTime timestamps (used in `Lease` and `Event` API objects) has been corrected to truncate to microsecond precision, to match the documented behavior and JSON/YAML serialization. Any existing persisted data is truncated to microsecond when read from etcd. ([#111936](https://github.com/kubernetes/kubernetes/pull/111936), [@haoruan](https://github.com/haoruan)) [SIG API Machinery]
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 06 09:23:20 UTC 2024
    - 419.1K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

          return failure();
        }
    
        auto expected_shape = llvm::to_vector<4>(input_shape.drop_back());
        expected_shape.push_back(expected_dim);
    
        // Zero pad or truncate the last axis
        Value reshaped = op.getInput();
        SmallVector<int64_t, 4> begin_indices(input_shape.size(), 0);
        SmallVector<int64_t, 4> strides(input_shape.size(), 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)
Back to top