parent
326221acec
commit
6f6f330423
@ -1,4 +1,3 @@
|
|||||||
nv_test(test_tensorrt SRCS test_tensorrt.cc DEPS dynload_cuda device_context dynamic_loader)
|
nv_test(test_tensorrt SRCS test_tensorrt.cc DEPS dynload_cuda device_context dynamic_loader)
|
||||||
nv_test(test_tensorrt_engine SRCS test_engine.cc engine.cc DEPS dynload_cuda)
|
nv_test(test_tensorrt_engine SRCS test_engine.cc engine.cc DEPS dynload_cuda)
|
||||||
cc_library(tensorrt DEPS tensorrt_convert)
|
|
||||||
add_subdirectory(convert)
|
add_subdirectory(convert)
|
||||||
|
@ -1,2 +1,2 @@
|
|||||||
nv_library(tensorrt_convert SRCS convert.cc mul_op.cc conv2d_op.cc DEPS dynload_cuda)
|
file(GLOB TENSORRT_OPS RELATIVE "${CMAKE_CURRENT_SOURCE_DIR}" "*_op.cc")
|
||||||
nv_test(test_tensorrt_convert SRCS test_convert.cc DEPS tensorrt paddle_fluid)
|
nv_test(test_tensorrt_op_converter SRCS test_op_converter.cc ${TENSORRT_OPS} DEPS ${FLUID_CORE_MODULES})
|
||||||
|
@ -1,31 +0,0 @@
|
|||||||
/* 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/convert.h"
|
|
||||||
|
|
||||||
namespace paddle {
|
|
||||||
namespace inference {
|
|
||||||
namespace tensorrt {
|
|
||||||
|
|
||||||
void TensorRTConverter::ConvertBlock(const framework::BlockDesc& block) {
|
|
||||||
for (auto op : block.AllOps()) {
|
|
||||||
std::string type = op->Type();
|
|
||||||
OpConverter op_converter;
|
|
||||||
op_converter.Convert(*op);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
} // namespace tensorrt
|
|
||||||
} // namespace inference
|
|
||||||
} // namespace paddle
|
|
@ -1,69 +0,0 @@
|
|||||||
/* 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. */
|
|
||||||
|
|
||||||
#pragma once
|
|
||||||
|
|
||||||
#include <NvInfer.h>
|
|
||||||
#include <functional>
|
|
||||||
#include <string>
|
|
||||||
#include <unordered_map>
|
|
||||||
|
|
||||||
#include "paddle/fluid/framework/block_desc.h"
|
|
||||||
#include "paddle/fluid/framework/scope.h"
|
|
||||||
|
|
||||||
namespace paddle {
|
|
||||||
namespace inference {
|
|
||||||
namespace tensorrt {
|
|
||||||
|
|
||||||
class OpConverter {
|
|
||||||
public:
|
|
||||||
OpConverter() {}
|
|
||||||
|
|
||||||
void Convert(const framework::OpDesc& op) {
|
|
||||||
std::string type = op.Type();
|
|
||||||
OpConverter& op_converter = this->register_op_converter_[type];
|
|
||||||
op_converter.Convert(op);
|
|
||||||
}
|
|
||||||
|
|
||||||
template <typename T>
|
|
||||||
static void Register(const std::string key) {
|
|
||||||
register_op_converter_[key] = T();
|
|
||||||
}
|
|
||||||
static std::unordered_map<std::string, OpConverter> register_op_converter_;
|
|
||||||
|
|
||||||
// fluid inference scope
|
|
||||||
framework::Scope* scope_;
|
|
||||||
// tensorrt input/output tensor list, whose key is the fluid variable name,
|
|
||||||
// and value is the pointer position of tensorrt tensor
|
|
||||||
std::unordered_map<std::string, nvinfer1::ITensor*> tr_tensors_;
|
|
||||||
};
|
|
||||||
|
|
||||||
#define REGISTER_TRT_OP_CONVETER(op_type, convert_class) \
|
|
||||||
class convert_class : public OpConverter { \
|
|
||||||
public: \
|
|
||||||
convert_class() { OpConverter::Register<convert_class>(#op_type); } \
|
|
||||||
void Convert(const framework::OpDesc& op); \
|
|
||||||
}
|
|
||||||
|
|
||||||
class TensorRTConverter {
|
|
||||||
public:
|
|
||||||
TensorRTConverter() {}
|
|
||||||
|
|
||||||
// convert fluid block to tensorrt network
|
|
||||||
void ConvertBlock(const framework::BlockDesc& block);
|
|
||||||
};
|
|
||||||
|
|
||||||
} // namespace tensorrt
|
|
||||||
} // namespace inference
|
|
||||||
} // namespace paddle
|
|
@ -0,0 +1,89 @@
|
|||||||
|
/* 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. */
|
||||||
|
|
||||||
|
#pragma once
|
||||||
|
|
||||||
|
#include <string>
|
||||||
|
#include <unordered_map>
|
||||||
|
#include "paddle/fluid/framework/block_desc.h"
|
||||||
|
#include "paddle/fluid/framework/scope.h"
|
||||||
|
#include "paddle/fluid/inference/tensorrt/engine.h"
|
||||||
|
|
||||||
|
namespace paddle {
|
||||||
|
namespace inference {
|
||||||
|
namespace tensorrt {
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Convert Op from Fluid to TensorRT Engine.
|
||||||
|
*/
|
||||||
|
class OpConverter {
|
||||||
|
public:
|
||||||
|
OpConverter() {}
|
||||||
|
|
||||||
|
virtual void operator()(const framework::OpDesc& op) {}
|
||||||
|
void Execute(const framework::OpDesc& op) {
|
||||||
|
std::string type = op.Type();
|
||||||
|
auto it = converters_.find(type);
|
||||||
|
PADDLE_ENFORCE(it != converters_.end(), "no OpConverter for optype [%s]",
|
||||||
|
type);
|
||||||
|
(*it->second)(op);
|
||||||
|
}
|
||||||
|
|
||||||
|
static OpConverter& Global() {
|
||||||
|
static auto* x = new OpConverter;
|
||||||
|
return *x;
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T>
|
||||||
|
void Register(const std::string& key) {
|
||||||
|
converters_[key] = new T;
|
||||||
|
}
|
||||||
|
|
||||||
|
virtual ~OpConverter() {}
|
||||||
|
|
||||||
|
private:
|
||||||
|
// registered op converter map, whose key is the fluid op type, and value is
|
||||||
|
// the pointer position of corresponding OpConverter class.
|
||||||
|
std::unordered_map<std::string, OpConverter*> converters_;
|
||||||
|
|
||||||
|
// fluid inference scope
|
||||||
|
framework::Scope* scope_;
|
||||||
|
// tensorrt input/output tensor map, whose key is the fluid variable name,
|
||||||
|
// and value is the pointer position of tensorrt tensor
|
||||||
|
std::unordered_map<std::string, nvinfer1::ITensor*> tr_tensors_;
|
||||||
|
};
|
||||||
|
|
||||||
|
#define REGISTER_TRT_OP_CONVERTER(op_type__, Converter__) \
|
||||||
|
struct trt_##op_type__##_converter { \
|
||||||
|
trt_##op_type__##_converter() { \
|
||||||
|
OpConverter::Global().Register<Converter__>(#op_type__); \
|
||||||
|
} \
|
||||||
|
}; \
|
||||||
|
trt_##op_type__##_converter trt_##op_type__##_converter__;
|
||||||
|
|
||||||
|
class BlockConverter {
|
||||||
|
public:
|
||||||
|
BlockConverter() {}
|
||||||
|
|
||||||
|
// convert fluid block to tensorrt network
|
||||||
|
void ConvertBlock(const framework::BlockDesc& block) {
|
||||||
|
for (auto op : block.AllOps()) {
|
||||||
|
OpConverter::Global().Execute(*op);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
} // namespace tensorrt
|
||||||
|
} // namespace inference
|
||||||
|
} // namespace paddle
|
Loading…
Reference in new issue