report/generate_master_report.py [390:414]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  parser.add_argument(
      "--storage_bucket",
      help="The GCP Storage bucket to fetch benchmark data from/upload the reports to."
  )
  parser.add_argument(
      "--upload_report",
      type=bool,
      default=False,
      help="Whether to upload the report.")
  parser.add_argument(
      "--bigquery_table",
      help="The BigQuery table to fetch data from. In the format: project:table_identifier."
  )
  parser.add_argument(
      "--report_name",
      type=str,
      help="The name of the generated report.",
      default="report")
  parsed_args = parser.parse_args(args)

  date = (
      datetime.datetime.strptime(parsed_args.date, "%Y-%m-%d").date()
      if parsed_args.date else datetime.date.today())

  bq_project, bq_table = parsed_args.bigquery_table.split(":")
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



report/generate_report.py [696:720]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  parser.add_argument(
      "--storage_bucket",
      help="The GCP Storage bucket to fetch benchmark data from/upload the reports to."
  )
  parser.add_argument(
      "--upload_report",
      type=bool,
      default=False,
      help="Whether to upload the report.")
  parser.add_argument(
      "--bigquery_table",
      help="The BigQuery table to fetch data from. In the format: project:table_identifier."
  )
  parser.add_argument(
      "--report_name",
      type=str,
      help="The name of the generated report.",
      default="report")
  parsed_args = parser.parse_args(args)

  date = (
      datetime.datetime.strptime(parsed_args.date, "%Y-%m-%d").date()
      if parsed_args.date else datetime.date.today())

  bq_project, bq_table = parsed_args.bigquery_table.split(":")
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



