We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bfabfdb commit c8b188fCopy full SHA for c8b188f
src/pb_tensor.cc
@@ -35,6 +35,11 @@ namespace py = pybind11;
35
#endif
36
#include "pb_tensor.h"
37
38
+// WAR for undefined ssize_t on Windows: https://stackoverflow.com/a/35368387
39
+#if defined(_MSC_VER)
40
+#include <BaseTsd.h>
41
+typedef SSIZE_T ssize_t;
42
+#endif
43
44
namespace triton { namespace backend { namespace python {
45
0 commit comments