Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for data_buffer (0.15 sec)

  1. tensorflow/compiler/mlir/lite/tests/flatbuffer2mlir/test_schema.fbs

      // this is 0 (which refers to an always existent empty buffer).
      //
      // The data_buffer itself is an opaque container, with the assumption that the
      // target device is little-endian. In addition, all builtin operators assume
      // the memory is ordered such that if `shape` is [4, 3, 2], then index
      // [i, j, k] maps to data_buffer[i*3*2 + j*2 + k].
      buffer:uint;
      name:string;  // For debugging and importing back into tensorflow.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 19 19:46:06 UTC 2021
    - 26.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/schema/schema_v3b.fbs

      // this is 0 (which refers to an always existent empty buffer).
      //
      // The data_buffer itself is an opaque container, with the assumption that the
      // target device is little-endian. In addition, all builtin operators assume
      // the memory is ordered such that if `shape` is [4, 3, 2], then index
      // [i, j, k] maps to data_buffer[i*3*2 + j*2 + k].
      buffer:uint;
      name:string;  // For debugging and importing back into tensorflow.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 14:28:27 UTC 2024
    - 30K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/schema/schema.fbs

      // this is 0 (which refers to an always existent empty buffer).
      //
      // The data_buffer itself is an opaque container, with the assumption that the
      // target device is little-endian. In addition, all builtin operators assume
      // the memory is ordered such that if `shape` is [4, 3, 2], then index
      // [i, j, k] maps to data_buffer[i*3*2 + j*2 + k].
      buffer:uint;
      name:string;  // For debugging and importing back into tensorflow.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 18:01:23 UTC 2024
    - 41.7K bytes
    - Viewed (0)
  4. maven-compat/src/main/java/org/apache/maven/repository/ArtifactTransferEvent.java

            this.transferredBytes = transferredBytes;
        }
    
        public byte[] getDataBuffer() {
            return dataBuffer;
        }
    
        public void setDataBuffer(byte[] dataBuffer) {
            this.dataBuffer = dataBuffer;
        }
    
        public int getDataOffset() {
            return dataOffset;
        }
    
        public void setDataOffset(int dataOffset) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  5. pkg/probe/exec/exec.go

    // errors if any.
    func (pr execProber) Probe(e exec.Cmd) (probe.Result, string, error) {
    	var dataBuffer bytes.Buffer
    	writer := ioutils.LimitWriter(&dataBuffer, maxReadLength)
    
    	e.SetStderr(writer)
    	e.SetStdout(writer)
    	err := e.Start()
    	if err == nil {
    		err = e.Wait()
    	}
    	data := dataBuffer.Bytes()
    
    	klog.V(4).Infof("Exec probe response: %q", string(data))
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 08:58:18 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  6. pkg/kubelet/prober/prober_test.go

    		exec := prober.newExecInContainer(ctx, container, containerID, cmd, 0)
    
    		var dataBuffer bytes.Buffer
    		writer := ioutils.LimitWriter(&dataBuffer, int64(limit))
    		exec.SetStderr(writer)
    		exec.SetStdout(writer)
    		err := exec.Start()
    		if err == nil {
    			err = exec.Wait()
    		}
    		actualOutput := dataBuffer.Bytes()
    
    		if e, a := containerID, runner.ContainerID; e != a {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 07:17:35 UTC 2023
    - 9.7K bytes
    - Viewed (0)
  7. tensorflow/compiler/jit/pjrt_device_context.cc

        return;
      }
    
      TSL_Status c_status;
      PJRT_Buffer* dst_buffer = TfnpdApi()->TFNPD_SameDevicePjRtBufferCopy(
          *c_src_buffer, (*c_api_client)->pjrt_c_client(), &c_status);
      if (!c_status.status.ok()) {
        done(c_status.status);
        return;
      }
    
      auto set_c_buffer_status =
          SetPjRtCBufferToTensor(dst_buffer, *c_api_client, output_tensor);
      if (!set_c_buffer_status.ok()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 13 08:49:31 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/tests/tensor_array_ops_decomposition.mlir

    func.func @main(%arg0: tensor<i1>) -> () {
      %size = "tf.Const"() {value = dense<10> : tensor<i32>} : () -> tensor<i32>
      // CHECK-NOT: tf.TensorArrayV3
      // CHECK: %[[TA_BUFFER:.*]] = "tf.MlirLocalVarOp"() : () -> tensor<!tf_type.resource<tensor<10x3xf32>>>
      // CHECK: "tf.AssignVariableOp"(%[[TA_BUFFER]]
      // CHECK-NOT: tf.TensorArrayV3
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 49K bytes
    - Viewed (0)
  9. src/net/http/h2_bundle.go

    	return call.ctx.Err() != nil
    }
    
    // Buffer chunks are allocated from a pool to reduce pressure on GC.
    // The maximum wasted space per dataBuffer is 2x the largest size class,
    // which happens when the dataBuffer has multiple chunks and there is
    // one unread byte in both the first and last chunks. We use a few size
    // classes to minimize overheads for servers that typically receive very
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
Back to top