]> Gitweb @ Texas Instruments - Open Source Git Repositories - git.TI.com/gitweb - tidl/tidl-api.git/blobdiff - tinn_api/src/configuration.cpp
Reduce complexity of ssd_multibox example
[tidl/tidl-api.git] / tinn_api / src / configuration.cpp
index 55dd0fa709f8176756fee2408794f5914a5d791a..70fd136b65b3bd43d2aa3f83b37eef712c46ed2f 100644 (file)
@@ -38,8 +38,8 @@ Configuration::Configuration(): numFrames(0), inHeight(0), inWidth(0),
                      inNumChannels(0),
                      noZeroCoeffsPercentage(100),
                      preProcType(0),
-                     layersGroupId(tinn::internal::CURR_LAYERS_GROUP_ID),
                      runFullNet(0),
+                     enableInternalInput(0),
                      EXTMEM_HEAP_SIZE(64 << 20),  // 64MB for inceptionNetv1
                      PARAM_HEAP_SIZE(9 << 20)     // 9MB for mobileNet1
 {
@@ -51,8 +51,8 @@ void Configuration::Print(std::ostream &os) const
        << "\nFrame=      " << numFrames << " " << inWidth << "x"
                            << inHeight << "x" << inNumChannels
        << "\nPreProcType              " << preProcType
-       << "\nLayersGroupId            " << layersGroupId
        << "\nRunFullNet               " << runFullNet
+       << "\nEnableInternalInput      " << enableInternalInput
        << "\nInputFile                " << inData
        << "\nOutputFile               " << outData
        << "\nNetwork                  " << netBinFile