/******************************************************************************* * Copyright 2016-2018 Intel Corporation * * 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. *******************************************************************************/ #ifndef REORDER_PD_HPP #define REORDER_PD_HPP #include #include "mkldnn.h" #include "c_types_map.hpp" #include "memory_pd.hpp" #include "nstl.hpp" #include "primitive_attr.hpp" #include "type_helpers.hpp" #include "utils.hpp" namespace mkldnn { namespace impl { struct reorder_pd_t: public primitive_desc_t { reorder_pd_t(engine_t *engine, const primitive_attr_t *attr) : primitive_desc_t(engine, attr, primitive_kind::reorder) {} virtual ~reorder_pd_t() {} virtual const op_desc_t *op_desc() const override { return nullptr; } virtual void init_info() override { init_info_mem(this, this->info_); } virtual int n_inputs() const override { return 1; } virtual int n_outputs() const override { return 1; } float alpha() const { return attr()->output_scales_.scales_[0]; } float beta() const { int sum_idx = attr()->post_ops_.find(primitive_kind::sum); if (sum_idx == -1) { return 0.0; } else { return attr()->post_ops_.entry_[sum_idx].sum.scale; } } }; } } #endif // vim: et ts=4 sw=4 cindent cino^=l0,\:0,N-s