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 a69c21c commit cd636c5Copy full SHA for cd636c5
src/onnx_gdf_parser.cpp
@@ -338,6 +338,9 @@ int writeGDF
338
ofsGDF << "node org.khronos.nn_extension.convolution_layer " << layer_input << " " << layer_weights << " " << layer_bias
339
<< " " << layer_output << "_params" << " " << layer_output << std::endl;
340
}
341
+ else if(layer_type == "Dropout") {
342
+ ofsGDF << "node org.khronos.openvx.copy " << layer_input << " " << layer_output << std::endl;
343
+ }
344
345
if(i == net.size() - 1) {
346
ofsGDF << "write " << layer_output << " output.f32" << std::endl;
0 commit comments