fix: (#17279)
1. infernce multi card occupy 2. facebox model inference occupy too much test=developrevert-17304-fix_default_paddle_version
parent
50ad9046c9
commit
7a3bb061d8
@ -0,0 +1,43 @@
|
||||
// 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/analysis/passes/adjust_cudnn_workspace_size_pass.h"
|
||||
|
||||
namespace paddle {
|
||||
namespace inference {
|
||||
namespace analysis {
|
||||
|
||||
void AdjustCudnnWorkSpacePass::RunImpl(Argument* argument) {
|
||||
if (!argument->use_gpu()) return;
|
||||
auto& graph = argument->main_graph();
|
||||
auto nodes = graph.Nodes();
|
||||
const int cudnn_workspace_size_MB = 64;
|
||||
const std::string attr_name = "workspace_size_MB";
|
||||
|
||||
for (auto& node : nodes) {
|
||||
if (!node->IsOp()) continue;
|
||||
auto* op_desc = node->Op();
|
||||
if (!op_desc->HasAttr(attr_name)) continue;
|
||||
op_desc->SetAttr(attr_name, cudnn_workspace_size_MB);
|
||||
op_desc->Flush();
|
||||
}
|
||||
}
|
||||
|
||||
std::string AdjustCudnnWorkSpacePass::repr() const {
|
||||
return "adjust-cudnn-work-space-pass";
|
||||
}
|
||||
|
||||
} // namespace analysis
|
||||
} // namespace inference
|
||||
} // namespace paddle
|
@ -0,0 +1,41 @@
|
||||
// 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 <vector>
|
||||
|
||||
#include "paddle/fluid/framework/ir/fuse_pass_base.h"
|
||||
#include "paddle/fluid/framework/scope.h"
|
||||
#include "paddle/fluid/inference/analysis/analysis_pass.h"
|
||||
#include "paddle/fluid/platform/place.h"
|
||||
|
||||
namespace paddle {
|
||||
namespace inference {
|
||||
namespace analysis {
|
||||
|
||||
/*
|
||||
* The default cudnn workspace is 4G, we set it to 64M in this pass, which
|
||||
* is applicable for most inference tasks.
|
||||
*/
|
||||
class AdjustCudnnWorkSpacePass : public AnalysisPass {
|
||||
public:
|
||||
void RunImpl(Argument *argument) override;
|
||||
std::string repr() const override;
|
||||
};
|
||||
|
||||
} // namespace analysis
|
||||
} // namespace inference
|
||||
} // namespace paddle
|
Loading…
Reference in new issue