-
Notifications
You must be signed in to change notification settings - Fork 5.9k
conv3d #35507
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
conv3d #35507
Changes from 4 commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,172 @@ | ||
| /* Copyright (c) 2018 PaddlePaddle Authors. All Rights Reserved. | ||
|
|
||
| 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. */ | ||
|
|
||
| #include "paddle/fluid/inference/tensorrt/convert/op_converter.h" | ||
|
|
||
| namespace paddle { | ||
| namespace framework { | ||
| class Scope; | ||
|
|
||
| namespace proto { | ||
| class OpDesc; | ||
| } // namespace proto | ||
| } // namespace framework | ||
| } // namespace paddle | ||
|
|
||
| namespace paddle { | ||
| namespace inference { | ||
| namespace tensorrt { | ||
|
|
||
| template <typename RegistFunc, typename SetDilationFunc> | ||
| void ConvertConv3d(TensorRTEngine* engine, const framework::proto::OpDesc& op, | ||
| const framework::Scope& scope, bool test_mode, | ||
| RegistFunc fadd_layer, SetDilationFunc fset_dilation, | ||
| const std::string& name) { | ||
| VLOG(3) << "convert a fluid " << name << " op to tensorrt layer without bias"; | ||
|
|
||
| framework::OpDesc op_desc(op, nullptr); | ||
|
|
||
| auto* X = engine->GetITensor(op_desc.Input("Input").front()); | ||
| std::string filter_var_name = op_desc.Input("Filter").front(); | ||
| auto* Y_v = scope.FindVar(filter_var_name); | ||
| PADDLE_ENFORCE_NOT_NULL( | ||
| Y_v, platform::errors::NotFound( | ||
| "Can not find %s presistale var in scope.", filter_var_name)); | ||
| auto* Y_t = Y_v->GetMutable<framework::LoDTensor>(); | ||
| float* weight_data = nullptr; | ||
| bool enable_int8 = op_desc.HasAttr("enable_int8"); | ||
|
|
||
| if (enable_int8) { | ||
| #if IS_TRT_VERSION_GE(5000) | ||
| float in_scale = | ||
| BOOST_GET_CONST(float, op_desc.GetAttr("Input_scale")) * 127; | ||
| auto weight_scale = | ||
| BOOST_GET_CONST(std::vector<float>, op_desc.GetAttr("weight_scale")); | ||
| weight_data = engine->GetWeightCPUData(op_desc.Input("Filter").front(), Y_t, | ||
| true, weight_scale); | ||
| engine->SetTensorDynamicRange(X, in_scale); | ||
| #endif | ||
| } else { | ||
| weight_data = | ||
| engine->GetWeightCPUData(op_desc.Input("Filter").front(), Y_t, false); | ||
| } | ||
|
|
||
| PADDLE_ENFORCE_EQ(Y_t->dims().size(), 5UL, | ||
| platform::errors::InvalidArgument( | ||
| "The conv3d filter's dims size should be 5, but got %d", | ||
| Y_t->dims().size())); | ||
|
|
||
| const int n_output = Y_t->dims()[0]; | ||
| const int n_input = Y_t->dims()[1]; | ||
| const int filter_d = Y_t->dims()[2]; | ||
| const int filter_h = Y_t->dims()[3]; | ||
| const int filter_w = Y_t->dims()[4]; | ||
| const int groups = BOOST_GET_CONST(int, op_desc.GetAttr("groups")); | ||
| const std::vector<int> dilations = | ||
| BOOST_GET_CONST(std::vector<int>, op_desc.GetAttr("dilations")); | ||
| const std::vector<int> strides = | ||
| BOOST_GET_CONST(std::vector<int>, op_desc.GetAttr("strides")); | ||
| const std::vector<int> paddings = | ||
| BOOST_GET_CONST(std::vector<int>, op_desc.GetAttr("paddings")); | ||
| std::string padding_algorithm = "EXPLICIT"; | ||
| if (op_desc.HasAttr("padding_algorithm")) | ||
| padding_algorithm = | ||
| BOOST_GET_CONST(std::string, op_desc.GetAttr("padding_algorithm")); | ||
|
|
||
| nvinfer1::Dims3 nv_ksize(filter_d, filter_h, filter_w); | ||
| nvinfer1::Dims3 nv_dilations(dilations[0], dilations[1], dilations[2]); | ||
| nvinfer1::Dims3 nv_strides(strides[0], strides[1], strides[2]); | ||
| nvinfer1::Dims3 nv_paddings(paddings[0], paddings[1], paddings[2]); | ||
|
|
||
| TensorRTEngine::Weight weight{nvinfer1::DataType::kFLOAT, | ||
| static_cast<void*>(weight_data), | ||
| static_cast<size_t>(Y_t->numel())}; | ||
| float* bias_data = nullptr; | ||
| size_t bias_size = 0; | ||
|
|
||
| TensorRTEngine::Weight bias{nvinfer1::DataType::kFLOAT, | ||
| static_cast<void*>(bias_data), bias_size}; | ||
| // In conv3d_transpose output channels = filter_dims[1] * groups | ||
| auto* layer = (op_desc.Type() == "conv3d_transpose") | ||
| ? fadd_layer(X, n_input * groups, nv_ksize, weight, bias) | ||
| : fadd_layer(X, n_output, nv_ksize, weight, bias); | ||
|
|
||
| PADDLE_ENFORCE_NOT_NULL( | ||
| layer, platform::errors::Fatal("TensorRT create conv3d/conv3d_transpose" | ||
| " layer failed.")); | ||
| layer->setStrideNd(nv_strides); | ||
| layer->setPaddingNd(nv_paddings); | ||
| layer->setNbGroups(groups); | ||
| if (padding_algorithm == "SAME") { | ||
| layer->setPaddingMode(nvinfer1::PaddingMode::kSAME_UPPER); | ||
| } | ||
| // set dilations | ||
| fset_dilation(layer, nv_dilations); | ||
|
|
||
| auto output_name = op_desc.Output("Output").front(); | ||
| layer->setName((name + " (Output: " + output_name + ")").c_str()); | ||
| layer->getOutput(0)->setName(output_name.c_str()); | ||
| engine->SetITensor(output_name, layer->getOutput(0)); | ||
|
|
||
| if (test_mode) { | ||
| engine->DeclareOutput(output_name); | ||
| } | ||
| } | ||
|
|
||
| class Conv3dOpConverter : public OpConverter { | ||
| public: | ||
| void operator()(const framework::proto::OpDesc& op, | ||
| const framework::Scope& scope, bool test_mode) override { | ||
| ConvertConv3d( | ||
| engine_, op, scope, test_mode, | ||
| [&](nvinfer1::ITensor* inputs, int n_output, /* Conv output maps */ | ||
| nvinfer1::Dims& ksize, TensorRTEngine::Weight& weight, | ||
| TensorRTEngine::Weight& bias) -> nvinfer1::IConvolutionLayer* { | ||
| auto* layer = | ||
| TRT_ENGINE_ADD_LAYER(engine_, ConvolutionNd, *inputs, n_output, | ||
| ksize, weight.get(), bias.get()); | ||
| return layer; | ||
| }, | ||
| [](nvinfer1::IConvolutionLayer* layer, nvinfer1::Dims& dilations) { | ||
| layer->setDilationNd(dilations); | ||
| }, | ||
| "conv3d"); | ||
| } | ||
| }; | ||
|
|
||
| class Deconv3dOpConverter : public OpConverter { | ||
| public: | ||
| void operator()(const framework::proto::OpDesc& op, | ||
| const framework::Scope& scope, bool test_mode) override { | ||
| ConvertConv3d( | ||
| engine_, op, scope, test_mode, | ||
| [&](nvinfer1::ITensor* inputs, int n_output, /* Deconv input maps */ | ||
| nvinfer1::Dims& ksize, TensorRTEngine::Weight& weight, | ||
| TensorRTEngine::Weight& bias) -> nvinfer1::IDeconvolutionLayer* { | ||
| auto* layer = | ||
| TRT_ENGINE_ADD_LAYER(engine_, DeconvolutionNd, *inputs, n_output, | ||
| ksize, weight.get(), bias.get()); | ||
| return layer; | ||
| }, | ||
| [](nvinfer1::IDeconvolutionLayer* layer, nvinfer1::Dims& dilations) {}, | ||
| "conv3d_transpose"); | ||
| } | ||
| }; | ||
|
|
||
| } // namespace tensorrt | ||
| } // namespace inference | ||
| } // namespace paddle | ||
|
|
||
| REGISTER_TRT_OP_CONVERTER(conv3d, Conv3dOpConverter); | ||
| REGISTER_TRT_OP_CONVERTER(conv3d_transpose, Deconv3dOpConverter); | ||
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
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
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
Oops, something went wrong.
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.
Uh oh!
There was an error while loading. Please reload this page.