Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 3,978 for data_ (0.18 sec)

  1. tensorflow/cc/experimental/libtf/value.h

            return &data_.func == &o.data_.func;
            break;
          case FLOAT32:
            return data_.f32 == o.data_.f32;
            break;
          case INT64:
            return data_.i64 == o.data_.i64;
            break;
          case STRING:
            return data_.s == o.data_.s;
            break;
          case TENSOR:
            return data_.tensor == o.data_.tensor;
          case TENSOR_SPEC:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 13 05:23:45 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/utils/string_utils.cc

      // If `data_.size() + len` is greater than `SIZE_MAX` then the left hand side
      // will overflow to something less than max_length_. After checking `len <=
      // max_length_` we can use this subtraction to check for overflow.
      if (len > max_length_ || data_.size() >= max_length_ - len)
        return absl::ResourceExhaustedError("Buffer overflow");
      data_.resize(data_.size() + len);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/stablehlo/transforms/hlo_matchers.cc

        int64_t element_count = 1;
        for (int64_t i = 0, e = shape.size(); i < e; ++i) {
          element_count *= shape[i];
        }
        assert(data.getNumElements() == element_count);
      }
    
      using StridedArrayViewBase::NextTensorIndex;
      using StridedArrayViewBase::size;
    
      int64_t operator[](int64_t i) const {
        return data_.getValues<APInt>()[OffsetForIndex(i)].getSExtValue();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  4. tensorflow/c/eager/c_api.cc

                                   tensorflow::DataType dtype, void* data,
                                   TFE_CustomDeviceTensorHandleMethods methods)
          : tensorflow::CustomDeviceTensorHandle(context, device, dtype),
            data_(data),
            methods_(methods) {}
    
      ~CAPICustomDeviceTensorHandle() override { methods_.deallocator(data_); }
      void* DevicePointer() const override { return data_; }
      Status NumDims(int* num_dims) const override {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 08:11:23 UTC 2024
    - 44K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/utils/string_utils.h

      absl::Status AddString(const char* str, size_t len);
    
      // Fill content into a buffer and returns the number of bytes stored.
      // The function allocates space for the buffer but does NOT take ownership.
      int WriteToBuffer(char** buffer);
    
     private:
      // Data buffer to store contents of strings, not including headers.
      std::vector<char> data_;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  6. docs/erasure/README.md

    ```sh
    minio server /data{1...12}
    ```
    
    Example: Start MinIO server in a 8 drives setup, using MinIO Docker image.
    
    ```sh
    podman run \
      -p 9000:9000 \
      -p 9001:9001 \
      --name minio \
      -v /mnt/data1:/data1 \
      -v /mnt/data2:/data2 \
      -v /mnt/data3:/data3 \
      -v /mnt/data4:/data4 \
      -v /mnt/data5:/data5 \
      -v /mnt/data6:/data6 \
      -v /mnt/data7:/data7 \
      -v /mnt/data8:/data8 \
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Sep 29 04:28:45 UTC 2022
    - 4.1K bytes
    - Viewed (0)
  7. buildscripts/upgrade-tests/compose.yml

        volumes:
          - data2-1:/data1
          - data2-2:/data2
          - data2-3:/data3
    
      minio3:
        <<: *minio-common
        hostname: minio3
        volumes:
          - data3-1:/data1
          - data3-2:/data2
          - data3-3:/data3
    
      minio4:
        <<: *minio-common
        hostname: minio4
        volumes:
          - data4-1:/data1
          - data4-2:/data2
          - data4-3:/data3
    
      nginx:
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 05:08:11 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  8. .github/workflows/multipart/docker-compose-site2.yaml

        volumes:
          - site2-data2-1:/data1
          - site2-data2-2:/data2
    
      site2-minio3:
        <<: *minio-common
        hostname: site2-minio3
        volumes:
          - site2-data3-1:/data1
          - site2-data3-2:/data2
    
      site2-minio4:
        <<: *minio-common
        hostname: site2-minio4
        volumes:
          - site2-data4-1:/data1
          - site2-data4-2:/data2
    
      site2-nginx:
        image: nginx:1.19.2-alpine
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Sep 30 10:13:56 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  9. .github/workflows/multipart/docker-compose-site1.yaml

        volumes:
          - site1-data2-1:/data1
          - site1-data2-2:/data2
    
      site1-minio3:
        <<: *minio-common
        hostname: site1-minio3
        volumes:
          - site1-data3-1:/data1
          - site1-data3-2:/data2
    
      site1-minio4:
        <<: *minio-common
        hostname: site1-minio4
        volumes:
          - site1-data4-1:/data1
          - site1-data4-2:/data2
    
      site1-nginx:
        image: nginx:1.19.2-alpine
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Sep 30 10:13:56 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  10. src/internal/trace/traceviewer/static/trace_viewer_full.html

    inputLatency(){if(!('data'in this.args))return undefined;const data=this.args.data;const endTimeComp=data[END_COMP_NAME]||data[LEGACY_END_COMP_NAME];if(endTimeComp===undefined)return undefined;let latency=0;const endTime=endTimeComp.time;if(ORIGINAL_COMP_NAME in data){latency=endTime-data[ORIGINAL_COMP_NAME].time;}else if(UI_COMP_NAME in data){latency=endTime-data[UI_COMP_NAME].time;}else if(BEGIN_COMP_NAME in data){latency=endTime-data[BEGIN_COMP_NAME].time;}else{throw new Error('No valid begin latency...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 20:45:06 UTC 2023
    - 2.5M bytes
    - Viewed (0)
Back to top