blob: b0eb934add468de7332358d571f9f6a83f4eec74 [file] [log] [blame]
// Copyright 2021 The Fuchsia Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
syntax = "proto3";
package recipes.fuchsia.contrib.clang_ml_training;
import "google/protobuf/struct.proto";
message InputProperties {
// Manifest project name.
string project = 1;
// Jiri manifest to use.
string manifest = 2;
// Manifest project remote.
string remote = 3;
// Project revision.
string revision = 4;
// Mapping from target arch to fint parameter file path.
map<string, string> fint_params_paths = 5;
// Number of iterations.
int32 num_iterations = 6;
}