218 lines
5.8 KiB
C++
218 lines
5.8 KiB
C++
/* 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. */
|
|
|
|
#pragma once
|
|
|
|
#include <ostream>
|
|
|
|
#include "paddle/common/exception.h"
|
|
#include "paddle/phi/common/place.h"
|
|
|
|
namespace paddle {
|
|
namespace experimental {
|
|
|
|
/**
|
|
* [ Why need Backend? ]
|
|
*
|
|
* Backend not only means place. Backend is a superset of place.
|
|
*
|
|
* Place cannot indicate the difference in calculation methods on the device,
|
|
* but in order to make the boundary of the kernel clearer and the function
|
|
* more specific, we need to distinguish the calculation method.
|
|
*
|
|
* Such as the kernel for CPU device, it can be a native CPU kernel,
|
|
* or a kernel implemented by oneDNN library.
|
|
*
|
|
* Note(chenweihang): HIP is not needed now, we can added it if needed
|
|
* in the future
|
|
*/
|
|
enum class Backend : uint8_t {
|
|
UNDEFINED = 0,
|
|
|
|
// basic kernel backend
|
|
CPU,
|
|
// the third library backend
|
|
ONEDNN,
|
|
|
|
// acceleration device's backend
|
|
GPU,
|
|
// the third library backend
|
|
GPUDNN, // cuDNN and hipDNN
|
|
|
|
// various acceleration devices' backends
|
|
XPU, // XPU currently does not exist at the same time as CUDA
|
|
IPU,
|
|
|
|
// paddle kernel primitives backend
|
|
KPS,
|
|
|
|
// custom device reference
|
|
CUSTOM,
|
|
|
|
// end of backend types
|
|
NUM_BACKENDS,
|
|
|
|
DEFAULT_CUSTOM_DEVICE,
|
|
|
|
/**
|
|
* [ Why we need ALL in basic kernel key member? ]
|
|
*
|
|
* For Tensor, ALL represents an illegal Backend, but for Kernel, some
|
|
* kernels may be device-independent by nature, such as reshape; and when
|
|
* and some kernels are also device-independent when implemented based on
|
|
* primitive API.
|
|
*
|
|
* Note: ALL_BACKEND only used for Kernel registration and selection
|
|
*/
|
|
ALL_BACKEND = UNDEFINED,
|
|
};
|
|
|
|
inline std::ostream& operator<<(std::ostream& os, Backend backend) {
|
|
switch (backend) {
|
|
case Backend::UNDEFINED:
|
|
os << "Undefined";
|
|
break;
|
|
case Backend::CPU:
|
|
os << "CPU";
|
|
break;
|
|
case Backend::GPU:
|
|
os << "GPU";
|
|
break;
|
|
case Backend::XPU:
|
|
os << "XPU";
|
|
break;
|
|
case Backend::ONEDNN:
|
|
os << "ONEDNN";
|
|
break;
|
|
case Backend::GPUDNN:
|
|
os << "GPUDNN";
|
|
break;
|
|
case Backend::KPS:
|
|
os << "KPS";
|
|
break;
|
|
case Backend::IPU:
|
|
os << "IPU";
|
|
break;
|
|
case Backend::CUSTOM:
|
|
os << "CUSTOM";
|
|
break;
|
|
default: {
|
|
size_t device_type_id_ = static_cast<size_t>(backend) -
|
|
static_cast<size_t>(Backend::NUM_BACKENDS);
|
|
std::string device_type =
|
|
phi::CustomRegisteredDeviceMap::Instance().GetGlobalDeviceType(
|
|
device_type_id_);
|
|
if (!device_type.empty()) {
|
|
os << device_type;
|
|
} else {
|
|
PD_THROW(
|
|
"Invalid enum backend type `", static_cast<int>(backend), "`.");
|
|
}
|
|
}
|
|
}
|
|
return os;
|
|
}
|
|
|
|
inline Backend StringToBackend(const char* backend_cstr) {
|
|
std::string s(backend_cstr);
|
|
if (s == std::string("Undefined")) {
|
|
return Backend::UNDEFINED;
|
|
}
|
|
if (s == std::string("CPU")) {
|
|
return Backend::CPU;
|
|
} else if (s == std::string("GPU")) {
|
|
return Backend::GPU;
|
|
} else if (s == std::string("XPU")) {
|
|
return Backend::XPU;
|
|
} else if (s == std::string("OneDNN")) {
|
|
return Backend::ONEDNN;
|
|
} else if (s == std::string("GPUDNN")) {
|
|
return Backend::GPUDNN;
|
|
} else if (s == std::string("KPS")) {
|
|
#if defined(PADDLE_WITH_CUDA) || defined(PADDLE_WITH_HIP)
|
|
// NOTE(chenweihang) KPS is not yet a complete backend, and it still needs
|
|
// to be converted
|
|
// to GPU in the GPU environment
|
|
return Backend::GPU;
|
|
#else
|
|
return Backend::KPS;
|
|
#endif
|
|
} else if (s == std::string("IPU")) {
|
|
return Backend::IPU;
|
|
} else if (s == std::string("Custom")) {
|
|
return Backend::CUSTOM;
|
|
} else {
|
|
return static_cast<Backend>(static_cast<size_t>(Backend::NUM_BACKENDS) +
|
|
phi::CustomRegisteredDeviceMap::Instance()
|
|
.GetOrRegisterGlobalDeviceTypeId(s));
|
|
}
|
|
}
|
|
|
|
inline std::string BackendToString(const Backend& backend) {
|
|
switch (backend) {
|
|
case Backend::UNDEFINED:
|
|
return "Undefined(ALL_BACKEND)";
|
|
case Backend::CPU:
|
|
return "CPU";
|
|
case Backend::GPU:
|
|
return "GPU";
|
|
case Backend::XPU:
|
|
return "XPU";
|
|
case Backend::ONEDNN:
|
|
return "ONEDNN";
|
|
case Backend::GPUDNN:
|
|
return "GPUDNN";
|
|
case Backend::KPS:
|
|
return "KPS";
|
|
case Backend::IPU:
|
|
return "IPU";
|
|
case Backend::CUSTOM:
|
|
return "CUSTOM";
|
|
default: {
|
|
size_t device_type_id_ = static_cast<size_t>(backend) -
|
|
static_cast<size_t>(Backend::NUM_BACKENDS);
|
|
std::string device_type =
|
|
phi::CustomRegisteredDeviceMap::Instance().GetGlobalDeviceType(
|
|
device_type_id_);
|
|
if (!device_type.empty()) {
|
|
return device_type;
|
|
} else {
|
|
PD_THROW(
|
|
"Invalid enum backend type `", static_cast<int>(backend), "`.");
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
inline Backend get_accelerat_backend() {
|
|
#if defined(PADDLE_WITH_CUDA) || defined(PADDLE_WITH_HIP)
|
|
return Backend::GPU;
|
|
#elif defined(PADDLE_WITH_XPU)
|
|
return Backend::XPU;
|
|
#elif defined(PADDLE_WITH_IPU)
|
|
return Backend::IPU;
|
|
#elif defined(PADDLE_WITH_CUSTOM_DEVICE)
|
|
return Backend::DEFAULT_CUSTOM_DEVICE;
|
|
#else
|
|
return Backend::UNDEFINED;
|
|
#endif
|
|
}
|
|
|
|
} // namespace experimental
|
|
} // namespace paddle
|
|
|
|
namespace phi {
|
|
using Backend = paddle::experimental::Backend;
|
|
}
|