Interface TestResultsOrBuilder

All Superinterfaces:
MessageLiteOrBuilder, MessageOrBuilder
All Known Implementing Classes:
TestResults, TestResults.Builder

public interface TestResultsOrBuilder extends MessageOrBuilder
  • Method Details

    • getTarget

      String getTarget()
      The target of the run, e.g.:
       //tensorflow/core:kernels_adjust_contrast_op_benchmark_test
      
      string target = 1;
      Returns:
      The target.
    • getTargetBytes

      ByteString getTargetBytes()
      The target of the run, e.g.:
       //tensorflow/core:kernels_adjust_contrast_op_benchmark_test
      
      string target = 1;
      Returns:
      The bytes for target.
    • hasEntries

      boolean hasEntries()
      The list of tests or benchmarks in this run.
      
      .tensorflow.BenchmarkEntries entries = 2;
      Returns:
      Whether the entries field is set.
    • getEntries

      BenchmarkEntries getEntries()
      The list of tests or benchmarks in this run.
      
      .tensorflow.BenchmarkEntries entries = 2;
      Returns:
      The entries.
    • getEntriesOrBuilder

      BenchmarkEntriesOrBuilder getEntriesOrBuilder()
      The list of tests or benchmarks in this run.
      
      .tensorflow.BenchmarkEntries entries = 2;
    • hasBuildConfiguration

      boolean hasBuildConfiguration()
      The configuration of the build (compiled opt? with cuda? any copts?)
      
      .tensorflow.BuildConfiguration build_configuration = 3;
      Returns:
      Whether the buildConfiguration field is set.
    • getBuildConfiguration

      BuildConfiguration getBuildConfiguration()
      The configuration of the build (compiled opt? with cuda? any copts?)
      
      .tensorflow.BuildConfiguration build_configuration = 3;
      Returns:
      The buildConfiguration.
    • getBuildConfigurationOrBuilder

      BuildConfigurationOrBuilder getBuildConfigurationOrBuilder()
      The configuration of the build (compiled opt? with cuda? any copts?)
      
      .tensorflow.BuildConfiguration build_configuration = 3;
    • hasCommitId

      boolean hasCommitId()
      The commit id (git hash or changelist)
      
      .tensorflow.CommitId commit_id = 4;
      Returns:
      Whether the commitId field is set.
    • getCommitId

      CommitId getCommitId()
      The commit id (git hash or changelist)
      
      .tensorflow.CommitId commit_id = 4;
      Returns:
      The commitId.
    • getCommitIdOrBuilder

      CommitIdOrBuilder getCommitIdOrBuilder()
      The commit id (git hash or changelist)
      
      .tensorflow.CommitId commit_id = 4;
    • getStartTime

      long getStartTime()
      The time the run started (in seconds of UTC time since Unix epoch)
      
      int64 start_time = 5;
      Returns:
      The startTime.
    • getRunTime

      double getRunTime()
      The amount of time the total run took (wall time in seconds)
      
      double run_time = 6;
      Returns:
      The runTime.
    • hasMachineConfiguration

      boolean hasMachineConfiguration()
      Machine-specific parameters (Platform and CPU info)
      
      .tensorflow.MachineConfiguration machine_configuration = 7;
      Returns:
      Whether the machineConfiguration field is set.
    • getMachineConfiguration

      MachineConfiguration getMachineConfiguration()
      Machine-specific parameters (Platform and CPU info)
      
      .tensorflow.MachineConfiguration machine_configuration = 7;
      Returns:
      The machineConfiguration.
    • getMachineConfigurationOrBuilder

      MachineConfigurationOrBuilder getMachineConfigurationOrBuilder()
      Machine-specific parameters (Platform and CPU info)
      
      .tensorflow.MachineConfiguration machine_configuration = 7;
    • hasRunConfiguration

      boolean hasRunConfiguration()
      Run-specific parameters (arguments, etc)
      
      .tensorflow.RunConfiguration run_configuration = 8;
      Returns:
      Whether the runConfiguration field is set.
    • getRunConfiguration

      RunConfiguration getRunConfiguration()
      Run-specific parameters (arguments, etc)
      
      .tensorflow.RunConfiguration run_configuration = 8;
      Returns:
      The runConfiguration.
    • getRunConfigurationOrBuilder

      RunConfigurationOrBuilder getRunConfigurationOrBuilder()
      Run-specific parameters (arguments, etc)
      
      .tensorflow.RunConfiguration run_configuration = 8;
    • getName

      String getName()
      Benchmark target identifier.
      
      string name = 9;
      Returns:
      The name.
    • getNameBytes

      ByteString getNameBytes()
      Benchmark target identifier.
      
      string name = 9;
      Returns:
      The bytes for name.
    • getBenchmarkTypeValue

      int getBenchmarkTypeValue()
      .tensorflow.TestResults.BenchmarkType benchmark_type = 10;
      Returns:
      The enum numeric value on the wire for benchmarkType.
    • getBenchmarkType

      TestResults.BenchmarkType getBenchmarkType()
      .tensorflow.TestResults.BenchmarkType benchmark_type = 10;
      Returns:
      The benchmarkType.
    • getRunMode

      String getRunMode()
      Used for differentiating between continuous and debug builds.
      Must be one of:
      * cbuild: results from continuous build.
      * presubmit: results from oneshot requests.
      * culprit: results from culprit finder rerun.
      
      string run_mode = 11;
      Returns:
      The runMode.
    • getRunModeBytes

      ByteString getRunModeBytes()
      Used for differentiating between continuous and debug builds.
      Must be one of:
      * cbuild: results from continuous build.
      * presubmit: results from oneshot requests.
      * culprit: results from culprit finder rerun.
      
      string run_mode = 11;
      Returns:
      The bytes for runMode.
    • getTfVersion

      String getTfVersion()
      TensorFlow version this benchmark runs against.
      This can be either set to full version or just the major version.
      
      string tf_version = 12;
      Returns:
      The tfVersion.
    • getTfVersionBytes

      ByteString getTfVersionBytes()
      TensorFlow version this benchmark runs against.
      This can be either set to full version or just the major version.
      
      string tf_version = 12;
      Returns:
      The bytes for tfVersion.