28 lines
608 B
C++
28 lines
608 B
C++
#pragma once
|
|
|
|
#include <c10/util/Exception.h>
|
|
|
|
#include <ostream>
|
|
#include <string>
|
|
|
|
namespace at {
|
|
|
|
enum class BlasBackend : int8_t { Cublas, Cublaslt };
|
|
|
|
inline std::string BlasBackendToString(at::BlasBackend backend) {
|
|
switch (backend) {
|
|
case BlasBackend::Cublas:
|
|
return "at::BlasBackend::Cublas";
|
|
case BlasBackend::Cublaslt:
|
|
return "at::BlasBackend::Cublaslt";
|
|
default:
|
|
TORCH_CHECK(false, "Unknown blas backend");
|
|
}
|
|
}
|
|
|
|
inline std::ostream& operator<<(std::ostream& stream, at::BlasBackend backend) {
|
|
return stream << BlasBackendToString(backend);
|
|
}
|
|
|
|
} // namespace at
|