Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 18 for DT_STRING (0.15 sec)

  1. tensorflow/compiler/mlir/lite/utils/convert_type.cc

        case tflite::TensorType_UINT32:
          return tensorflow::DT_UINT32;
        case tflite::TensorType_INT64:
          return tensorflow::DT_INT64;
        case tflite::TensorType_STRING:
          return tensorflow::DT_STRING;
        case tflite::TensorType_UINT8:
          return tensorflow::DT_UINT8;
        case tflite::TensorType_UINT16:
          return tensorflow::DT_UINT16;
        case tflite::TensorType_UINT64:
          return tensorflow::DT_UINT64;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 07 23:04:40 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/extract_outside_compilation_pass.cc

      // Add a _Retval node to loop body.
      NodeDefBuilder ret_builder(
          absl::StrCat("recv_oc_while_body_ret_", while_node_name), "_Retval");
      ret_builder.Attr("T", DT_STRING);
      ret_builder.Attr("index", 0);
      ret_builder.Input(key_arg->name(), 0, DT_STRING);
      NodeDef ret_def;
      TF_RETURN_IF_ERROR(ret_builder.Finalize(&ret_def));
      TF_ASSIGN_OR_RETURN(Node * ret_node, body_graph->AddNode(ret_def));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 104.7K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/utils/convert_tensor.cc

        case DT_BFLOAT16:
        case DT_HALF:
        case DT_FLOAT8_E5M2:
        case DT_FLOAT8_E4M3FN:
          return ConvertTensorOfCustomFloatType(input_tensor, type);
        case DT_STRING:
          return ConvertStringTensor(input_tensor, type);
        default:
          // TODO(hinsu): Remove mangling now that there is a special attribute.
          return ElementsAttr(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Apr 26 09:37:10 UTC 2024
    - 20.5K bytes
    - Viewed (0)
  4. tensorflow/cc/saved_model/loader.cc

          TF_RETURN_IF_ERROR(ValidateFunctionNotRecursive(function));
        }
      }
    
      return absl::OkStatus();
    }
    
    Tensor CreateStringTensor(const string& value) {
      Tensor tensor(DT_STRING, TensorShape({}));
      tensor.scalar<tstring>()() = value;
      return tensor;
    }
    
    void AddAssetsTensorsToInputs(const StringPiece export_dir,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 02 04:36:00 UTC 2024
    - 23K bytes
    - Viewed (0)
  5. tensorflow/c/tf_tensor.cc

      tsl::Set_TF_Status_from_Status(status, cc_status);
    }
    
    #endif  // LIBTPU_EXCLUDE_C_API_IMPL
    
    namespace tensorflow {
    
    void TensorInterface::Release() {
      if (Type() == DT_STRING && NumElements() > 0) {
        TF_TString* data = static_cast<TF_TString*>(Data());
        if (CanMove() && data != nullptr) {
          for (int64_t i = 0; i < NumElements(); ++i) {
            TF_TString_Dealloc(&data[i]);
          }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun Apr 14 21:57:32 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/utils/convert_tensor_test.cc

    }
    
    TEST(ConvertTypeToTensorTypeTest, ConvertStringTensor) {
      mlir::MLIRContext context;
      RegisterDialects(context);
      mlir::Builder b(&context);
    
      // Create the sample tensor to convert.
      Tensor tensor(DT_STRING, TensorShape({1, 2, 2, 1}));
      EXPECT_EQ(4, tensor.NumElements());
      auto Tt = tensor.flat<tstring>();
      Tt.setValues({"one", "two", "three", "four"});
      auto value_or_status = ConvertTensor(tensor, &b);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  7. tensorflow/compiler/jit/compilability_check_util.cc

      if (node.type_string() == "Const") {
        const AttrValue* attr = node.attrs().Find("dtype");
        if (!op_filter_.allow_string_consts && attr != nullptr &&
            attr->type() == DT_STRING) {
          *uncompilable_reason =
              "Const op with type DT_STRING is not supported by XLA.";
          return false;
        }
      }
    
      // XLA does not offer guaranteed aliasing between the input and output of the
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  8. tensorflow/compiler/jit/kernels/xla_ops.cc

      // Async compilation returns nullptr executable without an error.
      if (!executable && !pjrt_executable) {
        DCHECK(!must_compile_);
        Tensor compilation_key(cpu_allocator, DT_STRING, TensorShape({}));
        Tensor compilation_successful(cpu_allocator, DT_BOOL, TensorShape({}));
        compilation_successful.scalar<bool>()() = false;
        ctx->set_output(0, compilation_key);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 22:46:36 UTC 2024
    - 41.4K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/python/tf_tfl_flatbuffer_helpers.cc

          return DT_INT64;
        case toco::IODataType::UINT8:
          return DT_UINT8;
        case toco::IODataType::UINT64:
          return DT_UINT64;
        case toco::IODataType::STRING:
          return DT_STRING;
        case toco::IODataType::BOOL:
          return DT_BOOL;
        case toco::IODataType::COMPLEX64:
          return DT_COMPLEX64;
        case toco::IODataType::COMPLEX128:
          return DT_COMPLEX128;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun May 12 12:39:37 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/transforms/host_runtime/tpu_variable_runtime_reformatting.cc

      // Build a constant default key to specify that the unformatting should
      // transform the variables to the original format.
      builder.setInsertionPointAfter(while_op);
      tensorflow::Tensor default_key_tensor(tensorflow::DT_STRING, {3});
      default_key_tensor.vec<tensorflow::tstring>()(0) = kDefaultShardingValue;
      default_key_tensor.vec<tensorflow::tstring>()(1) = kDefaultShardingValue;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 21.9K bytes
    - Viewed (0)
Back to top