forked from openvinotoolkit/nncf
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[PT2] Introduce PT2OpLayerAttribute (openvinotoolkit#3178)
### Changes - Introduced `PT2OpLayerAttribute`, to collect called function, attributes and constant ports - `FunctionMeta` stored function instead of function name ### Reason for changes Needs to implement subgraph extractor for FBC ### Related tickets 152996 ### Tests tests/torch2/function_hook/nncf_graph/test_layer_attributes.py
- Loading branch information
1 parent
1b6af84
commit cdf7208
Showing
10 changed files
with
256 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
32 changes: 32 additions & 0 deletions
32
nncf/experimental/torch2/function_hook/nncf_graph/layer_attributes.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
# Copyright (c) 2025 Intel Corporation | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
|
||
from dataclasses import dataclass | ||
from typing import Any, Callable, Dict, Set, Tuple | ||
|
||
from nncf.common.graph.layer_attributes import BaseLayerAttributes | ||
|
||
|
||
@dataclass(frozen=True) | ||
class PT2OpLayerAttributes(BaseLayerAttributes): | ||
""" | ||
This class stores information about operation. | ||
:param func: Function that the operation represents. | ||
:param op_args: Tuple of positional arguments for the operation. | ||
:param op_kwargs: Dictionary of keyword arguments for the operation. | ||
:param constant_port_ids: Set of input port indices with constants. | ||
""" | ||
|
||
func: Callable[..., Any] | ||
op_args: Tuple[Any, ...] | ||
op_kwargs: Dict[str, Any] | ||
constant_port_ids: Set[int] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.