Intro-ops/include/operator_runtime/detail/operation.h

14 lines
167 B
C++

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