MCPcopy Create free account
hub / github.com/It4innovations/hyperqueue / cluster_generate

Function cluster_generate

benchmarks/postprocess.py:31–37  ·  view source on GitHub ↗

Generate a HTML file with monitoring and profiling report for the given directory

(
    directory: Path = typer.Argument(..., exists=True, file_okay=False, help="Directory containing `cluster.json`"),
    output: Path = Path("out.html"),
)

Source from the content-addressed store, hash-verified

29
30@cluster.command("generate")
31def cluster_generate(
32 directory: Path = typer.Argument(..., exists=True, file_okay=False, help="Directory containing `cluster.json`"),
33 output: Path = Path("out.html"),
34):
35 """Generate a HTML file with monitoring and profiling report for the given directory"""
36 report = ClusterReport.load(directory)
37 generate_cluster_report(report, output=output)
38
39
40@summary.command("text")

Callers

nothing calls this directly

Calls 2

generate_cluster_reportFunction · 0.90
loadMethod · 0.80

Tested by

no test coverage detected