Initial import: grid-bot — grid trading bot for BTC-USDT on Cifra Markets
This commit is contained in:
@@ -0,0 +1,36 @@
|
||||
#if !defined(TORCH_STABLE_ONLY) && !defined(TORCH_TARGET_VERSION)
|
||||
#pragma once
|
||||
|
||||
#include <c10/util/Exception.h>
|
||||
|
||||
#include <ostream>
|
||||
#include <string>
|
||||
|
||||
namespace at {
|
||||
|
||||
enum class ROCmFABackend : int8_t { Default, AOTriton, Ck };
|
||||
|
||||
inline std::string ROCmFABackendToString(at::ROCmFABackend backend) {
|
||||
switch (backend) {
|
||||
case ROCmFABackend::Default:
|
||||
return "at::ROCmFABackend::Default";
|
||||
case ROCmFABackend::AOTriton:
|
||||
return "at::ROCmFABackend::AOTriton";
|
||||
case ROCmFABackend::Ck:
|
||||
return "at::ROCmFABackend::Ck";
|
||||
default:
|
||||
TORCH_CHECK(false, "Unknown ROCm flash attention backend")
|
||||
}
|
||||
}
|
||||
|
||||
inline std::ostream& operator<<(
|
||||
std::ostream& stream,
|
||||
at::ROCmFABackend backend) {
|
||||
return stream << ROCmFABackendToString(backend);
|
||||
}
|
||||
|
||||
} // namespace at
|
||||
|
||||
#else
|
||||
#error "This file should not be included when either TORCH_STABLE_ONLY or TORCH_TARGET_VERSION is defined."
|
||||
#endif // !defined(TORCH_STABLE_ONLY) && !defined(TORCH_TARGET_VERSION)
|
||||
Reference in New Issue
Block a user