commit
e99597d35c
@ -0,0 +1,54 @@
|
||||
/* 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/framework/op_kernel_type.h"
|
||||
|
||||
namespace paddle {
|
||||
namespace framework {
|
||||
|
||||
size_t OpKernelType::Hash::operator()(const OpKernelType& key) const {
|
||||
int cur_loc = 0;
|
||||
|
||||
int place = key.place_.which();
|
||||
cur_loc += OpKernelType::kPlaceBits;
|
||||
|
||||
int data_type = static_cast<int>(key.data_type_) << cur_loc;
|
||||
cur_loc += OpKernelType::kPrimaryDTypeBits;
|
||||
|
||||
int data_layout = static_cast<int>(key.data_layout_) << cur_loc;
|
||||
cur_loc += OpKernelType::kLayoutBits;
|
||||
|
||||
int library_type = static_cast<int>(key.library_type_) << cur_loc;
|
||||
cur_loc += OpKernelType::kLibBits;
|
||||
|
||||
int customized_value = key.customized_type_value_;
|
||||
PADDLE_ENFORCE(customized_value < (1 << OpKernelType::kCustomizeBits));
|
||||
customized_value = customized_value << cur_loc;
|
||||
cur_loc += OpKernelType::kCustomizeBits;
|
||||
PADDLE_ENFORCE(cur_loc < 64);
|
||||
|
||||
std::hash<int> hasher;
|
||||
return hasher(place + data_type + data_layout + library_type +
|
||||
customized_value);
|
||||
}
|
||||
|
||||
bool OpKernelType::operator==(const OpKernelType& o) const {
|
||||
return platform::places_are_same_class(place_, o.place_) &&
|
||||
data_type_ == o.data_type_ && data_layout_ == o.data_layout_ &&
|
||||
library_type_ == o.library_type_ &&
|
||||
customized_type_value_ == o.customized_type_value_;
|
||||
}
|
||||
|
||||
} // namespace framework
|
||||
} // namespace paddle
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in new issue