Skip to content

Commit 51a7802

Browse files
tharvikJulienVig
authored andcommitted
cli: add host option
1 parent 67e3482 commit 51a7802

File tree

2 files changed

+9
-2
lines changed

2 files changed

+9
-2
lines changed

cli/src/args.ts

+8
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ interface BenchmarkArguments {
1111
roundDuration: number
1212
batchSize: number
1313
save: boolean
14+
host: URL
1415
}
1516

1617
type BenchmarkUnsafeArguments = Omit<BenchmarkArguments, 'provider'> & {
@@ -28,6 +29,13 @@ const unsafeArgs = parse<BenchmarkUnsafeArguments>(
2829
roundDuration: { type: Number, alias: 'r', description: 'Round duration (in epochs)', defaultValue: 2 },
2930
batchSize: { type: Number, alias: 'b', description: 'Training batch size', defaultValue: 10 },
3031
save: { type: Boolean, alias: 's', description: 'Save logs of benchmark', defaultValue: false },
32+
host: {
33+
type: (raw: string) => new URL(raw),
34+
typeLabel: "URL",
35+
description: "Host to connect to",
36+
defaultValue: new URL("http://localhost:8080"),
37+
},
38+
3139
help: { type: Boolean, optional: true, alias: 'h', description: 'Prints this usage guide' }
3240
},
3341
{

cli/src/cli.ts

+1-2
Original file line numberDiff line numberDiff line change
@@ -48,12 +48,11 @@ async function main<D extends DataType>(
4848
console.log(`Started ${task.trainingInformation.scheme} training of ${task.id}`)
4949
console.log({ args })
5050

51-
const url = new URL('http://localhost:8080')
5251
const dataSplits = await Promise.all(
5352
Range(0, numberOfUsers).map(async i => getTaskData(task.id, i))
5453
)
5554
const logs = await Promise.all(
56-
dataSplits.map(async data => await runUser(task, url, data as Dataset<DataFormat.Raw[D]>))
55+
dataSplits.map(async data => await runUser(task, args.host, data as Dataset<DataFormat.Raw[D]>))
5756
)
5857

5958
if (args.save) {

0 commit comments

Comments
 (0)