dltsTrialConfig.ts 362 Bytes
Newer Older
George Cheng's avatar
George Cheng committed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT license.

import { TrialConfig } from "training_service/common/trialConfig";

export class DLTSTrialConfig extends TrialConfig {
  public constructor(
    command: string,
    codeDir: string,
    gpuNum: number,
    public readonly image: string
  ) {
    super(command, codeDir, gpuNum);
  }
}