Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for 2GB (0.02 sec)

  1. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

      // There is a limit of 2GB for a flatbuffer.
      bool flatbuffer_limit_exceeded = builder_.GetSize() > flatbuffer_size_max;
      if (flatbuffer_limit_exceeded && require_use_buffer_offset_ == false) {
        require_use_buffer_offset_ = true;
        return std::nullopt;
      }
      if (flatbuffer_limit_exceeded) {
        LOG(ERROR) << "Model structure size is bigger than 2gb";
        return std::nullopt;
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/data.go

    				// the base address for the executable.
    				o -= PEBASE
    			}
    
    			// On amd64, 4-byte offsets will be sign-extended, so it is impossible to
    			// access more than 2GB of static data; fail at link time is better than
    			// fail at runtime. See https://golang.org/issue/7980.
    			// Instead of special casing only amd64, we treat this as an error on all
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (1)
Back to top