Intro-ops/include/operator_runtime/operation.h

19 lines
196 B
C++

#pragma once
#ifdef __cplusplus
#include <string>
namespace oprt {
struct OperationSpec {
std::string name;
std::string backend;
std::string kind;
};
} // namespace oprt
#endif