Skip to content

Commit

Permalink
Revert "[GPU] Add new operation GatherElements to IE clDNN plugin (op…
Browse files Browse the repository at this point in the history
…envinotoolkit#6676)"

This reverts commit f5666fb.
  • Loading branch information
jinhopark8345 committed Aug 30, 2021
1 parent 4a07a0b commit a27d55a
Show file tree
Hide file tree
Showing 23 changed files with 6 additions and 2,296 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,6 @@ REGISTER_FACTORY(v5, Loop);
// ------------------------------ Supported v6 ops ------------------------------ //
REGISTER_FACTORY(v6, CTCGreedyDecoderSeqLen);
REGISTER_FACTORY(v6, MVN);
REGISTER_FACTORY(v6, GatherElements);

// ------------------------------ Supported v7 ops ------------------------------ //
REGISTER_FACTORY(v7, Gather);
Expand Down
66 changes: 0 additions & 66 deletions inference-engine/src/cldnn_engine/ops/gather_elements.cpp

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,7 @@

#include <vector>

#include "single_layer_tests/gather_elements.hpp"
#include "common_test_utils/test_constants.hpp"
#include "shared_test_classes/single_layer/gather_elements.hpp"

using namespace LayerTestsDefinitions;

Expand All @@ -17,6 +16,8 @@ const std::vector<InferenceEngine::Precision> dPrecisions = {
InferenceEngine::Precision::I32,
InferenceEngine::Precision::I64,
InferenceEngine::Precision::I16,
InferenceEngine::Precision::U8,
InferenceEngine::Precision::I8
};
const std::vector<InferenceEngine::Precision> iPrecisions = {
InferenceEngine::Precision::I32,
Expand Down

This file was deleted.

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -48,4 +48,7 @@ void GatherElementsLayerTest::SetUp() {
function = std::make_shared<ngraph::Function>(results, params, "gatherEl");
}

TEST_P(GatherElementsLayerTest, CompareWithRefs) {
Run();
}
} // namespace LayerTestsDefinitions
Loading

0 comments on commit a27d55a

Please sign in to comment.