Skip to content

Commit 0640cc0

Browse files
author
Rue Yokaze
committed
fix: python-multi-array created int16_t tensor instead of int64_t
1 parent 5c1bdc0 commit 0640cc0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

python_multi_array.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ namespace python_multi_array
138138
}
139139
else if (dtype == int64)
140140
{
141-
return impl::make_typed<int16_t>(shape);
141+
return impl::make_typed<int64_t>(shape);
142142
}
143143
else if (dtype == uint8)
144144
{

0 commit comments

Comments
 (0)