Closed
Description
This causes sigsev.
import onnxruntime as ort
from onnxruntime.capi import _pybind_state as _ort_c
import torch
value = torch.tensor([1.0, 2.0])
ort_value = ort.OrtValue(_ort_c.OrtValue.from_dlpack(value, False), value)
Our dlpack version in onnxruntime is very old and needs to be updated to support all types. We should remove the "is_bool_tensor" argument.