You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
58 lines
2.0 KiB
58 lines
2.0 KiB
7 years ago
|
// 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
|
||
|
|
||
7 years ago
|
#include <memory>
|
||
|
#include <string>
|
||
7 years ago
|
#include <vector>
|
||
7 years ago
|
|
||
7 years ago
|
#include "paddle/fluid/framework/details/op_handle_base.h"
|
||
|
#include "paddle/fluid/framework/details/var_handle.h"
|
||
|
|
||
7 years ago
|
#include "paddle/fluid/framework/program_desc.h"
|
||
|
#include "paddle/fluid/platform/place.h"
|
||
|
|
||
7 years ago
|
#include "paddle/fluid/framework/ir/graph.h"
|
||
7 years ago
|
#include "paddle/fluid/framework/ir/pass.h"
|
||
7 years ago
|
|
||
7 years ago
|
namespace paddle {
|
||
|
namespace framework {
|
||
|
namespace details {
|
||
|
|
||
7 years ago
|
// all variable in each devices.
|
||
|
// The outside vector is the device vector. Each element of this vector is a
|
||
|
// map from variable name to variables. The variables, who have the same name,
|
||
|
// will have a differsent version. The offset in the
|
||
|
// `std::vector<std::unique_ptr<VarHandle>>` is the version of varaibles.
|
||
7 years ago
|
typedef std::vector<
|
||
|
std::unordered_map<std::string, std::vector<std::unique_ptr<VarHandle>>>>
|
||
|
GraphVars;
|
||
7 years ago
|
const char kGraphVars[] = "vars";
|
||
7 years ago
|
|
||
|
// aux variables to represent dependency. Useful to resolve data hazard.
|
||
7 years ago
|
typedef std::unordered_set<std::unique_ptr<VarHandleBase>> GraphDepVars;
|
||
7 years ago
|
const char kGraphDepVars[] = "dep_vars";
|
||
7 years ago
|
|
||
|
// all operators. NOTE that even we use a vector here, the operators is
|
||
|
// unordered.
|
||
7 years ago
|
typedef std::vector<std::unique_ptr<OpHandleBase>> GraphOps;
|
||
7 years ago
|
const char kGraphOps[] = "ops";
|
||
7 years ago
|
|
||
7 years ago
|
typedef std::unordered_map<std::string, int> ShardedVarDevice;
|
||
7 years ago
|
const char kShardedVarDevice[] = "sharded_var_device";
|
||
7 years ago
|
} // namespace details
|
||
|
} // namespace framework
|
||
|
} // namespace paddle
|