Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 11 of 11 for fsType (0.16 sec)

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

        return tflite::TensorType_UINT8;
      } else if (auto complex_type = mlir::dyn_cast<mlir::ComplexType>(type)) {
        auto ftype = complex_type.getElementType();
        if (ftype.isF32()) {
          return tflite::TensorType_COMPLEX64;
        }
        if (ftype.isF64()) {
          return tflite::TensorType_COMPLEX128;
        }
        return Status(absl::StatusCode::kInvalidArgument, "Unsupported type");
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
Back to top