Files
alibaba--mnn/apps/mnncli/include/handlers/benchmark_command_handler.hpp
2026-07-13 13:33:03 +08:00

24 lines
430 B
C++

//
// benchmark_command_handler.hpp
//
// Handler for 'benchmark' command
//
#pragma once
#include "cli_command_handler.hpp"
namespace mnncli {
struct ParsedCommand;
struct CommandSpec;
class BenchmarkCommandHandler : public ICommandHandler {
public:
std::string CommandName() const override;
int Handle(const ParsedCommand& cmd) override;
const CommandSpec& GetSpec() const override;
};
} // namespace mnncli