This repository was archived by the owner on Jan 22, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 205
Fuse fbnet_v2 ConvBNReLu #592
Open
antoine-tran
wants to merge
1
commit into
facebookresearch:main
Choose a base branch
from
antoine-tran:export-D47395999
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Conversation
This file contains hidden or 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
Contributor
|
This pull request was exported from Phabricator. Differential Revision: D47395999 |
antoine-tran
added a commit
to antoine-tran/mobile-vision
that referenced
this pull request
Jul 13, 2023
Summary: X-link: facebookresearch/d2go#592 Pull Request resolved: facebookresearch#172 The FBNet V2 consists of several basic blocks of pattern conv(2d) + BatchNorm + ReLU. These operators can be fused into one operator, greatly speeding up the computation in GPU. This diff / PR adds option to build an FBNet V2 backbone in fused manner, i.e. it looks up recursively the blocks and sub-blocks for the known patterns, and fuse them using `mobile_cv.arch.utils.fuse_utils` Differential Revision: D47395999 fbshipit-source-id: d7b67d4d48e39ec887aa87393455528f6e519600
antoine-tran
added a commit
to antoine-tran/d2go
that referenced
this pull request
Jul 13, 2023
Summary: Pull Request resolved: facebookresearch#592 X-link: facebookresearch/mobile-vision#172 The FBNet V2 consists of several basic blocks of pattern conv(2d) + BatchNorm + ReLU. These operators can be fused into one operator, greatly speeding up the computation in GPU. This diff / PR adds option to build an FBNet V2 backbone in fused manner, i.e. it looks up recursively the blocks and sub-blocks for the known patterns, and fuse them using `mobile_cv.arch.utils.fuse_utils` Differential Revision: D47395999 fbshipit-source-id: b3da40ade8b36238dc9920c59a638357d861f283
11904ac to
fb60f91
Compare
Contributor
|
This pull request was exported from Phabricator. Differential Revision: D47395999 |
Summary: Pull Request resolved: facebookresearch#592 X-link: facebookresearch/mobile-vision#172 The FBNet V2 consists of several basic blocks of pattern conv(2d) + BatchNorm + ReLU. These operators can be fused into one operator, greatly speeding up the computation in GPU. This diff / PR adds option to build an FBNet V2 backbone in fused manner, i.e. it looks up recursively the blocks and sub-blocks for the known patterns, and fuse them using `mobile_cv.arch.utils.fuse_utils` Differential Revision: D47395999 fbshipit-source-id: 406b08af4a238de95d126e2761d6b6896b9c8397
fb60f91 to
cca2475
Compare
Contributor
|
This pull request was exported from Phabricator. Differential Revision: D47395999 |
antoine-tran
added a commit
to antoine-tran/mobile-vision
that referenced
this pull request
Jul 13, 2023
Summary: X-link: facebookresearch/d2go#592 Pull Request resolved: facebookresearch#172 The FBNet V2 consists of several basic blocks of pattern conv(2d) + BatchNorm + ReLU. These operators can be fused into one operator, greatly speeding up the computation in GPU. This diff / PR adds option to build an FBNet V2 backbone in fused manner, i.e. it looks up recursively the blocks and sub-blocks for the known patterns, and fuse them using `mobile_cv.arch.utils.fuse_utils` Differential Revision: D47395999 fbshipit-source-id: 0f52567d7448ef30151422937a8af5efd6c44645
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Labels
CLA Signed
This label is managed by the Facebook bot. Authors need to sign the CLA before a PR can be reviewed.
fb-exported
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Summary:
The FBNet V2 consists of several basic blocks of pattern conv(2d) + BatchNorm + ReLU. These operators can be fused into one operator, greatly speeding up the computation in GPU.
This diff / PR adds option to build an FBNet V2 backbone in fused manner, i.e. it looks up recursively the blocks and sub-blocks for the known patterns, and fuse them using
mobile_cv.arch.utils.fuse_utilsDifferential Revision: D47395999