-
Notifications
You must be signed in to change notification settings - Fork 113
Open
Description
hello! thank you for your repository
I try image detector at GeForce RTX 3060, cuda 11.1 ->>>> result is good
However...
GeForce GTX 1660 SUPER, cuda 11.1 or 11.8 --- no detect , no errors.... but in pythorch(cu113) result is good...
and I debuging source code
In Geforce RTX 3060
auto det = torch::masked_select(detections[batch_i], conf_mask[batch_i]).view({-1, num_classes + item_attr_size});
qDebug() << "det.sizes().size() == " << det.sizes().size();
qDebug() << "det.size(0) == " << det.size(0);
qDebug() << "det.size(1) == " << det.size(1);
det.sizes().size() is 2
det.size(0) is 157
det.size(1) is 20
But GeForce GTX 1660 SUPER
auto det = torch::masked_select(detections[batch_i], conf_mask[batch_i]).view({-1, num_classes + item_attr_size});
qDebug() << "det.sizes().size() == " << det.sizes().size();
qDebug() << "det.size(0) == " << det.size(0);
qDebug() << "det.size(1) == " << det.size(1);
det.sizes().size() is 2
det.size(0) is 0
det.size(1) is 20
why "det.size(0) is 0" in "GTX 1660 SUPER" ??????
Metadata
Metadata
Assignees
Labels
No labels