Skip to content

Commit

Permalink
Test Align filter
Browse files Browse the repository at this point in the history
  • Loading branch information
admitriev-gna committed Jun 24, 2020
1 parent fd7955a commit 2e75b62
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions inference-engine/src/gna_plugin/gna_graph_compiler.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -576,6 +576,7 @@ void GNAGraphCompiler::ConcatPrimitive(InferenceEngine::CNNLayerPtr layer) {
// we are remap input pointer to be not 64 bytes aligned which might be not possible in case
// of multiple connections from input
// TODO: use virtual input duplication here - or one of align-filters
inputLayer.offset = ALIGN64(inputLayer.offset);
if (ALIGN64(inputLayer.offset) != inputLayer.offset) {
THROW_GNA_LAYER_EXCEPTION(concatLayer) << "in connection to " << LAYER_NAME(concatParent)
<< " have non 64 bytes aligned offset";
Expand Down

0 comments on commit 2e75b62

Please sign in to comment.