Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 233 for data_type_ (0.3 sec)

  1. tensorflow/c/eager/dlpack.cc

      owner->reference.Unref();
      delete owner;
    }
    
    // Converts TF_DATAType to DLPack data type.
    DLDataType GetDlDataType(TF_DataType data_type, TF_Status* status) {
      DLDataType dtype;
      dtype.lanes = 1;
      dtype.bits = TF_DataTypeSize(data_type) * 8;
      switch (data_type) {
        case TF_DataType::TF_BOOL:
          dtype.code = DLDataTypeCode::kDLBool;
          break;
        case TF_DataType::TF_HALF:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 15 09:49:45 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  2. cmd/api-datatypes.go

    coderwander <******@****.***> 1715671610 +0800
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 14 07:26:50 UTC 2024
    - 3K bytes
    - Viewed (0)
  3. cmd/sts-datatypes.go

    Aditya Manthramurthy <******@****.***> 1653613089 -0700
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 27 00:58:09 UTC 2022
    - 9.9K bytes
    - Viewed (0)
  4. cmd/storage-datatypes.go

    Anis Eleuch <******@****.***> 1718034687 +0100
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/translate/mlir_roundtrip_flags.h

    // Parses the command line flag strings to the specification of nodes in
    // the Graph. `data_types` input string can be empty since the flag is optional.
    Status ParseInputArrayInfo(absl::string_view array_names,
                               absl::string_view data_types,
                               absl::string_view shapes,
                               GraphImportConfig::InputArrays* inputs);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 02 04:56:10 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/translate/mlir_roundtrip_flags.cc

        if (output_name.empty()) continue;
        outputs->push_back(output_name);
      }
      return absl::OkStatus();
    }
    
    Status ParseInputArrayInfo(absl::string_view array_names,
                               absl::string_view data_types,
                               absl::string_view shapes,
                               GraphImportConfig::InputArrays* inputs) {
      std::vector<string> node_names;
      std::vector<string> node_dtypes;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  7. schema/field.go

    			field.DataType = Bytes
    		}
    	}
    
    	if dataTyper, ok := fieldValue.Interface().(GormDataTypeInterface); ok {
    		field.DataType = DataType(dataTyper.GormDataType())
    	}
    
    	if v, ok := field.TagSettings["AUTOCREATETIME"]; (ok && utils.CheckTruth(v)) || (!ok && field.Name == "CreatedAt" && (field.DataType == Time || field.DataType == Int || field.DataType == Uint)) {
    		if field.DataType == Time {
    			field.AutoCreateTime = UnixTime
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Mon Apr 15 03:20:20 UTC 2024
    - 32K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/python/tf_tfl_flatbuffer_helpers.cc

      }
    
      for (auto& flag : model_flags.input_arrays()) {
        node_names->push_back(flag.name());
        // TOCO doesn't required `data_type` to be filled for every input.
        // If it's not filled, make it an empty string so the importer will use
        // the data type in the NodeDef.
        auto toco_data_type = flag.data_type();
        if (toco_data_type == ::toco::IODataType::IO_DATA_TYPE_UNKNOWN) {
          node_dtypes->push_back("");
        } else {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun May 12 12:39:37 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  9. cmd/object-api-datatypes.go

    Klaus Post <******@****.***> 1718033511 -0700
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:31:51 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  10. tensorflow/cc/ops/while_loop.cc

    namespace tensorflow {
    namespace ops {
    
    namespace {
    
    // Utility function for converting to internal C++ datatypes.
    OutputTensor ToOutputTensor(const Output& output) {
      return OutputTensor(output.node(), output.index());
    }
    
    // Utility function for converting to internal C++ datatypes.
    std::vector<OutputTensor> ToOutputTensors(const std::vector<Output>& outputs) {
      std::vector<OutputTensor> result(outputs.size());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Feb 26 01:01:21 UTC 2024
    - 9.5K bytes
    - Viewed (0)
Back to top