Skip to content

Commit

Permalink
[LPT] GemmTransformation usage fix (openvinotoolkit#1899)
Browse files Browse the repository at this point in the history
  • Loading branch information
eshoguli authored and Rom committed Aug 28, 2020
1 parent 1fc8cfb commit 7888ef7
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions inference-engine/src/cldnn_engine/cldnn_program.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -88,9 +88,8 @@
#include <exec_graph_info.hpp>

#include "low_precision_transformations/transformer.hpp"
#include "low_precision_transformations/eltwise.hpp"
#include "low_precision_transformations/concat_multi_channels.hpp"
#include "low_precision_transformations/fully_connected.hpp"
#include "low_precision_transformations/gemm.hpp"

#include <iostream>
#include <iomanip>
Expand Down Expand Up @@ -241,7 +240,7 @@ Program::Program(InferenceEngine::ICNNNetwork& network, std::shared_ptr<const cl

auto transforms = LowPrecisionTransformer::getAllTransformations(params)
.add<FullyConnectedTransformation>(LayerTransformation::Params(params).setSupportAsymmetricQuantization(false), "FullyConnected")
.add<FullyConnectedTransformation>(LayerTransformation::Params(params).setSupportAsymmetricQuantization(false), "GEMM");
.add<GemmTransformation>(LayerTransformation::Params(params).setSupportAsymmetricQuantization(false), "GEMM");

auto it = details::CNNNetworkIterator(&network);
auto end = details::CNNNetworkIterator();
Expand Down

0 comments on commit 7888ef7

Please sign in to comment.