// Copyright (c) 2021 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/infrt/host_context/value.h" #include "paddle/infrt/tensor/dense_tensor_view.h" namespace infrt { namespace host_context { ValueRef::ValueRef(int32_t val) : Shared(new Value(val)) {} ValueRef::ValueRef(int64_t val) : Shared(new Value(val)) {} ValueRef::ValueRef(float val) : Shared(new Value(val)) {} ValueRef::ValueRef(double val) : Shared(new Value(val)) {} ValueRef::ValueRef(bool val) : Shared(new Value(val)) {} const char* Value::type_info() const { return __type_info__; } void CopyTo(const Value& from, Value* to) { CHECK(from.valid()) << "from value is not valid, can't be copied"; CHECK(to) << "to is not valid"; visit( [&](auto&& arg) { using T = std::decay_t; if (std::is_same::value) to->data = reinterpret_cast(arg); else if (std::is_same::value) to->data = reinterpret_cast(arg); else if (std::is_same::value) to->data = reinterpret_cast(arg); else if (std::is_same::value) to->data = reinterpret_cast(arg); else if (std::is_same::value) to->data = reinterpret_cast(arg); else if (std::is_same::value) to->data = reinterpret_cast(arg); else if (std::is_same::value) to->data = reinterpret_cast(arg); else if (std::is_same::value) to->data = reinterpret_cast(arg); else if (std::is_same::value) to->data = reinterpret_cast(arg); else if (std::is_same::value) to->data = reinterpret_cast(arg); else if (std::is_same>::value) to->data = reinterpret_cast const&>(arg); else if (std::is_same>::value) to->data = reinterpret_cast const&>(arg); else if (std::is_same::value) to->data = reinterpret_cast(arg); #ifdef INFRT_WITH_PHI else if (std::is_same::value) to->data = reinterpret_cast<::phi::DenseTensor const&>(arg); #endif else LOG(FATAL) << "Not supported Value copy: " << typeid(T).name(); }, from.data); } } // namespace host_context } // namespace infrt