Skip to content

Commit 77fbd9b

Browse files
committed
disable trt destroy
1 parent 0099672 commit 77fbd9b

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

ODLA/platforms/tensorrt/odla_tensorrt.cc

+4-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,10 @@ struct TrtDestroyer {
4646
template <typename T>
4747
void operator()(T* t) {
4848
if (t) {
49-
t->destroy();
49+
// FIXME: NetworkDefinition::destroy() occasionally
50+
// causes segmentation fault
51+
// t->destroy();
52+
;
5053
}
5154
}
5255
};

0 commit comments

Comments
 (0)