| 80 | SmallVector<Execution> executions; |
| 81 | |
| 82 | nlohmann::json detail() { |
| 83 | nlohmann::json args; |
| 84 | for (auto&& [name, value] : params) { |
| 85 | args[name] = value; |
| 86 | } |
| 87 | args["__id__"] = id; |
| 88 | args["__name__"] = name; |
| 89 | args["__device__"] = device.to_string(); |
| 90 | return args; |
| 91 | } |
| 92 | }; |
| 93 | |
| 94 | template <typename TProp> |