/* Copyright (c) 2016 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 #include #include "paddle/fluid/platform/enforce.h" #include "paddle/fluid/platform/variant.h" namespace paddle { namespace platform { struct CPUPlace { // WORKAROUND: for some reason, omitting this constructor // causes errors with boost 1.59 and OSX CPUPlace() {} // needed for variant equality comparison inline bool operator==(const CPUPlace &) const { return true; } inline bool operator!=(const CPUPlace &) const { return false; } inline bool operator<(const CPUPlace &) const { return false; } }; struct CUDAPlace { CUDAPlace() : CUDAPlace(0) {} explicit CUDAPlace(int d) : device(d) {} inline int GetDeviceId() const { return device; } // needed for variant equality comparison inline bool operator==(const CUDAPlace &o) const { return device == o.device; } inline bool operator!=(const CUDAPlace &o) const { return !(*this == o); } inline bool operator<(const CUDAPlace &o) const { return device < o.device; } int device; }; struct CUDAPinnedPlace { CUDAPinnedPlace() {} // needed for variant equality comparison inline bool operator==(const CUDAPinnedPlace &) const { return true; } inline bool operator!=(const CUDAPinnedPlace &) const { return false; } inline bool operator<(const CUDAPinnedPlace &) const { return false; } }; struct IsCUDAPlace : public boost::static_visitor { bool operator()(const CPUPlace &) const { return false; } bool operator()(const CUDAPlace &gpu) const { return true; } bool operator()(const CUDAPinnedPlace &) const { return false; } }; struct IsCPUPlace : public boost::static_visitor { bool operator()(const CPUPlace &cpu) const { return true; } bool operator()(const CUDAPlace &) const { return false; } bool operator()(const CUDAPinnedPlace &) const { return false; } }; struct IsCUDAPinnedPlace : public boost::static_visitor { bool operator()(const CPUPlace &) const { return false; } bool operator()(const CUDAPlace &) const { return false; } bool operator()(const CUDAPinnedPlace &cuda_pinned) const { return true; } }; typedef boost::variant Place; using PlaceList = std::vector; void set_place(const Place &); const Place &get_place(); const CUDAPlace default_gpu(); const CPUPlace default_cpu(); const CUDAPinnedPlace default_cuda_pinned(); bool is_gpu_place(const Place &); bool is_cpu_place(const Place &); bool is_cuda_pinned_place(const Place &); bool places_are_same_class(const Place &, const Place &); bool is_same_place(const Place &, const Place &); std::ostream &operator<<(std::ostream &, const Place &); template struct PlaceVisitorWrapper : public boost::static_visitor { const Visitor &visitor_; explicit PlaceVisitorWrapper(const Visitor &visitor) : visitor_(visitor) {} typename Visitor::result_type operator()(const CPUPlace &cpu) const { return visitor_(cpu); } typename Visitor::result_type operator()(const CUDAPlace &cuda) const { #ifdef PADDLE_WITH_CUDA return visitor_(cuda); #else PADDLE_THROW("Paddle is not compiled with CUDA. Cannot visit cuda device"); return typename Visitor::result_type(); #endif } typename Visitor::result_type operator()( const CUDAPinnedPlace &cuda_pinned) const { #ifdef PADDLE_WITH_CUDA return visitor_(cuda_pinned); #else PADDLE_THROW("Paddle is not compiled with CUDA. Cannot visit cuda_pinned"); return typename Visitor::result_type(); #endif } }; template typename Visitor::result_type VisitPlace(const Place &place, const Visitor &visitor) { return boost::apply_visitor(PlaceVisitorWrapper(visitor), place); } } // namespace platform } // namespace paddle