@@ -54,13 +54,6 @@ const std::map<std::string, std::vector<std::shared_ptr<InPortPlace>>>& OpPlace:
5454 return m_input_ports;
5555}
5656
57- std::shared_ptr<InPortPlace> OpPlace::get_input_port_tf (const std::string& inputName, int inputPortIndex) const {
58- FRONT_END_GENERAL_CHECK (inputPortIndex >= 0 , " inputPortIndex is negative." );
59- size_t input_port_index = static_cast <size_t >(inputPortIndex);
60- FRONT_END_GENERAL_CHECK (input_port_index < m_input_ports.at (inputName).size (), " inputPortIndex is out of bounds." );
61- return m_input_ports.at (inputName)[input_port_index];
62- }
63-
6457std::shared_ptr<DecoderBase> OpPlace::get_decoder () const {
6558 return m_op_decoder;
6659}
@@ -249,13 +242,6 @@ ov::frontend::Place::Ptr TensorPlace::get_producing_operation() const {
249242 return get_producing_port ()->get_producing_operation ();
250243}
251244
252- std::shared_ptr<TensorPlace> InPortPlace::get_source_tensor_tf () const {
253- if (const auto & tensor = m_source_tensor.lock ()) {
254- return tensor;
255- }
256- FRONT_END_THROW (" Source Tensor has expired." );
257- }
258-
259245std::shared_ptr<OpPlace> InPortPlace::get_op () {
260246 if (const auto & op = m_op.lock ()) {
261247 return op;
@@ -293,13 +279,6 @@ ov::frontend::Place::Ptr InPortPlace::get_producing_operation() const {
293279 return get_producing_port ()->get_producing_operation ();
294280}
295281
296- std::shared_ptr<TensorPlace> OutPortPlace::get_target_tensor_tf () const {
297- if (const auto & target_tensor = m_target_tensor.lock ()) {
298- return target_tensor;
299- }
300- FRONT_END_THROW (" Target Tensor has expired." );
301- }
302-
303282std::vector<ov::frontend::Place::Ptr> OutPortPlace::get_consuming_operations () const {
304283 if (auto tensor_ptr = m_target_tensor.lock ()) {
305284 return tensor_ptr->get_consuming_operations ();
0 commit comments