diff --git a/classes/OpenXdmod/Migration/Version851To900/DatabaseMigration.php b/classes/OpenXdmod/Migration/Version851To900/DatabaseMigration.php index 95b8ff2152..4e5516120b 100644 --- a/classes/OpenXdmod/Migration/Version851To900/DatabaseMigration.php +++ b/classes/OpenXdmod/Migration/Version851To900/DatabaseMigration.php @@ -5,12 +5,18 @@ use OpenXdmod\Setup\Console; use FilterListBuilder; use CCR\DB; +use ETL\Utilities; +use Xdmod\SlurmGresParser; /** * Migrate databases from version 8.5.1 to 9.0.0. */ class DatabasesMigration extends \OpenXdmod\Migration\DatabasesMigration { + /** + * Update batch export request realm names, rebuild storage filters lists. + * Prompt user and re-ingest slurm GPU data if desired. + */ public function execute() { parent::execute(); @@ -29,5 +35,63 @@ public function execute() $this->logger->warning('Failed to build filter list: ' . $e->getMessage()); $this->logger->warning('You may need to run xdmod-build-filter-lists manually'); } + + $console = Console::factory(); + $console->displayMessage(<<<"EOT" +This version of Open XDMoD has support for GPU metrics in the jobs realm. If +you have shredded Slurm job records in the past it is possible to extract the +GPU count from the ReqGRES data that was collected. This will require +re-ingest and re-aggregating your job data. +EOT + ); + $console->displayBlankLine(); + $reingestSlurmData = $console->prompt( + 'Re-ingest and re-aggregate Slurm job data?', + 'yes', + ['yes', 'no'] + ); + + if ($reingestSlurmData === 'yes') { + Utilities::runEtlPipeline(['jobs-gpu-migration-8_5_1-9_0_0'], $this->logger); + $this->updateSlurmGpuCount(); + // Use current time from the database in case clocks are not + // synchronized. + $lastModifiedStartDate = DB::factory('hpcdb')->query('SELECT NOW() AS now FROM dual')[0]['now']; + Utilities::runEtlPipeline( + ['jobs-gpu-re-ingest-8_5_1-9_0_0', 'jobs-xdw-aggregate'], + $this->logger, + ['last-modified-start-date' => $lastModifiedStartDate] + ); + $builder = new FilterListBuilder(); + $builder->setLogger($this->logger); + $builder->buildRealmLists('Jobs'); + } + } + + /** + * Update the GPU count for all slurm records in + * `mod_shredder`.`shredded_job_slurm` that have ReqGRES data. + */ + private function updateSlurmGpuCount() + { + $dbh = DB::factory('shredder'); + $dbh->beginTransaction(); + try { + $this->logger->notice('Querying slurm job records'); + $rows = $dbh->query("SELECT shredded_job_slurm_id AS id, req_gres FROM shredded_job_slurm WHERE req_gres != ''"); + $this->logger->notice('Updating slurm job records'); + $sth = $dbh->prepare('UPDATE shredded_job_slurm SET ngpus = :gpuCount WHERE shredded_job_slurm_id = :id'); + $gresParser = new SlurmGresParser(); + foreach ($rows as $row) { + $gres = $gresParser->parseReqGres($row['req_gres']); + $gpuCount = $gresParser->getGpuCountFromGres($gres); + $sth->execute(['gpuCount' => $gpuCount, 'id' => $row['id']]); + } + $dbh->commit(); + $this->logger->notice('Done updating slurm job records'); + } catch (Exception $e) { + $dbh->rollBack(); + $this->logger->err('Failed to update slurm job records: ' . $e->getMessage()); + } } } diff --git a/classes/OpenXdmod/Shredder/Slurm.php b/classes/OpenXdmod/Shredder/Slurm.php index 421971cbcf..22108aae72 100644 --- a/classes/OpenXdmod/Shredder/Slurm.php +++ b/classes/OpenXdmod/Shredder/Slurm.php @@ -12,6 +12,7 @@ use DateTimeZone; use CCR\DB\iDatabase; use OpenXdmod\Shredder; +use Xdmod\SlurmGresParser; class Slurm extends Shredder { @@ -126,6 +127,7 @@ class Slurm extends Shredder 'wait_time' => 'GREATEST(CAST(start_time AS SIGNED) - CAST(submit_time AS SIGNED), 0)', 'node_count' => 'nnodes', 'cpu_count' => 'ncpus', + 'gpu_count' => 'ngpus', 'cpu_req' => 'req_cpus', 'mem_req' => 'req_mem', 'timelimit' => 'timelimit', @@ -170,6 +172,11 @@ class Slurm extends Shredder */ protected $timeZone; + /** + * @var \Xdmod\SlurmGresParser + */ + private $gresParser; + /** * @inheritdoc */ @@ -180,6 +187,7 @@ public function __construct(iDatabase $db) self::$columnCount = count(self::$columnNames); $this->timeZone = new DateTimeZone('UTC'); + $this->gresParser = new SlurmGresParser(); } /** @@ -251,6 +259,9 @@ public function shredLine($line) $job[$key] = $this->parseTimeField($job[$key]); } + $gres = $this->gresParser->parseReqGres($job['req_gres']); + $job['ngpus'] = $this->gresParser->getGpuCountFromGres($gres); + $job['cluster_name'] = $this->getResource(); $this->checkJobData($line, $job); diff --git a/classes/Xdmod/SlurmGresParser.php b/classes/Xdmod/SlurmGresParser.php new file mode 100644 index 0000000000..d0f7263f53 --- /dev/null +++ b/classes/Xdmod/SlurmGresParser.php @@ -0,0 +1,69 @@ + 1) { + return (int)$resource[count($resource) - 1]; + } + } + + return 0; + } +} diff --git a/configuration/datawarehouse.d/include/Jobs-sem-avg-gpu-agg.sql b/configuration/datawarehouse.d/include/Jobs-sem-avg-gpu-agg.sql new file mode 100644 index 0000000000..a626e67998 --- /dev/null +++ b/configuration/datawarehouse.d/include/Jobs-sem-avg-gpu-agg.sql @@ -0,0 +1,21 @@ +SQRT( + COALESCE( + ( + ( + SUM(POW(agg.gpu_count, 2) * agg.ended_job_count) + / + SUM(agg.ended_job_count) + ) + - + POW( + SUM(agg.gpu_count * agg.ended_job_count) + / + SUM(agg.ended_job_count), + 2 + ) + ) + / + SUM(agg.ended_job_count), + 0 + ) +) diff --git a/configuration/datawarehouse.d/include/Jobs-sem-avg-gpu-time.sql b/configuration/datawarehouse.d/include/Jobs-sem-avg-gpu-time.sql new file mode 100644 index 0000000000..6a92220f58 --- /dev/null +++ b/configuration/datawarehouse.d/include/Jobs-sem-avg-gpu-time.sql @@ -0,0 +1,21 @@ +SQRT( + COALESCE( + ( + ( + SUM(POW(agg.gpu_count, 2) * agg.ended_job_count) + / + SUM(agg.running_job_count) + ) + - + POW( + SUM(agg.gpu_count * agg.running_job_count) + / + SUM(agg.running_job_count), + 2 + ) + ) + / + SUM(agg.running_job_count), + 0 + ) +) diff --git a/configuration/datawarehouse.d/ref/Jobs-group-bys.json b/configuration/datawarehouse.d/ref/Jobs-group-bys.json index 48ac669b78..7892a94df4 100644 --- a/configuration/datawarehouse.d/ref/Jobs-group-bys.json +++ b/configuration/datawarehouse.d/ref/Jobs-group-bys.json @@ -8,6 +8,9 @@ "jobsize": { "$ref": "datawarehouse.d/ref/group-by-common.json#/jobsize" }, + "gpucount": { + "$ref": "datawarehouse.d/ref/group-by-common.json#/gpucount" + }, "jobwaittime": { "attribute_table": "job_wait_times", "attribute_table_schema": "modw", diff --git a/configuration/datawarehouse.d/ref/Jobs-statistics.json b/configuration/datawarehouse.d/ref/Jobs-statistics.json index b577ff0585..18357b1b2d 100644 --- a/configuration/datawarehouse.d/ref/Jobs-statistics.json +++ b/configuration/datawarehouse.d/ref/Jobs-statistics.json @@ -28,6 +28,14 @@ "timeseries_formula": "COALESCE(SUM(agg.cpu_time) / SUM(agg.running_job_count), 0) / 3600.0", "unit": "CPU Hour" }, + "avg_gpu_hours": { + "aggregate_formula": "COALESCE(SUM(agg.gpu_time) / SUM(CASE ${DATE_TABLE_ID_FIELD} WHEN ${MIN_DATE_ID} THEN agg.running_job_count ELSE agg.started_job_count END), 0) / 3600.0", + "description_html": "The average GPU hours (number of GPU cores x wall time hours) per ${ORGANIZATION_NAME} job.
For each job, the GPU usage is aggregated. For example, if a job used 1000 GPUs for one minute, it would be aggregated as 1000 GPU minutes or 16.67 GPU hours.
Job: A scheduled process for a computer resource in a batch processing environment.", + "name": "GPU Hours: Per Job", + "precision": 2, + "timeseries_formula": "COALESCE(SUM(agg.gpu_time) / SUM(agg.running_job_count), 0) / 3600.0", + "unit": "GPU Hour" + }, "avg_job_size_weighted_by_cpu_hours": { "description_html": "The average ${ORGANIZATION_NAME} job size weighted by CPU Hours. Defined as
Average Job Size Weighted By CPU Hours: sum(i = 0 to n){ job i core count * job i cpu hours}/sum(i = 0 to n){job i cpu hours}", "formula": "COALESCE(SUM(agg.processor_count * agg.cpu_time) / SUM(agg.cpu_time),0)", @@ -35,6 +43,13 @@ "precision": 1, "unit": "Core Count" }, + "avg_job_size_weighted_by_gpu_hours": { + "description_html": "The average ${ORGANIZATION_NAME} job size weighted by GPU Hours. Defined as
Average Job Size Weighted By GPU Hours: sum(i = 0 to n){ job i core count * job i gpu hours}/sum(i = 0 to n){job i gpu hours}", + "formula": "COALESCE(SUM(agg.processor_count * agg.gpu_time) / SUM(agg.gpu_time), 0)", + "name": "Job Size: Weighted By GPU Hours", + "precision": 1, + "unit": "GPU Count" + }, "avg_node_hours": { "aggregate_formula": "COALESCE(SUM(agg.node_time) / SUM(CASE ${DATE_TABLE_ID_FIELD} WHEN ${MIN_DATE_ID} THEN agg.running_job_count ELSE agg.started_job_count END), 0) / 3600.0", "description_html": "The average node hours (number of nodes x wall time hours) per ${ORGANIZATION_NAME} job.
Job: A scheduled process for a computer resource in a batch processing environment.", @@ -51,6 +66,14 @@ "timeseries_formula": "COALESCE(SUM(agg.processor_count * agg.running_job_count) / SUM(agg.running_job_count), 0)", "unit": "Core Count" }, + "avg_gpus": { + "aggregate_formula": "COALESCE(SUM(agg.gpu_count * CASE ${DATE_TABLE_ID_FIELD} WHEN ${MIN_DATE_ID} THEN agg.running_job_count ELSE agg.started_job_count END) / SUM(CASE ${DATE_TABLE_ID_FIELD} WHEN ${MIN_DATE_ID} THEN agg.running_job_count ELSE agg.started_job_count END), 0)", + "description_html": "TThe average job size per ${ORGANIZATION_NAME} job.
Job Size: The number of GPUs used by a (parallel) job.", + "name": "GPU Count: Per Job", + "precision": 1, + "timeseries_formula": "COALESCE(SUM(agg.gpu_count * agg.running_job_count) / SUM(agg.running_job_count), 0)", + "unit": "GPU Count" + }, "avg_waitduration_hours": { "description_html": "The average time, in hours, a ${ORGANIZATION_NAME} job waits before execution on the designated resource.
Wait Time: Wait time is defined as the linear time between submission of a job by a user until it begins to execute.", "formula": "COALESCE(SUM(agg.waitduration)/SUM(agg.started_job_count),0)/3600.0", @@ -154,6 +177,19 @@ }, "unit": "Core Count" }, + "sem_avg_gpus": { + "aggregate_formula": { + "$include": "datawarehouse.d/include/Jobs-sem-avg-gpu-agg.sql" + }, + "description_html": "The standard error of the number of GPUs.
Std Err of the Avg: The standard deviation of the sample mean, estimated by the sample estimate of the population standard deviation (sample standard deviation) divided by the square root of the sample size (assuming statistical independence of the values in the sample).", + "name": "Std Dev: GPU Count: Per Job", + "precision": 2, + "show_in_catalog": false, + "timeseries_formula": { + "$include": "datawarehouse.d/include/Jobs-sem-avg-gpu-time.sql" + }, + "unit": "GPU Count" + }, "sem_avg_waitduration_hours": { "description_html": "The standard error of the average time, in hours, an ${ORGANIZATION_NAME} job had to wait until it began to execute.
Std Err of the Avg: The standard deviation of the sample mean, estimated by the sample estimate of the population standard deviation (sample standard deviation) divided by the square root of the sample size (assuming statistical independence of the values in the sample).", "formula": { @@ -198,6 +234,13 @@ "precision": 1, "unit": "CPU Hour" }, + "total_gpu_hours": { + "description_html": "The total GPU hours (number of GPUs x wall time hours) used by ${ORGANIZATION_NAME} jobs.
For each job, the GPU usage is aggregated. For example, if a job used 1000 GPUs for one minute, it would be aggregated as 1000 GPU minutes or 16.67 GPU hours.
Job: A scheduled process for a computer resource in a batch processing environment.", + "formula": "COALESCE(SUM(agg.gpu_time), 0) / 3600.0", + "name": "GPU Hours: Total", + "precision": 1, + "unit": "GPU Hour" + }, "total_node_hours": { "description_html": "The total node hours (number of nodes x wall time hours) used by ${ORGANIZATION_NAME} jobs.
Job: A scheduled process for a computer resource in a batch processing environment.", "formula": "COALESCE(SUM(agg.node_time),0)/3600.0", diff --git a/configuration/datawarehouse.d/ref/group-by-common.json b/configuration/datawarehouse.d/ref/group-by-common.json index db98697cbf..1d6e4f4199 100644 --- a/configuration/datawarehouse.d/ref/group-by-common.json +++ b/configuration/datawarehouse.d/ref/group-by-common.json @@ -34,6 +34,41 @@ "description_html": "A categorization of jobs into discrete groups based on the number of cores used by each job.", "name": "Job Size" }, + "gpucount": { + "attribute_table": "gpu_buckets", + "attribute_table_schema": "modw", + "attribute_to_aggregate_table_key_map": [ + { + "id": "gpubucket_id" + } + ], + "attribute_values_query": { + "joins": [ + { + "name": "gpu_buckets" + } + ], + "orderby": [ + "id" + ], + "records": { + "id": "id", + "name": "description", + "order_id": "id", + "short_name": "description" + } + }, + "category": "Administrative", + "chart_options": { + "dataset_display_type": { + "aggregate": "bar", + "timeseries": "area" + } + }, + "data_sort_order": null, + "description_html": "A categorization of jobs into discrete groups based on the number of GPUs used by each job.", + "name": "GPU Count" + }, "jobwalltime": { "attribute_table": "job_times", "attribute_table_schema": "modw", diff --git a/configuration/etl/etl.d/xdmod-migration-8_5_1-9_0_0.json b/configuration/etl/etl.d/xdmod-migration-8_5_1-9_0_0.json index f3ae81f1ba..ee4addab57 100644 --- a/configuration/etl/etl.d/xdmod-migration-8_5_1-9_0_0.json +++ b/configuration/etl/etl.d/xdmod-migration-8_5_1-9_0_0.json @@ -1,5 +1,12 @@ { "module": "xdmod", + "defaults": { + "jobs-gpu-re-ingest-8_5_1-9_0_0": { + "namespace": "ETL\\Maintenance", + "class": "ExecuteSql", + "options_class": "MaintenanceOptions" + } + }, "migration-8_5_1-9_0_0": [ { "name": "update-modw_cloud-tables", @@ -208,5 +215,190 @@ } } } + ], + "#": "Jobs realm GPU migrations separated so they can optionally be run from the interactive setup script", + "jobs-gpu-migration-8_5_1-9_0_0": [ + { + "name": "update-modw-tables", + "description": "Update modw tables", + "namespace": "ETL\\Maintenance", + "class": "ManageTables", + "options_class": "MaintenanceOptions", + "definition_file_list": [ + "jobs/xdw/gpu-buckets.json", + "jobs/xdw/job-tasks.json" + ], + "endpoints": { + "destination": { + "type": "mysql", + "name": "XDMoD Data Warehouse", + "config": "datawarehouse", + "schema": "modw" + } + } + }, + { + "name": "update-mod_shredder-tables", + "description": "Update mod_shredder tables", + "namespace": "ETL\\Maintenance", + "class": "ManageTables", + "options_class": "MaintenanceOptions", + "definition_file_list": [ + "jobs/shredder/job.json", + "jobs/staging/job.json" + ], + "endpoints": { + "destination": { + "type": "mysql", + "name": "XDMoD Data Warehouse", + "config": "shredder", + "schema": "mod_shredder" + } + } + }, + { + "name": "update-mod_shredder-shredded_job_slurm-table", + "description": "Update mod_shredder.shredded_job_slurm table", + "namespace": "ETL\\Maintenance", + "class": "ExecuteSql", + "options_class": "MaintenanceOptions", + "sql_file_list": [ + "migrations/8.5.1-9.0.0/shredder/alter-job-slurm.sql" + ], + "endpoints": { + "destination": { + "type": "mysql", + "name": "XDMoD Data Warehouse", + "config": "shredder", + "schema": "mod_shredder" + } + } + }, + { + "name": "update-modw_hpcdb-tables", + "description": "Update modw_hpcdb tables", + "namespace": "ETL\\Maintenance", + "class": "ManageTables", + "options_class": "MaintenanceOptions", + "definition_file_list": [ + "jobs/hpcdb/jobs.json" + ], + "endpoints": { + "destination": { + "type": "mysql", + "name": "XDMoD HPcDB", + "config": "hpcdb", + "schema": "mod_hpcdb" + } + } + } + ], + "#": "Jobs realm GPU pipeline intentionally named to not match the automatically run migration pipelines", + "jobs-gpu-re-ingest-8_5_1-9_0_0": [ + { + "name": "shredded_job_slurm-to-shredded_job", + "description": "", + "sql_file_list": [ + "migrations/8.5.1-9.0.0/jobs-gpu/shredded_job_slurm-to-shredded_job.sql" + ], + "endpoints": { + "source": { + "type": "mysql", + "name": "XDMoD Data Warehouse", + "config": "shredder", + "schema": "mod_shredder" + }, + "destination": { + "type": "mysql", + "name": "XDMoD Data Warehouse", + "config": "shredder", + "schema": "mod_shredder" + } + } + }, + { + "name": "shredded_job-to-staging_job", + "description": "", + "sql_file_list": [ + "migrations/8.5.1-9.0.0/jobs-gpu/shredded_job-to-staging_job.sql" + ], + "endpoints": { + "source": { + "type": "mysql", + "name": "XDMoD Data Warehouse", + "config": "shredder", + "schema": "mod_shredder" + }, + "destination": { + "type": "mysql", + "name": "XDMoD Data Warehouse", + "config": "shredder", + "schema": "mod_shredder" + } + } + }, + { + "name": "staging_job-to-hpcdb_jobs", + "description": "", + "sql_file_list": [ + "migrations/8.5.1-9.0.0/jobs-gpu/staging_job-to-hpcdb_jobs.sql" + ], + "endpoints": { + "source": { + "type": "mysql", + "name": "XDMoD Data Warehouse", + "config": "shredder", + "schema": "mod_shredder" + }, + "destination": { + "type": "mysql", + "name": "XDMoD HPcDB", + "config": "hpcdb", + "schema": "mod_hpcdb" + } + } + }, + { + "name": "hpcdb_jobs-to-job_tasks", + "description": "", + "sql_file_list": [ + "migrations/8.5.1-9.0.0/jobs-gpu/hpcdb_jobs-to-job_tasks.sql" + ], + "endpoints": { + "source": { + "type": "mysql", + "name": "XDMoD HPcDB", + "config": "hpcdb", + "schema": "mod_hpcdb" + }, + "destination": { + "type": "mysql", + "name": "XDMoD Data Warehouse", + "config": "datawarehouse", + "schema": "modw" + } + } + }, + { + "name": "gpu-buckets", + "definition_file": "jobs/xdw/gpu-buckets.json", + "description": "GPU buckets + data", + "namespace": "ETL\\Ingestor", + "class": "StructuredFileIngestor", + "options_class": "IngestorOptions", + "endpoints": { + "source": { + "type": "jsonfile", + "name": "gpu buckets data", + "path": "jobs/xdw/gpu-buckets.json" + }, + "destination": { + "type": "mysql", + "name": "XDMoD Data Warehouse", + "config": "datawarehouse", + "schema": "modw" + } + } + } ] } diff --git a/configuration/etl/etl_action_defs.d/jobs/hpc-aggregation-day.json b/configuration/etl/etl_action_defs.d/jobs/hpc-aggregation-day.json index 7107ff1c82..23b0e7a748 100644 --- a/configuration/etl/etl_action_defs.d/jobs/hpc-aggregation-day.json +++ b/configuration/etl/etl_action_defs.d/jobs/hpc-aggregation-day.json @@ -62,6 +62,8 @@ "node_count": "task.node_count", "processor_count": "task.processor_count", "processorbucket_id": "(SELECT id FROM ${UTILITY_SCHEMA}.processor_buckets pb WHERE task.processor_count BETWEEN pb.min_processors AND pb.max_processors)", + "gpu_count": "task.gpu_count", + "gpubucket_id": "(SELECT id FROM ${UTILITY_SCHEMA}.gpu_buckets gb WHERE task.gpu_count BETWEEN gb.min_gpus AND gb.max_gpus)", "submitted_job_count": "SUM( IF(task.submit_time_ts BETWEEN ${:PERIOD_START_TS} AND ${:PERIOD_END_TS}, 1, 0) )", "ended_job_count": "SUM( IF(task.end_day_id BETWEEN ${:PERIOD_START_DAY_ID} AND ${:PERIOD_END_DAY_ID}, 1, 0) )", "started_job_count": "SUM( IF(task.start_day_id BETWEEN ${:PERIOD_START_DAY_ID} AND ${:PERIOD_END_DAY_ID}, 1, 0) )", @@ -74,6 +76,8 @@ "sum_local_charge_xdsu_squared": "SUM( CAST(POW(${local_charge_xdsu_case_statement}, 2) AS DECIMAL(36,4)) )", "cpu_time": "COALESCE(SUM(task.processor_count * ${wallduration_case_statement}), 0)", "sum_cpu_time_squared": "COALESCE(SUM( CAST(POW(task.processor_count * ${wallduration_case_statement}, 2) AS DECIMAL(36,4)) ), 0)", + "gpu_time": "COALESCE(SUM(task.gpu_count * ${wallduration_case_statement}), 0)", + "sum_gpu_time_squared": "COALESCE(SUM( CAST(POW(task.gpu_count * ${wallduration_case_statement}, 2) AS DECIMAL(36,4)) ), 0)", "node_time": "COALESCE(SUM(task.node_count * ${wallduration_case_statement}), 0)", "sum_node_time_squared": "COALESCE(SUM( CAST(POW(task.node_count * ${wallduration_case_statement}, 2) AS DECIMAL(36,4)) ), 0)", "sum_weighted_expansion_factor": "SUM( ((task.wallduration + task.waitduration) / task.wallduration) * task.node_count * COALESCE(${wallduration_case_statement}, 0))", diff --git a/configuration/etl/etl_action_defs.d/jobs/hpc-aggregation.json b/configuration/etl/etl_action_defs.d/jobs/hpc-aggregation.json index d56067ce78..a7be1bd42a 100644 --- a/configuration/etl/etl_action_defs.d/jobs/hpc-aggregation.json +++ b/configuration/etl/etl_action_defs.d/jobs/hpc-aggregation.json @@ -62,6 +62,8 @@ "node_count": "task.node_count", "processor_count": "task.processor_count", "processorbucket_id": "(SELECT id FROM ${UTILITY_SCHEMA}.processor_buckets pb WHERE task.processor_count BETWEEN pb.min_processors AND pb.max_processors)", + "gpu_count": "task.gpu_count", + "gpubucket_id": "(SELECT id FROM ${UTILITY_SCHEMA}.gpu_buckets gb WHERE task.gpu_count BETWEEN gb.min_gpus AND gb.max_gpus)", "submitted_job_count": "SUM( IF(task.submit_time_ts BETWEEN ${:PERIOD_START_TS} AND ${:PERIOD_END_TS}, 1, 0) )", "ended_job_count": "SUM( IF(task.end_day_id BETWEEN ${:PERIOD_START_DAY_ID} AND ${:PERIOD_END_DAY_ID}, 1, 0) )", "started_job_count": "SUM( IF(task.start_day_id BETWEEN ${:PERIOD_START_DAY_ID} AND ${:PERIOD_END_DAY_ID}, 1, 0) )", @@ -74,6 +76,8 @@ "sum_local_charge_xdsu_squared": "SUM( CAST(POW(${local_charge_xdsu_case_statement}, 2) AS DECIMAL(36,4)) )", "cpu_time": "COALESCE(SUM(task.processor_count * ${wallduration_case_statement}), 0)", "sum_cpu_time_squared": "COALESCE(SUM( CAST(POW(task.processor_count * ${wallduration_case_statement}, 2) AS DECIMAL(36,4)) ), 0)", + "gpu_time": "COALESCE(SUM(task.gpu_count * ${wallduration_case_statement}), 0)", + "sum_gpu_time_squared": "COALESCE(SUM( CAST(POW(task.gpu_count * ${wallduration_case_statement}, 2) AS DECIMAL(36,4)) ), 0)", "node_time": "COALESCE(SUM(task.node_count * ${wallduration_case_statement}), 0)", "sum_node_time_squared": "COALESCE(SUM( CAST(POW(task.node_count * ${wallduration_case_statement}, 2) AS DECIMAL(36,4)) ), 0)", "sum_weighted_expansion_factor": "SUM( ((task.wallduration + task.waitduration) / task.wallduration) * task.node_count * COALESCE(${wallduration_case_statement}, 0))", diff --git a/configuration/etl/etl_action_defs.d/jobs/hpcdb/jobs.json b/configuration/etl/etl_action_defs.d/jobs/hpcdb/jobs.json index cd346ec132..c6f406db5b 100644 --- a/configuration/etl/etl_action_defs.d/jobs/hpcdb/jobs.json +++ b/configuration/etl/etl_action_defs.d/jobs/hpcdb/jobs.json @@ -28,6 +28,7 @@ "exit_state": "j.exit_state", "nodecount": "j.node_count", "processors": "j.cpu_count", + "gpucount": "j.gpu_count", "cpu_req": "j.cpu_req", "mem_req": "j.mem_req", "timelimit": "j.timelimit", diff --git a/configuration/etl/etl_action_defs.d/jobs/staging/job.json b/configuration/etl/etl_action_defs.d/jobs/staging/job.json index 5f074917a2..772850e3f6 100644 --- a/configuration/etl/etl_action_defs.d/jobs/staging/job.json +++ b/configuration/etl/etl_action_defs.d/jobs/staging/job.json @@ -28,6 +28,7 @@ "exit_state": "exit_state", "node_count": "node_count", "cpu_count": "cpu_count", + "gpu_count": "gpu_count", "cpu_req": "cpu_req", "mem_req": "mem_req", "timelimit": "timelimit", diff --git a/configuration/etl/etl_action_defs.d/jobs/xdw/gpu-buckets.json b/configuration/etl/etl_action_defs.d/jobs/xdw/gpu-buckets.json new file mode 100644 index 0000000000..68335f2808 --- /dev/null +++ b/configuration/etl/etl_action_defs.d/jobs/xdw/gpu-buckets.json @@ -0,0 +1,8 @@ +{ + "#": "This action loads data from a structured file and only needs the table definition", + "table_definition": [ + { + "$ref": "${table_definition_dir}/jobs/xdw/gpu-buckets.json#/table_definition" + } + ] +} diff --git a/configuration/etl/etl_action_defs.d/jobs/xdw/job-records-job-tasks.json b/configuration/etl/etl_action_defs.d/jobs/xdw/job-records-job-tasks.json index 4ceac126bb..450c6f1f71 100644 --- a/configuration/etl/etl_action_defs.d/jobs/xdw/job-records-job-tasks.json +++ b/configuration/etl/etl_action_defs.d/jobs/xdw/job-records-job-tasks.json @@ -64,8 +64,11 @@ "#": "We will normalize processor counts in the post-processing step since this needs access", "#": "to the XDMoD data warehouse resource specs table", "processor_count": "j.processors", + "gpu_count": "j.gpucount", "#": "CPU time will be calculated in the post-processing step as wallduration * processor_count", "cpu_time": 0, + "#": "GPU time will be calculated in the post-processing step as wallduration * gpu_count", + "gpu_time": 0, "group_name": "j.groupname", "gid_number": "j.gid_number", "uid_number": "j.uid_number", @@ -215,6 +218,7 @@ "name": "job_name", "node_count": "node_count", "processor_count": "processor_count", + "gpu_count": "gpu_count", "systemaccount_id": "systemaccount_id", "person_id": "person_id", "person_organization_id": "person_organization_id", @@ -222,6 +226,7 @@ "wallduration": "wallduration", "waitduration": "waitduration", "cpu_time": "cpu_time", + "gpu_time": "gpu_time", "submit_time_ts": "submit_time_ts", "start_time_ts": "start_time_ts", "end_time_ts": "end_time_ts", diff --git a/configuration/etl/etl_data.d/jobs/xdw/gpu-buckets.json b/configuration/etl/etl_data.d/jobs/xdw/gpu-buckets.json new file mode 100644 index 0000000000..b50c76df44 --- /dev/null +++ b/configuration/etl/etl_data.d/jobs/xdw/gpu-buckets.json @@ -0,0 +1,22 @@ +[ + ["id", "min_gpus", "max_gpus", "description"], + [1, 0, 0, "0"], + [2, 1, 1, "1"], + [3, 2, 2, "2"], + [4, 3, 3, "3"], + [5, 4, 4, "4"], + [6, 5, 5, "5"], + [7, 6, 6, "6"], + [8, 7, 7, "7"], + [9, 8, 8, "8"], + [10, 9, 16, "9 - 16"], + [11, 17, 32, "17 - 32"], + [12, 33, 64, "33 - 64"], + [13, 65, 128, "65 - 128"], + [14, 129, 256, "129 - 256"], + [15, 257, 512, "257 - 512"], + [16, 513, 1024, "513 - 1024"], + [17, 1025, 2048, "1k - 2k"], + [18, 2049, 4096, "2k - 4k"], + [19, 4097, 2147483647, "> 4k"] +] diff --git a/configuration/etl/etl_pipelines.d/jobs-xdw.json b/configuration/etl/etl_pipelines.d/jobs-xdw.json index 618cc8fbec..ac800f54c2 100644 --- a/configuration/etl/etl_pipelines.d/jobs-xdw.json +++ b/configuration/etl/etl_pipelines.d/jobs-xdw.json @@ -18,6 +18,7 @@ "jobs/xdw/federation-instances.json", "jobs/xdw/field-of-science-hierarchy.json", "jobs/xdw/field-of-science.json", + "jobs/xdw/gpu-buckets.json", "jobs/xdw/hosts.json", "jobs/xdw/job-records.json", "jobs/xdw/job-tasks.json", @@ -94,6 +95,18 @@ } } }, + { + "name": "gpu-buckets", + "definition_file": "jobs/xdw/gpu-buckets.json", + "description": "GPU buckets + data", + "endpoints": { + "source": { + "type": "jsonfile", + "name": "gpu buckets data", + "path": "jobs/xdw/gpu-buckets.json" + } + } + }, { "name": "account", "definition_file": "jobs/xdw/account.json", diff --git a/configuration/etl/etl_sql.d/jobs/job-record-hpc-post-ingest.sql b/configuration/etl/etl_sql.d/jobs/job-record-hpc-post-ingest.sql index 1ad224178c..2a3215a212 100644 --- a/configuration/etl/etl_sql.d/jobs/job-record-hpc-post-ingest.sql +++ b/configuration/etl/etl_sql.d/jobs/job-record-hpc-post-ingest.sql @@ -44,6 +44,7 @@ UPDATE ${DESTINATION_SCHEMA}.job_tasks task SET cpu_time = wallduration * processor_count, + gpu_time = wallduration * gpu_count, submit_time_ts = CASE WHEN (submit_time_ts > start_time_ts) OR submit_time_ts <= 0 diff --git a/configuration/etl/etl_sql.d/jobs/shredder/job-slurm.sql b/configuration/etl/etl_sql.d/jobs/shredder/job-slurm.sql index 2270a9c7ab..39b0021ef3 100644 --- a/configuration/etl/etl_sql.d/jobs/shredder/job-slurm.sql +++ b/configuration/etl/etl_sql.d/jobs/shredder/job-slurm.sql @@ -22,6 +22,7 @@ CREATE TABLE ${DESTINATION_SCHEMA}.`shredded_job_slurm` ( `state` varchar(32) DEFAULT NULL, `nnodes` int(10) unsigned NOT NULL, `ncpus` int(10) unsigned NOT NULL, + `ngpus` int(10) unsigned NOT NULL DEFAULT '0', `req_cpus` int(10) unsigned DEFAULT NULL, `req_mem` varchar(32) DEFAULT NULL, `req_gres` text NOT NULL, diff --git a/configuration/etl/etl_sql.d/migrations/8.5.1-9.0.0/jobs-gpu/hpcdb_jobs-to-job_tasks.sql b/configuration/etl/etl_sql.d/migrations/8.5.1-9.0.0/jobs-gpu/hpcdb_jobs-to-job_tasks.sql new file mode 100644 index 0000000000..a7a4e6df6d --- /dev/null +++ b/configuration/etl/etl_sql.d/migrations/8.5.1-9.0.0/jobs-gpu/hpcdb_jobs-to-job_tasks.sql @@ -0,0 +1,9 @@ +LOCK TABLES `${SOURCE_SCHEMA}`.`hpcdb_jobs` READ, + `${DESTINATION_SCHEMA}`.`job_tasks` WRITE// +UPDATE `${SOURCE_SCHEMA}`.`hpcdb_jobs` +INNER JOIN `${DESTINATION_SCHEMA}`.`job_tasks` + ON `${SOURCE_SCHEMA}`.`hpcdb_jobs`.`job_id` = `${DESTINATION_SCHEMA}`.`job_tasks`.`job_id` +SET `${DESTINATION_SCHEMA}`.`job_tasks`.`gpu_count` = `${SOURCE_SCHEMA}`.`hpcdb_jobs`.`gpucount`, + `${DESTINATION_SCHEMA}`.`job_tasks`.`gpu_time` = `${SOURCE_SCHEMA}`.`hpcdb_jobs`.`gpucount` * `${DESTINATION_SCHEMA}`.`job_tasks`.`wallduration` +WHERE `${SOURCE_SCHEMA}`.`hpcdb_jobs`.`gpucount` != 0 OR `${DESTINATION_SCHEMA}`.`job_tasks`.`gpu_count` != 0// +UNLOCK TABLES// diff --git a/configuration/etl/etl_sql.d/migrations/8.5.1-9.0.0/jobs-gpu/shredded_job-to-staging_job.sql b/configuration/etl/etl_sql.d/migrations/8.5.1-9.0.0/jobs-gpu/shredded_job-to-staging_job.sql new file mode 100644 index 0000000000..85e56b917e --- /dev/null +++ b/configuration/etl/etl_sql.d/migrations/8.5.1-9.0.0/jobs-gpu/shredded_job-to-staging_job.sql @@ -0,0 +1,8 @@ +LOCK TABLES `${SOURCE_SCHEMA}`.`shredded_job` READ, + `${DESTINATION_SCHEMA}`.`staging_job` WRITE// +UPDATE `${SOURCE_SCHEMA}`.`shredded_job` +INNER JOIN `${DESTINATION_SCHEMA}`.`staging_job` + ON `${SOURCE_SCHEMA}`.`shredded_job`.`shredded_job_id` = `${DESTINATION_SCHEMA}`.`staging_job`.`id` +SET `${DESTINATION_SCHEMA}`.`staging_job`.`gpu_count` = `${SOURCE_SCHEMA}`.`shredded_job`.`gpu_count` +WHERE `${SOURCE_SCHEMA}`.`shredded_job`.`gpu_count` != 0 OR `${DESTINATION_SCHEMA}`.`staging_job`.`gpu_count` != 0// +UNLOCK TABLES// diff --git a/configuration/etl/etl_sql.d/migrations/8.5.1-9.0.0/jobs-gpu/shredded_job_slurm-to-shredded_job.sql b/configuration/etl/etl_sql.d/migrations/8.5.1-9.0.0/jobs-gpu/shredded_job_slurm-to-shredded_job.sql new file mode 100644 index 0000000000..b441c8a7f6 --- /dev/null +++ b/configuration/etl/etl_sql.d/migrations/8.5.1-9.0.0/jobs-gpu/shredded_job_slurm-to-shredded_job.sql @@ -0,0 +1,13 @@ +LOCK TABLES `${SOURCE_SCHEMA}`.`shredded_job_slurm` READ, + `${DESTINATION_SCHEMA}`.`shredded_job` WRITE// +UPDATE `${SOURCE_SCHEMA}`.`shredded_job_slurm` +INNER JOIN `${DESTINATION_SCHEMA}`.`shredded_job` + ON `${SOURCE_SCHEMA}`.`shredded_job_slurm`.`cluster_name` = `${DESTINATION_SCHEMA}`.`shredded_job`.`resource_name` + AND `${SOURCE_SCHEMA}`.`shredded_job_slurm`.`job_id` = `${DESTINATION_SCHEMA}`.`shredded_job`.`job_id` + AND `${SOURCE_SCHEMA}`.`shredded_job_slurm`.`job_id_raw` = `${DESTINATION_SCHEMA}`.`shredded_job`.`job_id_raw` + AND `${SOURCE_SCHEMA}`.`shredded_job_slurm`.`submit_time` = `${DESTINATION_SCHEMA}`.`shredded_job`.`submission_time` + AND `${SOURCE_SCHEMA}`.`shredded_job_slurm`.`end_time` = `${DESTINATION_SCHEMA}`.`shredded_job`.`end_time` +SET `${DESTINATION_SCHEMA}`.`shredded_job`.`gpu_count` = `${SOURCE_SCHEMA}`.`shredded_job_slurm`.`ngpus` +WHERE `${DESTINATION_SCHEMA}`.`shredded_job`.`source_format` = 'slurm' + AND (`${DESTINATION_SCHEMA}`.`shredded_job`.`gpu_count` != 0 OR `${SOURCE_SCHEMA}`.`shredded_job_slurm`.`ngpus` != 0)// +UNLOCK TABLES// diff --git a/configuration/etl/etl_sql.d/migrations/8.5.1-9.0.0/jobs-gpu/staging_job-to-hpcdb_jobs.sql b/configuration/etl/etl_sql.d/migrations/8.5.1-9.0.0/jobs-gpu/staging_job-to-hpcdb_jobs.sql new file mode 100644 index 0000000000..b6251074e5 --- /dev/null +++ b/configuration/etl/etl_sql.d/migrations/8.5.1-9.0.0/jobs-gpu/staging_job-to-hpcdb_jobs.sql @@ -0,0 +1,8 @@ +LOCK TABLES `${SOURCE_SCHEMA}`.`staging_job` READ, + `${DESTINATION_SCHEMA}`.`hpcdb_jobs` WRITE// +UPDATE `${SOURCE_SCHEMA}`.`staging_job` +INNER JOIN `${DESTINATION_SCHEMA}`.`hpcdb_jobs` + ON `${SOURCE_SCHEMA}`.`staging_job`.`id` = `${DESTINATION_SCHEMA}`.`hpcdb_jobs`.`job_id` +SET `${DESTINATION_SCHEMA}`.`hpcdb_jobs`.`gpucount` = `${SOURCE_SCHEMA}`.`staging_job`.`gpu_count` +WHERE `${SOURCE_SCHEMA}`.`staging_job`.`gpu_count` != 0 OR `${DESTINATION_SCHEMA}`.`hpcdb_jobs`.`gpucount` != 0// +UNLOCK TABLES// diff --git a/configuration/etl/etl_sql.d/migrations/8.5.1-9.0.0/shredder/alter-job-slurm.sql b/configuration/etl/etl_sql.d/migrations/8.5.1-9.0.0/shredder/alter-job-slurm.sql new file mode 100644 index 0000000000..8a0f42433b --- /dev/null +++ b/configuration/etl/etl_sql.d/migrations/8.5.1-9.0.0/shredder/alter-job-slurm.sql @@ -0,0 +1,26 @@ +-- Add column to the `shredded_job_slurm` table. This table is not managed by +-- an ETL definition because it contains a key that is currently not supported +-- by the ETL system. + +-- Wrap the ALTER TABLE statement in a prepared statement that conditionally +-- add the column so that this file can be executed multiple times without +-- causing errors. +SET @statement = ( + SELECT IF( + ( + SELECT COUNT(*) FROM information_schema.columns + WHERE table_schema = '${DESTINATION_SCHEMA}' + AND table_name = 'shredded_job_slurm' + AND column_name = 'ngpus' + ) > 0, + 'SELECT 1', + CONCAT( + 'ALTER TABLE `${DESTINATION_SCHEMA}`.`shredded_job_slurm` ', + 'ADD COLUMN `ngpus` int(10) unsigned NOT NULL DEFAULT ''0'' ', + 'AFTER `ncpus`' + ) + ) +)// +PREPARE addColumnIfNotExists FROM @statement// +EXECUTE addColumnIfNotExists// +DEALLOCATE PREPARE addColumnIfNotExists// diff --git a/configuration/etl/etl_tables.d/jobs/hpcdb/jobs.json b/configuration/etl/etl_tables.d/jobs/hpcdb/jobs.json index 242dff0532..fc4649109c 100644 --- a/configuration/etl/etl_tables.d/jobs/hpcdb/jobs.json +++ b/configuration/etl/etl_tables.d/jobs/hpcdb/jobs.json @@ -107,6 +107,11 @@ "type": "int(11)", "nullable": true }, + { + "name": "gpucount", + "type": "int(11)", + "nullable": true + }, { "name": "cpu_req", "type": "int(10) unsigned", diff --git a/configuration/etl/etl_tables.d/jobs/shredder/job.json b/configuration/etl/etl_tables.d/jobs/shredder/job.json index d86d265291..ed89672bab 100644 --- a/configuration/etl/etl_tables.d/jobs/shredder/job.json +++ b/configuration/etl/etl_tables.d/jobs/shredder/job.json @@ -138,6 +138,11 @@ "type": "int(10) unsigned", "nullable": false }, + { + "name": "gpu_count", + "type": "int(10) unsigned", + "nullable": false + }, { "name": "cpu_req", "type": "int(10) unsigned", diff --git a/configuration/etl/etl_tables.d/jobs/staging/job.json b/configuration/etl/etl_tables.d/jobs/staging/job.json index 08850b246b..328d180e68 100644 --- a/configuration/etl/etl_tables.d/jobs/staging/job.json +++ b/configuration/etl/etl_tables.d/jobs/staging/job.json @@ -124,6 +124,11 @@ "type": "int(10) unsigned", "nullable": false }, + { + "name": "gpu_count", + "type": "int(10) unsigned", + "nullable": false + }, { "name": "cpu_req", "type": "int(10) unsigned", diff --git a/configuration/etl/etl_tables.d/jobs/xdw/gpu-buckets.json b/configuration/etl/etl_tables.d/jobs/xdw/gpu-buckets.json new file mode 100644 index 0000000000..283abd3734 --- /dev/null +++ b/configuration/etl/etl_tables.d/jobs/xdw/gpu-buckets.json @@ -0,0 +1,51 @@ +{ + "table_definition": { + "name": "gpu_buckets", + "engine": "MyISAM", + "columns": [ + { + "name": "id", + "type": "int(11)", + "nullable": false + }, + { + "name": "min_gpus", + "type": "int(11)", + "nullable": false + }, + { + "name": "max_gpus", + "type": "int(11)", + "nullable": false + }, + { + "name": "description", + "type": "char(16)", + "nullable": false + } + ], + "indexes": [ + { + "name": "PRIMARY", + "columns": [ + "id" + ] + }, + { + "name": "uk_min_max", + "columns": [ + "min_gpus", + "max_gpus" + ], + "is_unique": true + }, + { + "name": "uk_description", + "columns": [ + "description" + ], + "is_unique": true + } + ] + } +} diff --git a/configuration/etl/etl_tables.d/jobs/xdw/job-tasks.json b/configuration/etl/etl_tables.d/jobs/xdw/job-tasks.json index c67df9f4dc..263ef8a8e4 100644 --- a/configuration/etl/etl_tables.d/jobs/xdw/job-tasks.json +++ b/configuration/etl/etl_tables.d/jobs/xdw/job-tasks.json @@ -146,6 +146,13 @@ "default": -1, "comment": "Number of processor cores consumed" }, + { + "name": "gpu_count", + "type": "int(11)", + "nullable": false, + "default": -1, + "comment": "Number of GPUs consumed" + }, { "name": "memory_kb", "type": "int(11)", @@ -171,6 +178,12 @@ "nullable": false, "comment": "The amount of the cpu time (processor_count * wallduration)" }, + { + "name": "gpu_time", + "type": "decimal(18,0)", + "nullable": false, + "comment": "The amount of the GPU time (gpu_count * wallduration)" + }, { "name": "local_charge_su", "type": "decimal(18,3)", diff --git a/configuration/etl/etl_tables.d/jobs/xdw/jobfact_by_.json b/configuration/etl/etl_tables.d/jobs/xdw/jobfact_by_.json index bdd24971db..57330dd3bc 100644 --- a/configuration/etl/etl_tables.d/jobs/xdw/jobfact_by_.json +++ b/configuration/etl/etl_tables.d/jobs/xdw/jobfact_by_.json @@ -160,6 +160,18 @@ "comment": "FACT: Pre-determined processor bucket sizes. References processorbucket.id", "nullable": true }, + { + "name": "gpu_count", + "type": "int(11)", + "nullable": false, + "comment": "FACT: Number of GPUs each of the jobs used." + }, + { + "name": "gpubucket_id", + "type": "int(11)", + "nullable": true, + "comment": "DIMENSION: Pre-determined GPU bucket sizes. References gpu_buckets.id" + }, { "name": "submitted_job_count", "type": "int(11)", @@ -298,6 +310,18 @@ "comment": "FACT: (seconds) The sum of the square of the amount of the cpu_time of the jobs pertaining to this day. If a job took more than one day, its cpu_time is distributed linearly across the days it used.", "nullable": true }, + { + "name": "gpu_time", + "type": "decimal(18,0)", + "nullable": true, + "comment": "FACT: (seconds) The amount of the gpu time (gpu_count * wallduration) of the jobs pertaining to this day. If a job took more than one day, its gpu_time is distributed linearly across the days it used." + }, + { + "name": "sum_gpu_time_squared", + "type": "double", + "nullable": true, + "comment": "FACT: (seconds^2) The sum of the square of the amount of the gpu_time of the jobs pertaining to this day. If a job took more than one day, its gpu_time is distributed linearly across the days it used." + }, { "name": "node_time", "type": "decimal(18,0)", diff --git a/configuration/etl/etl_tables.d/jobs/xdw/jobfact_by_day.json b/configuration/etl/etl_tables.d/jobs/xdw/jobfact_by_day.json index 54c3fc4cc9..371d09ec11 100644 --- a/configuration/etl/etl_tables.d/jobs/xdw/jobfact_by_day.json +++ b/configuration/etl/etl_tables.d/jobs/xdw/jobfact_by_day.json @@ -166,6 +166,18 @@ "comment": "FACT: Pre-determined processor bucket sizes. References processorbucket.id", "nullable": true }, + { + "name": "gpu_count", + "type": "int(11)", + "nullable": false, + "comment": "FACT: Number of GPUs each of the jobs used." + }, + { + "name": "gpubucket_id", + "type": "int(11)", + "nullable": true, + "comment": "DIMENSION: Pre-determined GPU bucket sizes. References gpu_buckets.id" + }, { "name": "submitted_job_count", "type": "int(11)", @@ -304,6 +316,18 @@ "comment": "FACT: (seconds) The sum of the square of the amount of the cpu_time of the jobs pertaining to this day. If a job took more than one day, its cpu_time is distributed linearly across the days it used.", "nullable": true }, + { + "name": "gpu_time", + "type": "decimal(18,0)", + "nullable": true, + "comment": "FACT: (seconds) The amount of the gpu time (gpu_count * wallduration) of the jobs pertaining to this day. If a job took more than one day, its gpu_time is distributed linearly across the days it used." + }, + { + "name": "sum_gpu_time_squared", + "type": "double", + "nullable": true, + "comment": "FACT: (seconds^2) The sum of the square of the amount of the gpu_time of the jobs pertaining to this day. If a job took more than one day, its gpu_time is distributed linearly across the days it used." + }, { "name": "node_time", "type": "decimal(18,0)", diff --git a/configuration/rawstatistics.d/20_jobs.json b/configuration/rawstatistics.d/20_jobs.json index 3362dde0e8..e302f4349a 100644 --- a/configuration/rawstatistics.d/20_jobs.json +++ b/configuration/rawstatistics.d/20_jobs.json @@ -207,6 +207,14 @@ "documentation": "The number of cores that were assigned to the job.", "batchExport": true }, + { + "name": "GPUs", + "tableAlias": "jt", + "column": "gpu_count", + "group": "Allocated Resource", + "documentation": "The number of GPUs that were assigned to the job.", + "batchExport": true + }, { "name": "Memory Used", "tableAlias": "jt", @@ -243,6 +251,15 @@ "documentation": "The amount of CPU core time (Core Count * Wall Time)", "batchExport": true }, + { + "name": "GPU Time", + "tableAlias": "jt", + "column": "gpu_time", + "group": "Allocated Resource", + "units": "seconds", + "documentation": "The amount of GPU time (GPU Count * Wall Time)", + "batchExport": true + }, { "name": "UNIX group name", "tableAlias": "jt", diff --git a/configuration/roles.d/jobs.json b/configuration/roles.d/jobs.json index 86f12b2f02..fd236964ce 100644 --- a/configuration/roles.d/jobs.json +++ b/configuration/roles.d/jobs.json @@ -10,6 +10,10 @@ "realm": "Jobs", "group_by": "jobsize" }, + { + "realm": "Jobs", + "group_by": "gpucount" + }, { "realm": "Jobs", "group_by": "jobwalltime" diff --git a/configuration/roles.d/statistics_format.json b/configuration/roles.d/statistics_format.json index 100e9a0133..d39a9b8ec9 100644 --- a/configuration/roles.d/statistics_format.json +++ b/configuration/roles.d/statistics_format.json @@ -82,6 +82,23 @@ } ] }, + { + "title": "GPU Time (h)", + "items": [ + { + "title": "Total", + "fieldName": "total_gpu_hours", + "numberType": "float", + "numberFormat": "#,#.0" + }, + { + "title": "Avg (Per Job)", + "fieldName": "avg_gpu_hours", + "numberType": "float", + "numberFormat": "#,#.00" + } + ] + }, { "title": "Wait Time (h)", "items": [ @@ -211,6 +228,23 @@ } ] }, + { + "title": "GPU Time (h)", + "items": [ + { + "title": "Total", + "fieldName": "total_gpu_hours", + "numberType": "float", + "numberFormat": "#,#.0" + }, + { + "title": "Avg (Per Job)", + "fieldName": "avg_gpu_hours", + "numberType": "float", + "numberFormat": "#,#.00" + } + ] + }, { "title": "Wait Time (h)", "items": [ diff --git a/configuration/roles.json b/configuration/roles.json index 57b7528f6e..3b3ce6fc69 100644 --- a/configuration/roles.json +++ b/configuration/roles.json @@ -123,6 +123,10 @@ "realm": "Jobs", "group_by": "jobsize" }, + { + "realm": "Jobs", + "group_by": "gpucount" + }, { "realm": "Jobs", "group_by": "jobwalltime" diff --git a/docs/upgrade.md b/docs/upgrade.md index 9d3b419152..9721303d34 100644 --- a/docs/upgrade.md +++ b/docs/upgrade.md @@ -110,6 +110,11 @@ enhancements and bug fixes. You may upgrade directly from 8.5.0 or 8.5.1. +This is the first version of Open XDMoD that supports GPU data in the jobs +realm. Since Open XDMoD 6.5 data from slurm (`ReqGRES`) has been ingested into +the database, but not displayed in the portal. These jobs may now be +re-ingested and any GPU data will be used. + ### Configuration File Changes The `xdmod-upgrade` script will migrate user editable configuration files to @@ -122,6 +127,12 @@ version. Tables may be altered the first time they are used during ingestion. - The `moddb`.`ReportTemplateACL` database table is no longer used and is removed by the upgrade script. +- The following tables are altered to store GPU data: + `mod_shredder`.`shredded_job_slurm`, `mod_shredder`.`shredded_job`, + `mod_shredder`.`staging_job`, `mod_hpcdb`.`hpcdb_jobs`, `modw`.`job_tasks`, + and tables in `modw_aggregates` prefixed with `jobfact_by_`. +- New table `moddb`.`gpu_buckets` for GPU count ranges used for "Group By GPU + Count". [github-latest-release]: https://github.com/ubccr/xdmod/releases/latest [mysql-config]: software-requirements.md#mysql diff --git a/tests/artifacts/xdmod/acls/output/get_query_descripters-jobs.json b/tests/artifacts/xdmod/acls/output/get_query_descripters-jobs.json index 1133630b6b..f8743a285f 100644 --- a/tests/artifacts/xdmod/acls/output/get_query_descripters-jobs.json +++ b/tests/artifacts/xdmod/acls/output/get_query_descripters-jobs.json @@ -9,6 +9,16 @@ "_disable_menu": false } ], + [ + { + "_realm_name": "Jobs", + "_group_by_name": "gpucount", + "_default_statisticname": "all", + "_order_id": 0, + "_show_menu": true, + "_disable_menu": false + } + ], [ { "_realm_name": "Jobs", diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/fieldofscience/avg_gpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/fieldofscience/avg_gpu_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..482ea2de0a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/fieldofscience/avg_gpu_hours/aggregate-Day-reference.csv @@ -0,0 +1,49 @@ +title +"GPU Hours: Per Job: by PI Group" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"PI Group","GPU Hours: Per Job" +Biophysics,16.35202509 +"Algebra and Number Theory",0.00000000 +Arts,0.00000000 +"Biochemistry and Molecular Structure and Function",0.00000000 +"Cell Biology",0.00000000 +"Computer and Computation Theory",0.00000000 +"Decision, Risk, and Management Science",0.00000000 +"Design and Computer-Integrated Engineering",0.00000000 +"Design, Tools, and Test",0.00000000 +Economics,0.00000000 +"Emerging Technologies Initiation",0.00000000 +"Experimental Systems",0.00000000 +"Extragalactic Astronomy and Cosmology",0.00000000 +"Fluid, Particulate, and Hydraulic Systems",0.00000000 +"Galactic Astronomy",0.00000000 +"Geology and Paleontology",0.00000000 +Geophysics,0.00000000 +"Global Atmospheric Research",0.00000000 +"Law and Social Sciences",0.00000000 +"Mechanics and Materials",0.00000000 +"Metals, Ceramics, and Electronic Materials",0.00000000 +"Operations Research and Production Systems",0.00000000 +"Organic and Macromolecular Chemistry",0.00000000 +"Physical Chemistry",0.00000000 +"Polar Aeronomy and Astrophysics",0.00000000 +"Polar Meteorology",0.00000000 +"Polar Ocean and Climate Systems",0.00000000 +"Quantum Electronics, Waves, and Beams",0.00000000 +Seismology,0.00000000 +Sociology,0.00000000 +"Solid State Chemistry and Polymers",0.00000000 +"Solid-State and Microstructures",0.00000000 +"Statistics and Probability",0.00000000 +"Stellar Astronomy and Astrophysics",0.00000000 +"Structures and Building Systems",0.00000000 +"Systematic and Population Biology",0.00000000 +"Systems Prototyping and Fabrication",0.00000000 +Tectonics,0.00000000 +"Theoretical Physics",0.00000000 +"Volcanology and Mantle Geochemistry",0.00000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/fieldofscience/avg_gpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/fieldofscience/avg_gpu_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..482ea2de0a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/fieldofscience/avg_gpu_hours/aggregate-Month-reference.csv @@ -0,0 +1,49 @@ +title +"GPU Hours: Per Job: by PI Group" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"PI Group","GPU Hours: Per Job" +Biophysics,16.35202509 +"Algebra and Number Theory",0.00000000 +Arts,0.00000000 +"Biochemistry and Molecular Structure and Function",0.00000000 +"Cell Biology",0.00000000 +"Computer and Computation Theory",0.00000000 +"Decision, Risk, and Management Science",0.00000000 +"Design and Computer-Integrated Engineering",0.00000000 +"Design, Tools, and Test",0.00000000 +Economics,0.00000000 +"Emerging Technologies Initiation",0.00000000 +"Experimental Systems",0.00000000 +"Extragalactic Astronomy and Cosmology",0.00000000 +"Fluid, Particulate, and Hydraulic Systems",0.00000000 +"Galactic Astronomy",0.00000000 +"Geology and Paleontology",0.00000000 +Geophysics,0.00000000 +"Global Atmospheric Research",0.00000000 +"Law and Social Sciences",0.00000000 +"Mechanics and Materials",0.00000000 +"Metals, Ceramics, and Electronic Materials",0.00000000 +"Operations Research and Production Systems",0.00000000 +"Organic and Macromolecular Chemistry",0.00000000 +"Physical Chemistry",0.00000000 +"Polar Aeronomy and Astrophysics",0.00000000 +"Polar Meteorology",0.00000000 +"Polar Ocean and Climate Systems",0.00000000 +"Quantum Electronics, Waves, and Beams",0.00000000 +Seismology,0.00000000 +Sociology,0.00000000 +"Solid State Chemistry and Polymers",0.00000000 +"Solid-State and Microstructures",0.00000000 +"Statistics and Probability",0.00000000 +"Stellar Astronomy and Astrophysics",0.00000000 +"Structures and Building Systems",0.00000000 +"Systematic and Population Biology",0.00000000 +"Systems Prototyping and Fabrication",0.00000000 +Tectonics,0.00000000 +"Theoretical Physics",0.00000000 +"Volcanology and Mantle Geochemistry",0.00000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/fieldofscience/avg_gpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/fieldofscience/avg_gpu_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..482ea2de0a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/fieldofscience/avg_gpu_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,49 @@ +title +"GPU Hours: Per Job: by PI Group" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"PI Group","GPU Hours: Per Job" +Biophysics,16.35202509 +"Algebra and Number Theory",0.00000000 +Arts,0.00000000 +"Biochemistry and Molecular Structure and Function",0.00000000 +"Cell Biology",0.00000000 +"Computer and Computation Theory",0.00000000 +"Decision, Risk, and Management Science",0.00000000 +"Design and Computer-Integrated Engineering",0.00000000 +"Design, Tools, and Test",0.00000000 +Economics,0.00000000 +"Emerging Technologies Initiation",0.00000000 +"Experimental Systems",0.00000000 +"Extragalactic Astronomy and Cosmology",0.00000000 +"Fluid, Particulate, and Hydraulic Systems",0.00000000 +"Galactic Astronomy",0.00000000 +"Geology and Paleontology",0.00000000 +Geophysics,0.00000000 +"Global Atmospheric Research",0.00000000 +"Law and Social Sciences",0.00000000 +"Mechanics and Materials",0.00000000 +"Metals, Ceramics, and Electronic Materials",0.00000000 +"Operations Research and Production Systems",0.00000000 +"Organic and Macromolecular Chemistry",0.00000000 +"Physical Chemistry",0.00000000 +"Polar Aeronomy and Astrophysics",0.00000000 +"Polar Meteorology",0.00000000 +"Polar Ocean and Climate Systems",0.00000000 +"Quantum Electronics, Waves, and Beams",0.00000000 +Seismology,0.00000000 +Sociology,0.00000000 +"Solid State Chemistry and Polymers",0.00000000 +"Solid-State and Microstructures",0.00000000 +"Statistics and Probability",0.00000000 +"Stellar Astronomy and Astrophysics",0.00000000 +"Structures and Building Systems",0.00000000 +"Systematic and Population Biology",0.00000000 +"Systems Prototyping and Fabrication",0.00000000 +Tectonics,0.00000000 +"Theoretical Physics",0.00000000 +"Volcanology and Mantle Geochemistry",0.00000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/fieldofscience/avg_gpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/fieldofscience/avg_gpu_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..482ea2de0a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/fieldofscience/avg_gpu_hours/aggregate-Year-reference.csv @@ -0,0 +1,49 @@ +title +"GPU Hours: Per Job: by PI Group" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"PI Group","GPU Hours: Per Job" +Biophysics,16.35202509 +"Algebra and Number Theory",0.00000000 +Arts,0.00000000 +"Biochemistry and Molecular Structure and Function",0.00000000 +"Cell Biology",0.00000000 +"Computer and Computation Theory",0.00000000 +"Decision, Risk, and Management Science",0.00000000 +"Design and Computer-Integrated Engineering",0.00000000 +"Design, Tools, and Test",0.00000000 +Economics,0.00000000 +"Emerging Technologies Initiation",0.00000000 +"Experimental Systems",0.00000000 +"Extragalactic Astronomy and Cosmology",0.00000000 +"Fluid, Particulate, and Hydraulic Systems",0.00000000 +"Galactic Astronomy",0.00000000 +"Geology and Paleontology",0.00000000 +Geophysics,0.00000000 +"Global Atmospheric Research",0.00000000 +"Law and Social Sciences",0.00000000 +"Mechanics and Materials",0.00000000 +"Metals, Ceramics, and Electronic Materials",0.00000000 +"Operations Research and Production Systems",0.00000000 +"Organic and Macromolecular Chemistry",0.00000000 +"Physical Chemistry",0.00000000 +"Polar Aeronomy and Astrophysics",0.00000000 +"Polar Meteorology",0.00000000 +"Polar Ocean and Climate Systems",0.00000000 +"Quantum Electronics, Waves, and Beams",0.00000000 +Seismology,0.00000000 +Sociology,0.00000000 +"Solid State Chemistry and Polymers",0.00000000 +"Solid-State and Microstructures",0.00000000 +"Statistics and Probability",0.00000000 +"Stellar Astronomy and Astrophysics",0.00000000 +"Structures and Building Systems",0.00000000 +"Systematic and Population Biology",0.00000000 +"Systems Prototyping and Fabrication",0.00000000 +Tectonics,0.00000000 +"Theoretical Physics",0.00000000 +"Volcanology and Mantle Geochemistry",0.00000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/fieldofscience/avg_gpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/fieldofscience/avg_gpu_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..5dd69e62ff --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/fieldofscience/avg_gpu_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"GPU Hours: Per Job: by PI Group" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[Biophysics] GPU Hours: Per Job","[Algebra and Number Theory] GPU Hours: Per Job","[Arts] GPU Hours: Per Job","[Biochemistry and Molecular Structure and Function] GPU Hours: Per Job","[Cell Biology] GPU Hours: Per Job","[Computer and Computation Theory] GPU Hours: Per Job","[Decision, Risk, and Management Science] GPU Hours: Per Job","[Design and Computer-Integrated Engineering] GPU Hours: Per Job","[Design, Tools, and Test] GPU Hours: Per Job","[Economics] GPU Hours: Per Job","[Emerging Technologies Initiation] GPU Hours: Per Job","[Experimental Systems] GPU Hours: Per Job","[Extragalactic Astronomy and Cosmology] GPU Hours: Per Job","[Fluid, Particulate, and Hydraulic Systems] GPU Hours: Per Job","[Galactic Astronomy] GPU Hours: Per Job","[Geology and Paleontology] GPU Hours: Per Job","[Geophysics] GPU Hours: Per Job","[Global Atmospheric Research] GPU Hours: Per Job","[Law and Social Sciences] GPU Hours: Per Job","[Mechanics and Materials] GPU Hours: Per Job","[Metals, Ceramics, and Electronic Materials] GPU Hours: Per Job","[Operations Research and Production Systems] GPU Hours: Per Job","[Organic and Macromolecular Chemistry] GPU Hours: Per Job","[Physical Chemistry] GPU Hours: Per Job","[Polar Aeronomy and Astrophysics] GPU Hours: Per Job","[Polar Meteorology] GPU Hours: Per Job","[Polar Ocean and Climate Systems] GPU Hours: Per Job","[Quantum Electronics, Waves, and Beams] GPU Hours: Per Job","[Seismology] GPU Hours: Per Job","[Sociology] GPU Hours: Per Job","[Solid State Chemistry and Polymers] GPU Hours: Per Job","[Solid-State and Microstructures] GPU Hours: Per Job","[Statistics and Probability] GPU Hours: Per Job","[Stellar Astronomy and Astrophysics] GPU Hours: Per Job","[Structures and Building Systems] GPU Hours: Per Job","[Systematic and Population Biology] GPU Hours: Per Job","[Systems Prototyping and Fabrication] GPU Hours: Per Job","[Tectonics] GPU Hours: Per Job","[Theoretical Physics] GPU Hours: Per Job","[Volcanology and Mantle Geochemistry] GPU Hours: Per Job" +2016-12-22,33.49277778,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-23,48.00000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00000000,0,0,0,0,0,0,0,0,0.00000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-24,48.00000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00000000,0,0,0,0,0,0,0,0,0.00000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-25,48.00000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00000000,0,0,0,0,0,0,0,0,0.00000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-26,48.00000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00000000,0,0,0,0,0,0,0,0,0.00000000,0,0,0,0,0,0,0,0,0.00000000,0,0,0,0,0,0,0 +2016-12-27,24.00000000,0,0,0.00000000,0.00000000,0,0,0,0,0,0,0,0,0,0.00000000,0,0,0,0,0,0,0,0,0.00000000,0,0,0,0.00000000,0,0.00000000,0.00000000,0,0.00000000,0.00000000,0,0,0,0,0,0 +2016-12-28,24.00000000,0.00000000,0,0.00000000,0.00000000,0,0,0,0,0,0,0.00000000,0,0,0.00000000,0,0,0,0,0,0,0.00000000,0.00000000,0.00000000,0,0,0,0.00000000,0,0.00000000,0.00000000,0,0.00000000,0.00000000,0,0,0.00000000,0,0.00000000,0.00000000 +2016-12-29,24.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0,0,0.00000000,0.00000000,0,0,0.00000000,0,0,0.00000000,0,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0,0.00000000,0.00000000 +2016-12-30,24.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000 +2016-12-31,8.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0 +2017-01-01,1.53407407,0.00000000,0.00000000,0,0.00000000,0,0,0.00000000,0,0.00000000,0.00000000,0.00000000,0,0,0.00000000,0.00000000,0,0.00000000,0,0.00000000,0,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/fieldofscience/avg_gpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/fieldofscience/avg_gpu_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..dd8579d3ea --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/fieldofscience/avg_gpu_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Per Job: by PI Group" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[Biophysics] GPU Hours: Per Job","[Algebra and Number Theory] GPU Hours: Per Job","[Arts] GPU Hours: Per Job","[Biochemistry and Molecular Structure and Function] GPU Hours: Per Job","[Cell Biology] GPU Hours: Per Job","[Computer and Computation Theory] GPU Hours: Per Job","[Decision, Risk, and Management Science] GPU Hours: Per Job","[Design and Computer-Integrated Engineering] GPU Hours: Per Job","[Design, Tools, and Test] GPU Hours: Per Job","[Economics] GPU Hours: Per Job","[Emerging Technologies Initiation] GPU Hours: Per Job","[Experimental Systems] GPU Hours: Per Job","[Extragalactic Astronomy and Cosmology] GPU Hours: Per Job","[Fluid, Particulate, and Hydraulic Systems] GPU Hours: Per Job","[Galactic Astronomy] GPU Hours: Per Job","[Geology and Paleontology] GPU Hours: Per Job","[Geophysics] GPU Hours: Per Job","[Global Atmospheric Research] GPU Hours: Per Job","[Law and Social Sciences] GPU Hours: Per Job","[Mechanics and Materials] GPU Hours: Per Job","[Metals, Ceramics, and Electronic Materials] GPU Hours: Per Job","[Operations Research and Production Systems] GPU Hours: Per Job","[Organic and Macromolecular Chemistry] GPU Hours: Per Job","[Physical Chemistry] GPU Hours: Per Job","[Polar Aeronomy and Astrophysics] GPU Hours: Per Job","[Polar Meteorology] GPU Hours: Per Job","[Polar Ocean and Climate Systems] GPU Hours: Per Job","[Quantum Electronics, Waves, and Beams] GPU Hours: Per Job","[Seismology] GPU Hours: Per Job","[Sociology] GPU Hours: Per Job","[Solid State Chemistry and Polymers] GPU Hours: Per Job","[Solid-State and Microstructures] GPU Hours: Per Job","[Statistics and Probability] GPU Hours: Per Job","[Stellar Astronomy and Astrophysics] GPU Hours: Per Job","[Structures and Building Systems] GPU Hours: Per Job","[Systematic and Population Biology] GPU Hours: Per Job","[Systems Prototyping and Fabrication] GPU Hours: Per Job","[Tectonics] GPU Hours: Per Job","[Theoretical Physics] GPU Hours: Per Job","[Volcanology and Mantle Geochemistry] GPU Hours: Per Job" +2016-12,77.58212963,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000 +2017-01,1.53407407,0.00000000,0.00000000,0,0.00000000,0,0,0.00000000,0,0.00000000,0.00000000,0.00000000,0,0,0.00000000,0.00000000,0,0.00000000,0,0.00000000,0,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/fieldofscience/avg_gpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/fieldofscience/avg_gpu_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..e1e2c4626a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/fieldofscience/avg_gpu_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Per Job: by PI Group" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[Biophysics] GPU Hours: Per Job","[Algebra and Number Theory] GPU Hours: Per Job","[Arts] GPU Hours: Per Job","[Biochemistry and Molecular Structure and Function] GPU Hours: Per Job","[Cell Biology] GPU Hours: Per Job","[Computer and Computation Theory] GPU Hours: Per Job","[Decision, Risk, and Management Science] GPU Hours: Per Job","[Design and Computer-Integrated Engineering] GPU Hours: Per Job","[Design, Tools, and Test] GPU Hours: Per Job","[Economics] GPU Hours: Per Job","[Emerging Technologies Initiation] GPU Hours: Per Job","[Experimental Systems] GPU Hours: Per Job","[Extragalactic Astronomy and Cosmology] GPU Hours: Per Job","[Fluid, Particulate, and Hydraulic Systems] GPU Hours: Per Job","[Galactic Astronomy] GPU Hours: Per Job","[Geology and Paleontology] GPU Hours: Per Job","[Geophysics] GPU Hours: Per Job","[Global Atmospheric Research] GPU Hours: Per Job","[Law and Social Sciences] GPU Hours: Per Job","[Mechanics and Materials] GPU Hours: Per Job","[Metals, Ceramics, and Electronic Materials] GPU Hours: Per Job","[Operations Research and Production Systems] GPU Hours: Per Job","[Organic and Macromolecular Chemistry] GPU Hours: Per Job","[Physical Chemistry] GPU Hours: Per Job","[Polar Aeronomy and Astrophysics] GPU Hours: Per Job","[Polar Meteorology] GPU Hours: Per Job","[Polar Ocean and Climate Systems] GPU Hours: Per Job","[Quantum Electronics, Waves, and Beams] GPU Hours: Per Job","[Seismology] GPU Hours: Per Job","[Sociology] GPU Hours: Per Job","[Solid State Chemistry and Polymers] GPU Hours: Per Job","[Solid-State and Microstructures] GPU Hours: Per Job","[Statistics and Probability] GPU Hours: Per Job","[Stellar Astronomy and Astrophysics] GPU Hours: Per Job","[Structures and Building Systems] GPU Hours: Per Job","[Systematic and Population Biology] GPU Hours: Per Job","[Systems Prototyping and Fabrication] GPU Hours: Per Job","[Tectonics] GPU Hours: Per Job","[Theoretical Physics] GPU Hours: Per Job","[Volcanology and Mantle Geochemistry] GPU Hours: Per Job" +"2016 Q4",77.58212963,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000 +"2017 Q1",1.53407407,0.00000000,0.00000000,0,0.00000000,0,0,0.00000000,0,0.00000000,0.00000000,0.00000000,0,0,0.00000000,0.00000000,0,0.00000000,0,0.00000000,0,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/fieldofscience/avg_gpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/fieldofscience/avg_gpu_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..c0b895abf2 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/fieldofscience/avg_gpu_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Per Job: by PI Group" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[Biophysics] GPU Hours: Per Job","[Algebra and Number Theory] GPU Hours: Per Job","[Arts] GPU Hours: Per Job","[Biochemistry and Molecular Structure and Function] GPU Hours: Per Job","[Cell Biology] GPU Hours: Per Job","[Computer and Computation Theory] GPU Hours: Per Job","[Decision, Risk, and Management Science] GPU Hours: Per Job","[Design and Computer-Integrated Engineering] GPU Hours: Per Job","[Design, Tools, and Test] GPU Hours: Per Job","[Economics] GPU Hours: Per Job","[Emerging Technologies Initiation] GPU Hours: Per Job","[Experimental Systems] GPU Hours: Per Job","[Extragalactic Astronomy and Cosmology] GPU Hours: Per Job","[Fluid, Particulate, and Hydraulic Systems] GPU Hours: Per Job","[Galactic Astronomy] GPU Hours: Per Job","[Geology and Paleontology] GPU Hours: Per Job","[Geophysics] GPU Hours: Per Job","[Global Atmospheric Research] GPU Hours: Per Job","[Law and Social Sciences] GPU Hours: Per Job","[Mechanics and Materials] GPU Hours: Per Job","[Metals, Ceramics, and Electronic Materials] GPU Hours: Per Job","[Operations Research and Production Systems] GPU Hours: Per Job","[Organic and Macromolecular Chemistry] GPU Hours: Per Job","[Physical Chemistry] GPU Hours: Per Job","[Polar Aeronomy and Astrophysics] GPU Hours: Per Job","[Polar Meteorology] GPU Hours: Per Job","[Polar Ocean and Climate Systems] GPU Hours: Per Job","[Quantum Electronics, Waves, and Beams] GPU Hours: Per Job","[Seismology] GPU Hours: Per Job","[Sociology] GPU Hours: Per Job","[Solid State Chemistry and Polymers] GPU Hours: Per Job","[Solid-State and Microstructures] GPU Hours: Per Job","[Statistics and Probability] GPU Hours: Per Job","[Stellar Astronomy and Astrophysics] GPU Hours: Per Job","[Structures and Building Systems] GPU Hours: Per Job","[Systematic and Population Biology] GPU Hours: Per Job","[Systems Prototyping and Fabrication] GPU Hours: Per Job","[Tectonics] GPU Hours: Per Job","[Theoretical Physics] GPU Hours: Per Job","[Volcanology and Mantle Geochemistry] GPU Hours: Per Job" +2016,77.58212963,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000 +2017,1.53407407,0.00000000,0.00000000,0,0.00000000,0,0,0.00000000,0,0.00000000,0.00000000,0.00000000,0,0,0.00000000,0.00000000,0,0.00000000,0,0.00000000,0,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/fieldofscience/avg_gpus/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/fieldofscience/avg_gpus/aggregate-Day-reference.csv new file mode 100644 index 0000000000..ab09d401d7 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/fieldofscience/avg_gpus/aggregate-Day-reference.csv @@ -0,0 +1,49 @@ +title +"GPU Count: Per Job: by PI Group" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"PI Group","GPU Count: Per Job","Std Dev: GPU Count: Per Job" +Biophysics,0.1290,0.08824730508988667 +"Algebra and Number Theory",0.0000,0 +Arts,0.0000,0 +"Biochemistry and Molecular Structure and Function",0.0000,0 +"Cell Biology",0.0000,0 +"Computer and Computation Theory",0.0000,0 +"Decision, Risk, and Management Science",0.0000,0 +"Design and Computer-Integrated Engineering",0.0000,0 +"Design, Tools, and Test",0.0000,0 +Economics,0.0000,0 +"Emerging Technologies Initiation",0.0000,0 +"Experimental Systems",0.0000,0 +"Extragalactic Astronomy and Cosmology",0.0000,0 +"Fluid, Particulate, and Hydraulic Systems",0.0000,0 +"Galactic Astronomy",0.0000,0 +"Geology and Paleontology",0.0000,0 +Geophysics,0.0000,0 +"Global Atmospheric Research",0.0000,0 +"Law and Social Sciences",0.0000,0 +"Mechanics and Materials",0.0000,0 +"Metals, Ceramics, and Electronic Materials",0.0000,0 +"Operations Research and Production Systems",0.0000,0 +"Organic and Macromolecular Chemistry",0.0000,0 +"Physical Chemistry",0.0000,0 +"Polar Aeronomy and Astrophysics",0.0000,0 +"Polar Meteorology",0.0000,0 +"Polar Ocean and Climate Systems",0.0000,0 +"Quantum Electronics, Waves, and Beams",0.0000,0 +Seismology,0.0000,0 +Sociology,0.0000,0 +"Solid State Chemistry and Polymers",0.0000,0 +"Solid-State and Microstructures",0.0000,0 +"Statistics and Probability",0.0000,0 +"Stellar Astronomy and Astrophysics",0.0000,0 +"Structures and Building Systems",0.0000,0 +"Systematic and Population Biology",0.0000,0 +"Systems Prototyping and Fabrication",0.0000,0 +Tectonics,0.0000,0 +"Theoretical Physics",0.0000,0 +"Volcanology and Mantle Geochemistry",0.0000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/fieldofscience/avg_gpus/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/fieldofscience/avg_gpus/aggregate-Month-reference.csv new file mode 100644 index 0000000000..ab09d401d7 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/fieldofscience/avg_gpus/aggregate-Month-reference.csv @@ -0,0 +1,49 @@ +title +"GPU Count: Per Job: by PI Group" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"PI Group","GPU Count: Per Job","Std Dev: GPU Count: Per Job" +Biophysics,0.1290,0.08824730508988667 +"Algebra and Number Theory",0.0000,0 +Arts,0.0000,0 +"Biochemistry and Molecular Structure and Function",0.0000,0 +"Cell Biology",0.0000,0 +"Computer and Computation Theory",0.0000,0 +"Decision, Risk, and Management Science",0.0000,0 +"Design and Computer-Integrated Engineering",0.0000,0 +"Design, Tools, and Test",0.0000,0 +Economics,0.0000,0 +"Emerging Technologies Initiation",0.0000,0 +"Experimental Systems",0.0000,0 +"Extragalactic Astronomy and Cosmology",0.0000,0 +"Fluid, Particulate, and Hydraulic Systems",0.0000,0 +"Galactic Astronomy",0.0000,0 +"Geology and Paleontology",0.0000,0 +Geophysics,0.0000,0 +"Global Atmospheric Research",0.0000,0 +"Law and Social Sciences",0.0000,0 +"Mechanics and Materials",0.0000,0 +"Metals, Ceramics, and Electronic Materials",0.0000,0 +"Operations Research and Production Systems",0.0000,0 +"Organic and Macromolecular Chemistry",0.0000,0 +"Physical Chemistry",0.0000,0 +"Polar Aeronomy and Astrophysics",0.0000,0 +"Polar Meteorology",0.0000,0 +"Polar Ocean and Climate Systems",0.0000,0 +"Quantum Electronics, Waves, and Beams",0.0000,0 +Seismology,0.0000,0 +Sociology,0.0000,0 +"Solid State Chemistry and Polymers",0.0000,0 +"Solid-State and Microstructures",0.0000,0 +"Statistics and Probability",0.0000,0 +"Stellar Astronomy and Astrophysics",0.0000,0 +"Structures and Building Systems",0.0000,0 +"Systematic and Population Biology",0.0000,0 +"Systems Prototyping and Fabrication",0.0000,0 +Tectonics,0.0000,0 +"Theoretical Physics",0.0000,0 +"Volcanology and Mantle Geochemistry",0.0000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/fieldofscience/avg_gpus/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/fieldofscience/avg_gpus/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..ab09d401d7 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/fieldofscience/avg_gpus/aggregate-Quarter-reference.csv @@ -0,0 +1,49 @@ +title +"GPU Count: Per Job: by PI Group" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"PI Group","GPU Count: Per Job","Std Dev: GPU Count: Per Job" +Biophysics,0.1290,0.08824730508988667 +"Algebra and Number Theory",0.0000,0 +Arts,0.0000,0 +"Biochemistry and Molecular Structure and Function",0.0000,0 +"Cell Biology",0.0000,0 +"Computer and Computation Theory",0.0000,0 +"Decision, Risk, and Management Science",0.0000,0 +"Design and Computer-Integrated Engineering",0.0000,0 +"Design, Tools, and Test",0.0000,0 +Economics,0.0000,0 +"Emerging Technologies Initiation",0.0000,0 +"Experimental Systems",0.0000,0 +"Extragalactic Astronomy and Cosmology",0.0000,0 +"Fluid, Particulate, and Hydraulic Systems",0.0000,0 +"Galactic Astronomy",0.0000,0 +"Geology and Paleontology",0.0000,0 +Geophysics,0.0000,0 +"Global Atmospheric Research",0.0000,0 +"Law and Social Sciences",0.0000,0 +"Mechanics and Materials",0.0000,0 +"Metals, Ceramics, and Electronic Materials",0.0000,0 +"Operations Research and Production Systems",0.0000,0 +"Organic and Macromolecular Chemistry",0.0000,0 +"Physical Chemistry",0.0000,0 +"Polar Aeronomy and Astrophysics",0.0000,0 +"Polar Meteorology",0.0000,0 +"Polar Ocean and Climate Systems",0.0000,0 +"Quantum Electronics, Waves, and Beams",0.0000,0 +Seismology,0.0000,0 +Sociology,0.0000,0 +"Solid State Chemistry and Polymers",0.0000,0 +"Solid-State and Microstructures",0.0000,0 +"Statistics and Probability",0.0000,0 +"Stellar Astronomy and Astrophysics",0.0000,0 +"Structures and Building Systems",0.0000,0 +"Systematic and Population Biology",0.0000,0 +"Systems Prototyping and Fabrication",0.0000,0 +Tectonics,0.0000,0 +"Theoretical Physics",0.0000,0 +"Volcanology and Mantle Geochemistry",0.0000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/fieldofscience/avg_gpus/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/fieldofscience/avg_gpus/aggregate-Year-reference.csv new file mode 100644 index 0000000000..ab09d401d7 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/fieldofscience/avg_gpus/aggregate-Year-reference.csv @@ -0,0 +1,49 @@ +title +"GPU Count: Per Job: by PI Group" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"PI Group","GPU Count: Per Job","Std Dev: GPU Count: Per Job" +Biophysics,0.1290,0.08824730508988667 +"Algebra and Number Theory",0.0000,0 +Arts,0.0000,0 +"Biochemistry and Molecular Structure and Function",0.0000,0 +"Cell Biology",0.0000,0 +"Computer and Computation Theory",0.0000,0 +"Decision, Risk, and Management Science",0.0000,0 +"Design and Computer-Integrated Engineering",0.0000,0 +"Design, Tools, and Test",0.0000,0 +Economics,0.0000,0 +"Emerging Technologies Initiation",0.0000,0 +"Experimental Systems",0.0000,0 +"Extragalactic Astronomy and Cosmology",0.0000,0 +"Fluid, Particulate, and Hydraulic Systems",0.0000,0 +"Galactic Astronomy",0.0000,0 +"Geology and Paleontology",0.0000,0 +Geophysics,0.0000,0 +"Global Atmospheric Research",0.0000,0 +"Law and Social Sciences",0.0000,0 +"Mechanics and Materials",0.0000,0 +"Metals, Ceramics, and Electronic Materials",0.0000,0 +"Operations Research and Production Systems",0.0000,0 +"Organic and Macromolecular Chemistry",0.0000,0 +"Physical Chemistry",0.0000,0 +"Polar Aeronomy and Astrophysics",0.0000,0 +"Polar Meteorology",0.0000,0 +"Polar Ocean and Climate Systems",0.0000,0 +"Quantum Electronics, Waves, and Beams",0.0000,0 +Seismology,0.0000,0 +Sociology,0.0000,0 +"Solid State Chemistry and Polymers",0.0000,0 +"Solid-State and Microstructures",0.0000,0 +"Statistics and Probability",0.0000,0 +"Stellar Astronomy and Astrophysics",0.0000,0 +"Structures and Building Systems",0.0000,0 +"Systematic and Population Biology",0.0000,0 +"Systems Prototyping and Fabrication",0.0000,0 +Tectonics,0.0000,0 +"Theoretical Physics",0.0000,0 +"Volcanology and Mantle Geochemistry",0.0000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/fieldofscience/avg_gpus/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/fieldofscience/avg_gpus/timeseries-Day-reference.csv new file mode 100644 index 0000000000..cba3d59030 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/fieldofscience/avg_gpus/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"GPU Count: Per Job: by PI Group" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[Biophysics] GPU Count: Per Job","[Algebra and Number Theory] GPU Count: Per Job","[Arts] GPU Count: Per Job","[Biochemistry and Molecular Structure and Function] GPU Count: Per Job","[Cell Biology] GPU Count: Per Job","[Computer and Computation Theory] GPU Count: Per Job","[Decision, Risk, and Management Science] GPU Count: Per Job","[Design and Computer-Integrated Engineering] GPU Count: Per Job","[Design, Tools, and Test] GPU Count: Per Job","[Economics] GPU Count: Per Job","[Emerging Technologies Initiation] GPU Count: Per Job","[Experimental Systems] GPU Count: Per Job","[Extragalactic Astronomy and Cosmology] GPU Count: Per Job","[Fluid, Particulate, and Hydraulic Systems] GPU Count: Per Job","[Galactic Astronomy] GPU Count: Per Job","[Geology and Paleontology] GPU Count: Per Job","[Geophysics] GPU Count: Per Job","[Global Atmospheric Research] GPU Count: Per Job","[Law and Social Sciences] GPU Count: Per Job","[Mechanics and Materials] GPU Count: Per Job","[Metals, Ceramics, and Electronic Materials] GPU Count: Per Job","[Operations Research and Production Systems] GPU Count: Per Job","[Organic and Macromolecular Chemistry] GPU Count: Per Job","[Physical Chemistry] GPU Count: Per Job","[Polar Aeronomy and Astrophysics] GPU Count: Per Job","[Polar Meteorology] GPU Count: Per Job","[Polar Ocean and Climate Systems] GPU Count: Per Job","[Quantum Electronics, Waves, and Beams] GPU Count: Per Job","[Seismology] GPU Count: Per Job","[Sociology] GPU Count: Per Job","[Solid State Chemistry and Polymers] GPU Count: Per Job","[Solid-State and Microstructures] GPU Count: Per Job","[Statistics and Probability] GPU Count: Per Job","[Stellar Astronomy and Astrophysics] GPU Count: Per Job","[Structures and Building Systems] GPU Count: Per Job","[Systematic and Population Biology] GPU Count: Per Job","[Systems Prototyping and Fabrication] GPU Count: Per Job","[Tectonics] GPU Count: Per Job","[Theoretical Physics] GPU Count: Per Job","[Volcanology and Mantle Geochemistry] GPU Count: Per Job" +2016-12-22,2.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-23,2.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-24,2.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-25,2.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-26,2.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0 +2016-12-27,1.0000,0,0,0.0000,0.0000,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0.0000,0,0,0,0.0000,0,0.0000,0.0000,0,0.0000,0.0000,0,0,0,0,0,0 +2016-12-28,1.0000,0.0000,0,0.0000,0.0000,0,0,0,0,0,0,0.0000,0,0,0.0000,0,0,0,0,0,0,0.0000,0.0000,0.0000,0,0,0,0.0000,0,0.0000,0.0000,0,0.0000,0.0000,0,0,0.0000,0,0.0000,0.0000 +2016-12-29,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0,0,0.0000,0.0000,0,0,0.0000,0,0,0.0000,0,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0,0.0000,0.0000 +2016-12-30,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2016-12-31,0.3333,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0 +2017-01-01,0.1481,0.0000,0.0000,0,0.0000,0,0,0.0000,0,0.0000,0.0000,0.0000,0,0,0.0000,0.0000,0,0.0000,0,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/fieldofscience/avg_gpus/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/fieldofscience/avg_gpus/timeseries-Month-reference.csv new file mode 100644 index 0000000000..2dca7385eb --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/fieldofscience/avg_gpus/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Count: Per Job: by PI Group" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[Biophysics] GPU Count: Per Job","[Algebra and Number Theory] GPU Count: Per Job","[Arts] GPU Count: Per Job","[Biochemistry and Molecular Structure and Function] GPU Count: Per Job","[Cell Biology] GPU Count: Per Job","[Computer and Computation Theory] GPU Count: Per Job","[Decision, Risk, and Management Science] GPU Count: Per Job","[Design and Computer-Integrated Engineering] GPU Count: Per Job","[Design, Tools, and Test] GPU Count: Per Job","[Economics] GPU Count: Per Job","[Emerging Technologies Initiation] GPU Count: Per Job","[Experimental Systems] GPU Count: Per Job","[Extragalactic Astronomy and Cosmology] GPU Count: Per Job","[Fluid, Particulate, and Hydraulic Systems] GPU Count: Per Job","[Galactic Astronomy] GPU Count: Per Job","[Geology and Paleontology] GPU Count: Per Job","[Geophysics] GPU Count: Per Job","[Global Atmospheric Research] GPU Count: Per Job","[Law and Social Sciences] GPU Count: Per Job","[Mechanics and Materials] GPU Count: Per Job","[Metals, Ceramics, and Electronic Materials] GPU Count: Per Job","[Operations Research and Production Systems] GPU Count: Per Job","[Organic and Macromolecular Chemistry] GPU Count: Per Job","[Physical Chemistry] GPU Count: Per Job","[Polar Aeronomy and Astrophysics] GPU Count: Per Job","[Polar Meteorology] GPU Count: Per Job","[Polar Ocean and Climate Systems] GPU Count: Per Job","[Quantum Electronics, Waves, and Beams] GPU Count: Per Job","[Seismology] GPU Count: Per Job","[Sociology] GPU Count: Per Job","[Solid State Chemistry and Polymers] GPU Count: Per Job","[Solid-State and Microstructures] GPU Count: Per Job","[Statistics and Probability] GPU Count: Per Job","[Stellar Astronomy and Astrophysics] GPU Count: Per Job","[Structures and Building Systems] GPU Count: Per Job","[Systematic and Population Biology] GPU Count: Per Job","[Systems Prototyping and Fabrication] GPU Count: Per Job","[Tectonics] GPU Count: Per Job","[Theoretical Physics] GPU Count: Per Job","[Volcanology and Mantle Geochemistry] GPU Count: Per Job" +2016-12,0.3333,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2017-01,0.1481,0.0000,0.0000,0,0.0000,0,0,0.0000,0,0.0000,0.0000,0.0000,0,0,0.0000,0.0000,0,0.0000,0,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/fieldofscience/avg_gpus/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/fieldofscience/avg_gpus/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..d8f504e065 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/fieldofscience/avg_gpus/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Count: Per Job: by PI Group" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[Biophysics] GPU Count: Per Job","[Algebra and Number Theory] GPU Count: Per Job","[Arts] GPU Count: Per Job","[Biochemistry and Molecular Structure and Function] GPU Count: Per Job","[Cell Biology] GPU Count: Per Job","[Computer and Computation Theory] GPU Count: Per Job","[Decision, Risk, and Management Science] GPU Count: Per Job","[Design and Computer-Integrated Engineering] GPU Count: Per Job","[Design, Tools, and Test] GPU Count: Per Job","[Economics] GPU Count: Per Job","[Emerging Technologies Initiation] GPU Count: Per Job","[Experimental Systems] GPU Count: Per Job","[Extragalactic Astronomy and Cosmology] GPU Count: Per Job","[Fluid, Particulate, and Hydraulic Systems] GPU Count: Per Job","[Galactic Astronomy] GPU Count: Per Job","[Geology and Paleontology] GPU Count: Per Job","[Geophysics] GPU Count: Per Job","[Global Atmospheric Research] GPU Count: Per Job","[Law and Social Sciences] GPU Count: Per Job","[Mechanics and Materials] GPU Count: Per Job","[Metals, Ceramics, and Electronic Materials] GPU Count: Per Job","[Operations Research and Production Systems] GPU Count: Per Job","[Organic and Macromolecular Chemistry] GPU Count: Per Job","[Physical Chemistry] GPU Count: Per Job","[Polar Aeronomy and Astrophysics] GPU Count: Per Job","[Polar Meteorology] GPU Count: Per Job","[Polar Ocean and Climate Systems] GPU Count: Per Job","[Quantum Electronics, Waves, and Beams] GPU Count: Per Job","[Seismology] GPU Count: Per Job","[Sociology] GPU Count: Per Job","[Solid State Chemistry and Polymers] GPU Count: Per Job","[Solid-State and Microstructures] GPU Count: Per Job","[Statistics and Probability] GPU Count: Per Job","[Stellar Astronomy and Astrophysics] GPU Count: Per Job","[Structures and Building Systems] GPU Count: Per Job","[Systematic and Population Biology] GPU Count: Per Job","[Systems Prototyping and Fabrication] GPU Count: Per Job","[Tectonics] GPU Count: Per Job","[Theoretical Physics] GPU Count: Per Job","[Volcanology and Mantle Geochemistry] GPU Count: Per Job" +"2016 Q4",0.3333,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +"2017 Q1",0.1481,0.0000,0.0000,0,0.0000,0,0,0.0000,0,0.0000,0.0000,0.0000,0,0,0.0000,0.0000,0,0.0000,0,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/fieldofscience/avg_gpus/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/fieldofscience/avg_gpus/timeseries-Year-reference.csv new file mode 100644 index 0000000000..8fe58ca1bc --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/fieldofscience/avg_gpus/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Count: Per Job: by PI Group" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[Biophysics] GPU Count: Per Job","[Algebra and Number Theory] GPU Count: Per Job","[Arts] GPU Count: Per Job","[Biochemistry and Molecular Structure and Function] GPU Count: Per Job","[Cell Biology] GPU Count: Per Job","[Computer and Computation Theory] GPU Count: Per Job","[Decision, Risk, and Management Science] GPU Count: Per Job","[Design and Computer-Integrated Engineering] GPU Count: Per Job","[Design, Tools, and Test] GPU Count: Per Job","[Economics] GPU Count: Per Job","[Emerging Technologies Initiation] GPU Count: Per Job","[Experimental Systems] GPU Count: Per Job","[Extragalactic Astronomy and Cosmology] GPU Count: Per Job","[Fluid, Particulate, and Hydraulic Systems] GPU Count: Per Job","[Galactic Astronomy] GPU Count: Per Job","[Geology and Paleontology] GPU Count: Per Job","[Geophysics] GPU Count: Per Job","[Global Atmospheric Research] GPU Count: Per Job","[Law and Social Sciences] GPU Count: Per Job","[Mechanics and Materials] GPU Count: Per Job","[Metals, Ceramics, and Electronic Materials] GPU Count: Per Job","[Operations Research and Production Systems] GPU Count: Per Job","[Organic and Macromolecular Chemistry] GPU Count: Per Job","[Physical Chemistry] GPU Count: Per Job","[Polar Aeronomy and Astrophysics] GPU Count: Per Job","[Polar Meteorology] GPU Count: Per Job","[Polar Ocean and Climate Systems] GPU Count: Per Job","[Quantum Electronics, Waves, and Beams] GPU Count: Per Job","[Seismology] GPU Count: Per Job","[Sociology] GPU Count: Per Job","[Solid State Chemistry and Polymers] GPU Count: Per Job","[Solid-State and Microstructures] GPU Count: Per Job","[Statistics and Probability] GPU Count: Per Job","[Stellar Astronomy and Astrophysics] GPU Count: Per Job","[Structures and Building Systems] GPU Count: Per Job","[Systematic and Population Biology] GPU Count: Per Job","[Systems Prototyping and Fabrication] GPU Count: Per Job","[Tectonics] GPU Count: Per Job","[Theoretical Physics] GPU Count: Per Job","[Volcanology and Mantle Geochemistry] GPU Count: Per Job" +2016,0.3333,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2017,0.1481,0.0000,0.0000,0,0.0000,0,0,0.0000,0,0.0000,0.0000,0.0000,0,0,0.0000,0.0000,0,0.0000,0,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/fieldofscience/avg_job_size_weighted_by_gpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/fieldofscience/avg_job_size_weighted_by_gpu_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..70f595f776 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/fieldofscience/avg_job_size_weighted_by_gpu_hours/aggregate-Day-reference.csv @@ -0,0 +1,49 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by PI Group" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"PI Group","Job Size: Weighted By GPU Hours (GPU Count)" +Biophysics,12.0000 +"Algebra and Number Theory",0.0000 +Arts,0.0000 +"Biochemistry and Molecular Structure and Function",0.0000 +"Cell Biology",0.0000 +"Computer and Computation Theory",0.0000 +"Decision, Risk, and Management Science",0.0000 +"Design and Computer-Integrated Engineering",0.0000 +"Design, Tools, and Test",0.0000 +Economics,0.0000 +"Emerging Technologies Initiation",0.0000 +"Experimental Systems",0.0000 +"Extragalactic Astronomy and Cosmology",0.0000 +"Fluid, Particulate, and Hydraulic Systems",0.0000 +"Galactic Astronomy",0.0000 +"Geology and Paleontology",0.0000 +Geophysics,0.0000 +"Global Atmospheric Research",0.0000 +"Law and Social Sciences",0.0000 +"Mechanics and Materials",0.0000 +"Metals, Ceramics, and Electronic Materials",0.0000 +"Operations Research and Production Systems",0.0000 +"Organic and Macromolecular Chemistry",0.0000 +"Physical Chemistry",0.0000 +"Polar Aeronomy and Astrophysics",0.0000 +"Polar Meteorology",0.0000 +"Polar Ocean and Climate Systems",0.0000 +"Quantum Electronics, Waves, and Beams",0.0000 +Seismology,0.0000 +Sociology,0.0000 +"Solid State Chemistry and Polymers",0.0000 +"Solid-State and Microstructures",0.0000 +"Statistics and Probability",0.0000 +"Stellar Astronomy and Astrophysics",0.0000 +"Structures and Building Systems",0.0000 +"Systematic and Population Biology",0.0000 +"Systems Prototyping and Fabrication",0.0000 +Tectonics,0.0000 +"Theoretical Physics",0.0000 +"Volcanology and Mantle Geochemistry",0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/fieldofscience/avg_job_size_weighted_by_gpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/fieldofscience/avg_job_size_weighted_by_gpu_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..70f595f776 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/fieldofscience/avg_job_size_weighted_by_gpu_hours/aggregate-Month-reference.csv @@ -0,0 +1,49 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by PI Group" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"PI Group","Job Size: Weighted By GPU Hours (GPU Count)" +Biophysics,12.0000 +"Algebra and Number Theory",0.0000 +Arts,0.0000 +"Biochemistry and Molecular Structure and Function",0.0000 +"Cell Biology",0.0000 +"Computer and Computation Theory",0.0000 +"Decision, Risk, and Management Science",0.0000 +"Design and Computer-Integrated Engineering",0.0000 +"Design, Tools, and Test",0.0000 +Economics,0.0000 +"Emerging Technologies Initiation",0.0000 +"Experimental Systems",0.0000 +"Extragalactic Astronomy and Cosmology",0.0000 +"Fluid, Particulate, and Hydraulic Systems",0.0000 +"Galactic Astronomy",0.0000 +"Geology and Paleontology",0.0000 +Geophysics,0.0000 +"Global Atmospheric Research",0.0000 +"Law and Social Sciences",0.0000 +"Mechanics and Materials",0.0000 +"Metals, Ceramics, and Electronic Materials",0.0000 +"Operations Research and Production Systems",0.0000 +"Organic and Macromolecular Chemistry",0.0000 +"Physical Chemistry",0.0000 +"Polar Aeronomy and Astrophysics",0.0000 +"Polar Meteorology",0.0000 +"Polar Ocean and Climate Systems",0.0000 +"Quantum Electronics, Waves, and Beams",0.0000 +Seismology,0.0000 +Sociology,0.0000 +"Solid State Chemistry and Polymers",0.0000 +"Solid-State and Microstructures",0.0000 +"Statistics and Probability",0.0000 +"Stellar Astronomy and Astrophysics",0.0000 +"Structures and Building Systems",0.0000 +"Systematic and Population Biology",0.0000 +"Systems Prototyping and Fabrication",0.0000 +Tectonics,0.0000 +"Theoretical Physics",0.0000 +"Volcanology and Mantle Geochemistry",0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/fieldofscience/avg_job_size_weighted_by_gpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/fieldofscience/avg_job_size_weighted_by_gpu_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..70f595f776 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/fieldofscience/avg_job_size_weighted_by_gpu_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,49 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by PI Group" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"PI Group","Job Size: Weighted By GPU Hours (GPU Count)" +Biophysics,12.0000 +"Algebra and Number Theory",0.0000 +Arts,0.0000 +"Biochemistry and Molecular Structure and Function",0.0000 +"Cell Biology",0.0000 +"Computer and Computation Theory",0.0000 +"Decision, Risk, and Management Science",0.0000 +"Design and Computer-Integrated Engineering",0.0000 +"Design, Tools, and Test",0.0000 +Economics,0.0000 +"Emerging Technologies Initiation",0.0000 +"Experimental Systems",0.0000 +"Extragalactic Astronomy and Cosmology",0.0000 +"Fluid, Particulate, and Hydraulic Systems",0.0000 +"Galactic Astronomy",0.0000 +"Geology and Paleontology",0.0000 +Geophysics,0.0000 +"Global Atmospheric Research",0.0000 +"Law and Social Sciences",0.0000 +"Mechanics and Materials",0.0000 +"Metals, Ceramics, and Electronic Materials",0.0000 +"Operations Research and Production Systems",0.0000 +"Organic and Macromolecular Chemistry",0.0000 +"Physical Chemistry",0.0000 +"Polar Aeronomy and Astrophysics",0.0000 +"Polar Meteorology",0.0000 +"Polar Ocean and Climate Systems",0.0000 +"Quantum Electronics, Waves, and Beams",0.0000 +Seismology,0.0000 +Sociology,0.0000 +"Solid State Chemistry and Polymers",0.0000 +"Solid-State and Microstructures",0.0000 +"Statistics and Probability",0.0000 +"Stellar Astronomy and Astrophysics",0.0000 +"Structures and Building Systems",0.0000 +"Systematic and Population Biology",0.0000 +"Systems Prototyping and Fabrication",0.0000 +Tectonics,0.0000 +"Theoretical Physics",0.0000 +"Volcanology and Mantle Geochemistry",0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/fieldofscience/avg_job_size_weighted_by_gpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/fieldofscience/avg_job_size_weighted_by_gpu_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..70f595f776 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/fieldofscience/avg_job_size_weighted_by_gpu_hours/aggregate-Year-reference.csv @@ -0,0 +1,49 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by PI Group" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"PI Group","Job Size: Weighted By GPU Hours (GPU Count)" +Biophysics,12.0000 +"Algebra and Number Theory",0.0000 +Arts,0.0000 +"Biochemistry and Molecular Structure and Function",0.0000 +"Cell Biology",0.0000 +"Computer and Computation Theory",0.0000 +"Decision, Risk, and Management Science",0.0000 +"Design and Computer-Integrated Engineering",0.0000 +"Design, Tools, and Test",0.0000 +Economics,0.0000 +"Emerging Technologies Initiation",0.0000 +"Experimental Systems",0.0000 +"Extragalactic Astronomy and Cosmology",0.0000 +"Fluid, Particulate, and Hydraulic Systems",0.0000 +"Galactic Astronomy",0.0000 +"Geology and Paleontology",0.0000 +Geophysics,0.0000 +"Global Atmospheric Research",0.0000 +"Law and Social Sciences",0.0000 +"Mechanics and Materials",0.0000 +"Metals, Ceramics, and Electronic Materials",0.0000 +"Operations Research and Production Systems",0.0000 +"Organic and Macromolecular Chemistry",0.0000 +"Physical Chemistry",0.0000 +"Polar Aeronomy and Astrophysics",0.0000 +"Polar Meteorology",0.0000 +"Polar Ocean and Climate Systems",0.0000 +"Quantum Electronics, Waves, and Beams",0.0000 +Seismology,0.0000 +Sociology,0.0000 +"Solid State Chemistry and Polymers",0.0000 +"Solid-State and Microstructures",0.0000 +"Statistics and Probability",0.0000 +"Stellar Astronomy and Astrophysics",0.0000 +"Structures and Building Systems",0.0000 +"Systematic and Population Biology",0.0000 +"Systems Prototyping and Fabrication",0.0000 +Tectonics,0.0000 +"Theoretical Physics",0.0000 +"Volcanology and Mantle Geochemistry",0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/fieldofscience/avg_job_size_weighted_by_gpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/fieldofscience/avg_job_size_weighted_by_gpu_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..e56e2d1127 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/fieldofscience/avg_job_size_weighted_by_gpu_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by PI Group" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[Biophysics] Job Size: Weighted By GPU Hours (GPU Count)","[Algebra and Number Theory] Job Size: Weighted By GPU Hours (GPU Count)","[Arts] Job Size: Weighted By GPU Hours (GPU Count)","[Biochemistry and Molecular Structure and Function] Job Size: Weighted By GPU Hours (GPU Count)","[Cell Biology] Job Size: Weighted By GPU Hours (GPU Count)","[Computer and Computation Theory] Job Size: Weighted By GPU Hours (GPU Count)","[Decision, Risk, and Management Science] Job Size: Weighted By GPU Hours (GPU Count)","[Design and Computer-Integrated Engineering] Job Size: Weighted By GPU Hours (GPU Count)","[Design, Tools, and Test] Job Size: Weighted By GPU Hours (GPU Count)","[Economics] Job Size: Weighted By GPU Hours (GPU Count)","[Emerging Technologies Initiation] Job Size: Weighted By GPU Hours (GPU Count)","[Experimental Systems] Job Size: Weighted By GPU Hours (GPU Count)","[Extragalactic Astronomy and Cosmology] Job Size: Weighted By GPU Hours (GPU Count)","[Fluid, Particulate, and Hydraulic Systems] Job Size: Weighted By GPU Hours (GPU Count)","[Galactic Astronomy] Job Size: Weighted By GPU Hours (GPU Count)","[Geology and Paleontology] Job Size: Weighted By GPU Hours (GPU Count)","[Geophysics] Job Size: Weighted By GPU Hours (GPU Count)","[Global Atmospheric Research] Job Size: Weighted By GPU Hours (GPU Count)","[Law and Social Sciences] Job Size: Weighted By GPU Hours (GPU Count)","[Mechanics and Materials] Job Size: Weighted By GPU Hours (GPU Count)","[Metals, Ceramics, and Electronic Materials] Job Size: Weighted By GPU Hours (GPU Count)","[Operations Research and Production Systems] Job Size: Weighted By GPU Hours (GPU Count)","[Organic and Macromolecular Chemistry] Job Size: Weighted By GPU Hours (GPU Count)","[Physical Chemistry] Job Size: Weighted By GPU Hours (GPU Count)","[Polar Aeronomy and Astrophysics] Job Size: Weighted By GPU Hours (GPU Count)","[Polar Meteorology] Job Size: Weighted By GPU Hours (GPU Count)","[Polar Ocean and Climate Systems] Job Size: Weighted By GPU Hours (GPU Count)","[Quantum Electronics, Waves, and Beams] Job Size: Weighted By GPU Hours (GPU Count)","[Seismology] Job Size: Weighted By GPU Hours (GPU Count)","[Sociology] Job Size: Weighted By GPU Hours (GPU Count)","[Solid State Chemistry and Polymers] Job Size: Weighted By GPU Hours (GPU Count)","[Solid-State and Microstructures] Job Size: Weighted By GPU Hours (GPU Count)","[Statistics and Probability] Job Size: Weighted By GPU Hours (GPU Count)","[Stellar Astronomy and Astrophysics] Job Size: Weighted By GPU Hours (GPU Count)","[Structures and Building Systems] Job Size: Weighted By GPU Hours (GPU Count)","[Systematic and Population Biology] Job Size: Weighted By GPU Hours (GPU Count)","[Systems Prototyping and Fabrication] Job Size: Weighted By GPU Hours (GPU Count)","[Tectonics] Job Size: Weighted By GPU Hours (GPU Count)","[Theoretical Physics] Job Size: Weighted By GPU Hours (GPU Count)","[Volcanology and Mantle Geochemistry] Job Size: Weighted By GPU Hours (GPU Count)" +2016-12-22,12.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-23,12.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-24,12.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-25,12.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-26,12.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0 +2016-12-27,12.0000,0,0,0.0000,0.0000,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0.0000,0,0,0,0.0000,0,0.0000,0.0000,0,0.0000,0.0000,0,0,0,0,0,0 +2016-12-28,12.0000,0.0000,0,0.0000,0.0000,0,0,0,0,0,0,0.0000,0,0,0.0000,0,0,0,0,0,0,0.0000,0.0000,0.0000,0,0,0,0.0000,0,0.0000,0.0000,0,0.0000,0.0000,0,0,0.0000,0,0.0000,0.0000 +2016-12-29,12.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0,0,0.0000,0.0000,0,0,0.0000,0,0,0.0000,0,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0,0.0000,0.0000 +2016-12-30,12.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2016-12-31,12.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0 +2017-01-01,12.0000,0.0000,0.0000,0,0.0000,0,0,0.0000,0,0.0000,0.0000,0.0000,0,0,0.0000,0.0000,0,0.0000,0,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/fieldofscience/avg_job_size_weighted_by_gpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/fieldofscience/avg_job_size_weighted_by_gpu_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..519cd5695b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/fieldofscience/avg_job_size_weighted_by_gpu_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by PI Group" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[Biophysics] Job Size: Weighted By GPU Hours (GPU Count)","[Algebra and Number Theory] Job Size: Weighted By GPU Hours (GPU Count)","[Arts] Job Size: Weighted By GPU Hours (GPU Count)","[Biochemistry and Molecular Structure and Function] Job Size: Weighted By GPU Hours (GPU Count)","[Cell Biology] Job Size: Weighted By GPU Hours (GPU Count)","[Computer and Computation Theory] Job Size: Weighted By GPU Hours (GPU Count)","[Decision, Risk, and Management Science] Job Size: Weighted By GPU Hours (GPU Count)","[Design and Computer-Integrated Engineering] Job Size: Weighted By GPU Hours (GPU Count)","[Design, Tools, and Test] Job Size: Weighted By GPU Hours (GPU Count)","[Economics] Job Size: Weighted By GPU Hours (GPU Count)","[Emerging Technologies Initiation] Job Size: Weighted By GPU Hours (GPU Count)","[Experimental Systems] Job Size: Weighted By GPU Hours (GPU Count)","[Extragalactic Astronomy and Cosmology] Job Size: Weighted By GPU Hours (GPU Count)","[Fluid, Particulate, and Hydraulic Systems] Job Size: Weighted By GPU Hours (GPU Count)","[Galactic Astronomy] Job Size: Weighted By GPU Hours (GPU Count)","[Geology and Paleontology] Job Size: Weighted By GPU Hours (GPU Count)","[Geophysics] Job Size: Weighted By GPU Hours (GPU Count)","[Global Atmospheric Research] Job Size: Weighted By GPU Hours (GPU Count)","[Law and Social Sciences] Job Size: Weighted By GPU Hours (GPU Count)","[Mechanics and Materials] Job Size: Weighted By GPU Hours (GPU Count)","[Metals, Ceramics, and Electronic Materials] Job Size: Weighted By GPU Hours (GPU Count)","[Operations Research and Production Systems] Job Size: Weighted By GPU Hours (GPU Count)","[Organic and Macromolecular Chemistry] Job Size: Weighted By GPU Hours (GPU Count)","[Physical Chemistry] Job Size: Weighted By GPU Hours (GPU Count)","[Polar Aeronomy and Astrophysics] Job Size: Weighted By GPU Hours (GPU Count)","[Polar Meteorology] Job Size: Weighted By GPU Hours (GPU Count)","[Polar Ocean and Climate Systems] Job Size: Weighted By GPU Hours (GPU Count)","[Quantum Electronics, Waves, and Beams] Job Size: Weighted By GPU Hours (GPU Count)","[Seismology] Job Size: Weighted By GPU Hours (GPU Count)","[Sociology] Job Size: Weighted By GPU Hours (GPU Count)","[Solid State Chemistry and Polymers] Job Size: Weighted By GPU Hours (GPU Count)","[Solid-State and Microstructures] Job Size: Weighted By GPU Hours (GPU Count)","[Statistics and Probability] Job Size: Weighted By GPU Hours (GPU Count)","[Stellar Astronomy and Astrophysics] Job Size: Weighted By GPU Hours (GPU Count)","[Structures and Building Systems] Job Size: Weighted By GPU Hours (GPU Count)","[Systematic and Population Biology] Job Size: Weighted By GPU Hours (GPU Count)","[Systems Prototyping and Fabrication] Job Size: Weighted By GPU Hours (GPU Count)","[Tectonics] Job Size: Weighted By GPU Hours (GPU Count)","[Theoretical Physics] Job Size: Weighted By GPU Hours (GPU Count)","[Volcanology and Mantle Geochemistry] Job Size: Weighted By GPU Hours (GPU Count)" +2016-12,12.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2017-01,12.0000,0.0000,0.0000,0,0.0000,0,0,0.0000,0,0.0000,0.0000,0.0000,0,0,0.0000,0.0000,0,0.0000,0,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/fieldofscience/avg_job_size_weighted_by_gpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/fieldofscience/avg_job_size_weighted_by_gpu_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..0d7d181086 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/fieldofscience/avg_job_size_weighted_by_gpu_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by PI Group" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[Biophysics] Job Size: Weighted By GPU Hours (GPU Count)","[Algebra and Number Theory] Job Size: Weighted By GPU Hours (GPU Count)","[Arts] Job Size: Weighted By GPU Hours (GPU Count)","[Biochemistry and Molecular Structure and Function] Job Size: Weighted By GPU Hours (GPU Count)","[Cell Biology] Job Size: Weighted By GPU Hours (GPU Count)","[Computer and Computation Theory] Job Size: Weighted By GPU Hours (GPU Count)","[Decision, Risk, and Management Science] Job Size: Weighted By GPU Hours (GPU Count)","[Design and Computer-Integrated Engineering] Job Size: Weighted By GPU Hours (GPU Count)","[Design, Tools, and Test] Job Size: Weighted By GPU Hours (GPU Count)","[Economics] Job Size: Weighted By GPU Hours (GPU Count)","[Emerging Technologies Initiation] Job Size: Weighted By GPU Hours (GPU Count)","[Experimental Systems] Job Size: Weighted By GPU Hours (GPU Count)","[Extragalactic Astronomy and Cosmology] Job Size: Weighted By GPU Hours (GPU Count)","[Fluid, Particulate, and Hydraulic Systems] Job Size: Weighted By GPU Hours (GPU Count)","[Galactic Astronomy] Job Size: Weighted By GPU Hours (GPU Count)","[Geology and Paleontology] Job Size: Weighted By GPU Hours (GPU Count)","[Geophysics] Job Size: Weighted By GPU Hours (GPU Count)","[Global Atmospheric Research] Job Size: Weighted By GPU Hours (GPU Count)","[Law and Social Sciences] Job Size: Weighted By GPU Hours (GPU Count)","[Mechanics and Materials] Job Size: Weighted By GPU Hours (GPU Count)","[Metals, Ceramics, and Electronic Materials] Job Size: Weighted By GPU Hours (GPU Count)","[Operations Research and Production Systems] Job Size: Weighted By GPU Hours (GPU Count)","[Organic and Macromolecular Chemistry] Job Size: Weighted By GPU Hours (GPU Count)","[Physical Chemistry] Job Size: Weighted By GPU Hours (GPU Count)","[Polar Aeronomy and Astrophysics] Job Size: Weighted By GPU Hours (GPU Count)","[Polar Meteorology] Job Size: Weighted By GPU Hours (GPU Count)","[Polar Ocean and Climate Systems] Job Size: Weighted By GPU Hours (GPU Count)","[Quantum Electronics, Waves, and Beams] Job Size: Weighted By GPU Hours (GPU Count)","[Seismology] Job Size: Weighted By GPU Hours (GPU Count)","[Sociology] Job Size: Weighted By GPU Hours (GPU Count)","[Solid State Chemistry and Polymers] Job Size: Weighted By GPU Hours (GPU Count)","[Solid-State and Microstructures] Job Size: Weighted By GPU Hours (GPU Count)","[Statistics and Probability] Job Size: Weighted By GPU Hours (GPU Count)","[Stellar Astronomy and Astrophysics] Job Size: Weighted By GPU Hours (GPU Count)","[Structures and Building Systems] Job Size: Weighted By GPU Hours (GPU Count)","[Systematic and Population Biology] Job Size: Weighted By GPU Hours (GPU Count)","[Systems Prototyping and Fabrication] Job Size: Weighted By GPU Hours (GPU Count)","[Tectonics] Job Size: Weighted By GPU Hours (GPU Count)","[Theoretical Physics] Job Size: Weighted By GPU Hours (GPU Count)","[Volcanology and Mantle Geochemistry] Job Size: Weighted By GPU Hours (GPU Count)" +"2016 Q4",12.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +"2017 Q1",12.0000,0.0000,0.0000,0,0.0000,0,0,0.0000,0,0.0000,0.0000,0.0000,0,0,0.0000,0.0000,0,0.0000,0,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/fieldofscience/avg_job_size_weighted_by_gpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/fieldofscience/avg_job_size_weighted_by_gpu_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..f88f026959 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/fieldofscience/avg_job_size_weighted_by_gpu_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by PI Group" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[Biophysics] Job Size: Weighted By GPU Hours (GPU Count)","[Algebra and Number Theory] Job Size: Weighted By GPU Hours (GPU Count)","[Arts] Job Size: Weighted By GPU Hours (GPU Count)","[Biochemistry and Molecular Structure and Function] Job Size: Weighted By GPU Hours (GPU Count)","[Cell Biology] Job Size: Weighted By GPU Hours (GPU Count)","[Computer and Computation Theory] Job Size: Weighted By GPU Hours (GPU Count)","[Decision, Risk, and Management Science] Job Size: Weighted By GPU Hours (GPU Count)","[Design and Computer-Integrated Engineering] Job Size: Weighted By GPU Hours (GPU Count)","[Design, Tools, and Test] Job Size: Weighted By GPU Hours (GPU Count)","[Economics] Job Size: Weighted By GPU Hours (GPU Count)","[Emerging Technologies Initiation] Job Size: Weighted By GPU Hours (GPU Count)","[Experimental Systems] Job Size: Weighted By GPU Hours (GPU Count)","[Extragalactic Astronomy and Cosmology] Job Size: Weighted By GPU Hours (GPU Count)","[Fluid, Particulate, and Hydraulic Systems] Job Size: Weighted By GPU Hours (GPU Count)","[Galactic Astronomy] Job Size: Weighted By GPU Hours (GPU Count)","[Geology and Paleontology] Job Size: Weighted By GPU Hours (GPU Count)","[Geophysics] Job Size: Weighted By GPU Hours (GPU Count)","[Global Atmospheric Research] Job Size: Weighted By GPU Hours (GPU Count)","[Law and Social Sciences] Job Size: Weighted By GPU Hours (GPU Count)","[Mechanics and Materials] Job Size: Weighted By GPU Hours (GPU Count)","[Metals, Ceramics, and Electronic Materials] Job Size: Weighted By GPU Hours (GPU Count)","[Operations Research and Production Systems] Job Size: Weighted By GPU Hours (GPU Count)","[Organic and Macromolecular Chemistry] Job Size: Weighted By GPU Hours (GPU Count)","[Physical Chemistry] Job Size: Weighted By GPU Hours (GPU Count)","[Polar Aeronomy and Astrophysics] Job Size: Weighted By GPU Hours (GPU Count)","[Polar Meteorology] Job Size: Weighted By GPU Hours (GPU Count)","[Polar Ocean and Climate Systems] Job Size: Weighted By GPU Hours (GPU Count)","[Quantum Electronics, Waves, and Beams] Job Size: Weighted By GPU Hours (GPU Count)","[Seismology] Job Size: Weighted By GPU Hours (GPU Count)","[Sociology] Job Size: Weighted By GPU Hours (GPU Count)","[Solid State Chemistry and Polymers] Job Size: Weighted By GPU Hours (GPU Count)","[Solid-State and Microstructures] Job Size: Weighted By GPU Hours (GPU Count)","[Statistics and Probability] Job Size: Weighted By GPU Hours (GPU Count)","[Stellar Astronomy and Astrophysics] Job Size: Weighted By GPU Hours (GPU Count)","[Structures and Building Systems] Job Size: Weighted By GPU Hours (GPU Count)","[Systematic and Population Biology] Job Size: Weighted By GPU Hours (GPU Count)","[Systems Prototyping and Fabrication] Job Size: Weighted By GPU Hours (GPU Count)","[Tectonics] Job Size: Weighted By GPU Hours (GPU Count)","[Theoretical Physics] Job Size: Weighted By GPU Hours (GPU Count)","[Volcanology and Mantle Geochemistry] Job Size: Weighted By GPU Hours (GPU Count)" +2016,12.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2017,12.0000,0.0000,0.0000,0,0.0000,0,0,0.0000,0,0.0000,0.0000,0.0000,0,0,0.0000,0.0000,0,0.0000,0,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/fieldofscience/total_gpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/fieldofscience/total_gpu_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..7daadb4f64 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/fieldofscience/total_gpu_hours/aggregate-Day-reference.csv @@ -0,0 +1,49 @@ +title +"GPU Hours: Total: by PI Group" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"PI Group","GPU Hours: Total" +Biophysics,506.9128 +"Algebra and Number Theory",0.0000 +Arts,0.0000 +"Biochemistry and Molecular Structure and Function",0.0000 +"Cell Biology",0.0000 +"Computer and Computation Theory",0.0000 +"Decision, Risk, and Management Science",0.0000 +"Design and Computer-Integrated Engineering",0.0000 +"Design, Tools, and Test",0.0000 +Economics,0.0000 +"Emerging Technologies Initiation",0.0000 +"Experimental Systems",0.0000 +"Extragalactic Astronomy and Cosmology",0.0000 +"Fluid, Particulate, and Hydraulic Systems",0.0000 +"Galactic Astronomy",0.0000 +"Geology and Paleontology",0.0000 +Geophysics,0.0000 +"Global Atmospheric Research",0.0000 +"Law and Social Sciences",0.0000 +"Mechanics and Materials",0.0000 +"Metals, Ceramics, and Electronic Materials",0.0000 +"Operations Research and Production Systems",0.0000 +"Organic and Macromolecular Chemistry",0.0000 +"Physical Chemistry",0.0000 +"Polar Aeronomy and Astrophysics",0.0000 +"Polar Meteorology",0.0000 +"Polar Ocean and Climate Systems",0.0000 +"Quantum Electronics, Waves, and Beams",0.0000 +Seismology,0.0000 +Sociology,0.0000 +"Solid State Chemistry and Polymers",0.0000 +"Solid-State and Microstructures",0.0000 +"Statistics and Probability",0.0000 +"Stellar Astronomy and Astrophysics",0.0000 +"Structures and Building Systems",0.0000 +"Systematic and Population Biology",0.0000 +"Systems Prototyping and Fabrication",0.0000 +Tectonics,0.0000 +"Theoretical Physics",0.0000 +"Volcanology and Mantle Geochemistry",0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/fieldofscience/total_gpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/fieldofscience/total_gpu_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..7daadb4f64 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/fieldofscience/total_gpu_hours/aggregate-Month-reference.csv @@ -0,0 +1,49 @@ +title +"GPU Hours: Total: by PI Group" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"PI Group","GPU Hours: Total" +Biophysics,506.9128 +"Algebra and Number Theory",0.0000 +Arts,0.0000 +"Biochemistry and Molecular Structure and Function",0.0000 +"Cell Biology",0.0000 +"Computer and Computation Theory",0.0000 +"Decision, Risk, and Management Science",0.0000 +"Design and Computer-Integrated Engineering",0.0000 +"Design, Tools, and Test",0.0000 +Economics,0.0000 +"Emerging Technologies Initiation",0.0000 +"Experimental Systems",0.0000 +"Extragalactic Astronomy and Cosmology",0.0000 +"Fluid, Particulate, and Hydraulic Systems",0.0000 +"Galactic Astronomy",0.0000 +"Geology and Paleontology",0.0000 +Geophysics,0.0000 +"Global Atmospheric Research",0.0000 +"Law and Social Sciences",0.0000 +"Mechanics and Materials",0.0000 +"Metals, Ceramics, and Electronic Materials",0.0000 +"Operations Research and Production Systems",0.0000 +"Organic and Macromolecular Chemistry",0.0000 +"Physical Chemistry",0.0000 +"Polar Aeronomy and Astrophysics",0.0000 +"Polar Meteorology",0.0000 +"Polar Ocean and Climate Systems",0.0000 +"Quantum Electronics, Waves, and Beams",0.0000 +Seismology,0.0000 +Sociology,0.0000 +"Solid State Chemistry and Polymers",0.0000 +"Solid-State and Microstructures",0.0000 +"Statistics and Probability",0.0000 +"Stellar Astronomy and Astrophysics",0.0000 +"Structures and Building Systems",0.0000 +"Systematic and Population Biology",0.0000 +"Systems Prototyping and Fabrication",0.0000 +Tectonics,0.0000 +"Theoretical Physics",0.0000 +"Volcanology and Mantle Geochemistry",0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/fieldofscience/total_gpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/fieldofscience/total_gpu_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..7daadb4f64 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/fieldofscience/total_gpu_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,49 @@ +title +"GPU Hours: Total: by PI Group" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"PI Group","GPU Hours: Total" +Biophysics,506.9128 +"Algebra and Number Theory",0.0000 +Arts,0.0000 +"Biochemistry and Molecular Structure and Function",0.0000 +"Cell Biology",0.0000 +"Computer and Computation Theory",0.0000 +"Decision, Risk, and Management Science",0.0000 +"Design and Computer-Integrated Engineering",0.0000 +"Design, Tools, and Test",0.0000 +Economics,0.0000 +"Emerging Technologies Initiation",0.0000 +"Experimental Systems",0.0000 +"Extragalactic Astronomy and Cosmology",0.0000 +"Fluid, Particulate, and Hydraulic Systems",0.0000 +"Galactic Astronomy",0.0000 +"Geology and Paleontology",0.0000 +Geophysics,0.0000 +"Global Atmospheric Research",0.0000 +"Law and Social Sciences",0.0000 +"Mechanics and Materials",0.0000 +"Metals, Ceramics, and Electronic Materials",0.0000 +"Operations Research and Production Systems",0.0000 +"Organic and Macromolecular Chemistry",0.0000 +"Physical Chemistry",0.0000 +"Polar Aeronomy and Astrophysics",0.0000 +"Polar Meteorology",0.0000 +"Polar Ocean and Climate Systems",0.0000 +"Quantum Electronics, Waves, and Beams",0.0000 +Seismology,0.0000 +Sociology,0.0000 +"Solid State Chemistry and Polymers",0.0000 +"Solid-State and Microstructures",0.0000 +"Statistics and Probability",0.0000 +"Stellar Astronomy and Astrophysics",0.0000 +"Structures and Building Systems",0.0000 +"Systematic and Population Biology",0.0000 +"Systems Prototyping and Fabrication",0.0000 +Tectonics,0.0000 +"Theoretical Physics",0.0000 +"Volcanology and Mantle Geochemistry",0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/fieldofscience/total_gpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/fieldofscience/total_gpu_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..7daadb4f64 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/fieldofscience/total_gpu_hours/aggregate-Year-reference.csv @@ -0,0 +1,49 @@ +title +"GPU Hours: Total: by PI Group" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"PI Group","GPU Hours: Total" +Biophysics,506.9128 +"Algebra and Number Theory",0.0000 +Arts,0.0000 +"Biochemistry and Molecular Structure and Function",0.0000 +"Cell Biology",0.0000 +"Computer and Computation Theory",0.0000 +"Decision, Risk, and Management Science",0.0000 +"Design and Computer-Integrated Engineering",0.0000 +"Design, Tools, and Test",0.0000 +Economics,0.0000 +"Emerging Technologies Initiation",0.0000 +"Experimental Systems",0.0000 +"Extragalactic Astronomy and Cosmology",0.0000 +"Fluid, Particulate, and Hydraulic Systems",0.0000 +"Galactic Astronomy",0.0000 +"Geology and Paleontology",0.0000 +Geophysics,0.0000 +"Global Atmospheric Research",0.0000 +"Law and Social Sciences",0.0000 +"Mechanics and Materials",0.0000 +"Metals, Ceramics, and Electronic Materials",0.0000 +"Operations Research and Production Systems",0.0000 +"Organic and Macromolecular Chemistry",0.0000 +"Physical Chemistry",0.0000 +"Polar Aeronomy and Astrophysics",0.0000 +"Polar Meteorology",0.0000 +"Polar Ocean and Climate Systems",0.0000 +"Quantum Electronics, Waves, and Beams",0.0000 +Seismology,0.0000 +Sociology,0.0000 +"Solid State Chemistry and Polymers",0.0000 +"Solid-State and Microstructures",0.0000 +"Statistics and Probability",0.0000 +"Stellar Astronomy and Astrophysics",0.0000 +"Structures and Building Systems",0.0000 +"Systematic and Population Biology",0.0000 +"Systems Prototyping and Fabrication",0.0000 +Tectonics,0.0000 +"Theoretical Physics",0.0000 +"Volcanology and Mantle Geochemistry",0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/fieldofscience/total_gpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/fieldofscience/total_gpu_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..4e70e283a6 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/fieldofscience/total_gpu_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"GPU Hours: Total: by PI Group" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[Biophysics] GPU Hours: Total","[Algebra and Number Theory] GPU Hours: Total","[Arts] GPU Hours: Total","[Biochemistry and Molecular Structure and Function] GPU Hours: Total","[Cell Biology] GPU Hours: Total","[Computer and Computation Theory] GPU Hours: Total","[Decision, Risk, and Management Science] GPU Hours: Total","[Design and Computer-Integrated Engineering] GPU Hours: Total","[Design, Tools, and Test] GPU Hours: Total","[Economics] GPU Hours: Total","[Emerging Technologies Initiation] GPU Hours: Total","[Experimental Systems] GPU Hours: Total","[Extragalactic Astronomy and Cosmology] GPU Hours: Total","[Fluid, Particulate, and Hydraulic Systems] GPU Hours: Total","[Galactic Astronomy] GPU Hours: Total","[Geology and Paleontology] GPU Hours: Total","[Geophysics] GPU Hours: Total","[Global Atmospheric Research] GPU Hours: Total","[Law and Social Sciences] GPU Hours: Total","[Mechanics and Materials] GPU Hours: Total","[Metals, Ceramics, and Electronic Materials] GPU Hours: Total","[Operations Research and Production Systems] GPU Hours: Total","[Organic and Macromolecular Chemistry] GPU Hours: Total","[Physical Chemistry] GPU Hours: Total","[Polar Aeronomy and Astrophysics] GPU Hours: Total","[Polar Meteorology] GPU Hours: Total","[Polar Ocean and Climate Systems] GPU Hours: Total","[Quantum Electronics, Waves, and Beams] GPU Hours: Total","[Seismology] GPU Hours: Total","[Sociology] GPU Hours: Total","[Solid State Chemistry and Polymers] GPU Hours: Total","[Solid-State and Microstructures] GPU Hours: Total","[Statistics and Probability] GPU Hours: Total","[Stellar Astronomy and Astrophysics] GPU Hours: Total","[Structures and Building Systems] GPU Hours: Total","[Systematic and Population Biology] GPU Hours: Total","[Systems Prototyping and Fabrication] GPU Hours: Total","[Tectonics] GPU Hours: Total","[Theoretical Physics] GPU Hours: Total","[Volcanology and Mantle Geochemistry] GPU Hours: Total" +2016-12-22,33.4928,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-23,48.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-24,48.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-25,48.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-26,48.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0 +2016-12-27,48.0000,0,0,0.0000,0.0000,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0.0000,0,0,0,0.0000,0,0.0000,0.0000,0,0.0000,0.0000,0,0,0,0,0,0 +2016-12-28,48.0000,0.0000,0,0.0000,0.0000,0,0,0,0,0,0,0.0000,0,0,0.0000,0,0,0,0,0,0,0.0000,0.0000,0.0000,0,0,0,0.0000,0,0.0000,0.0000,0,0.0000,0.0000,0,0,0.0000,0,0.0000,0.0000 +2016-12-29,48.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0,0,0.0000,0.0000,0,0,0.0000,0,0,0.0000,0,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0,0.0000,0.0000 +2016-12-30,48.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2016-12-31,48.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0 +2017-01-01,41.4200,0.0000,0.0000,0,0.0000,0,0,0.0000,0,0.0000,0.0000,0.0000,0,0,0.0000,0.0000,0,0.0000,0,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/fieldofscience/total_gpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/fieldofscience/total_gpu_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..99fdb962b1 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/fieldofscience/total_gpu_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Total: by PI Group" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[Biophysics] GPU Hours: Total","[Algebra and Number Theory] GPU Hours: Total","[Arts] GPU Hours: Total","[Biochemistry and Molecular Structure and Function] GPU Hours: Total","[Cell Biology] GPU Hours: Total","[Computer and Computation Theory] GPU Hours: Total","[Decision, Risk, and Management Science] GPU Hours: Total","[Design and Computer-Integrated Engineering] GPU Hours: Total","[Design, Tools, and Test] GPU Hours: Total","[Economics] GPU Hours: Total","[Emerging Technologies Initiation] GPU Hours: Total","[Experimental Systems] GPU Hours: Total","[Extragalactic Astronomy and Cosmology] GPU Hours: Total","[Fluid, Particulate, and Hydraulic Systems] GPU Hours: Total","[Galactic Astronomy] GPU Hours: Total","[Geology and Paleontology] GPU Hours: Total","[Geophysics] GPU Hours: Total","[Global Atmospheric Research] GPU Hours: Total","[Law and Social Sciences] GPU Hours: Total","[Mechanics and Materials] GPU Hours: Total","[Metals, Ceramics, and Electronic Materials] GPU Hours: Total","[Operations Research and Production Systems] GPU Hours: Total","[Organic and Macromolecular Chemistry] GPU Hours: Total","[Physical Chemistry] GPU Hours: Total","[Polar Aeronomy and Astrophysics] GPU Hours: Total","[Polar Meteorology] GPU Hours: Total","[Polar Ocean and Climate Systems] GPU Hours: Total","[Quantum Electronics, Waves, and Beams] GPU Hours: Total","[Seismology] GPU Hours: Total","[Sociology] GPU Hours: Total","[Solid State Chemistry and Polymers] GPU Hours: Total","[Solid-State and Microstructures] GPU Hours: Total","[Statistics and Probability] GPU Hours: Total","[Stellar Astronomy and Astrophysics] GPU Hours: Total","[Structures and Building Systems] GPU Hours: Total","[Systematic and Population Biology] GPU Hours: Total","[Systems Prototyping and Fabrication] GPU Hours: Total","[Tectonics] GPU Hours: Total","[Theoretical Physics] GPU Hours: Total","[Volcanology and Mantle Geochemistry] GPU Hours: Total" +2016-12,465.4928,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2017-01,41.4200,0.0000,0.0000,0,0.0000,0,0,0.0000,0,0.0000,0.0000,0.0000,0,0,0.0000,0.0000,0,0.0000,0,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/fieldofscience/total_gpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/fieldofscience/total_gpu_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..8c9e41491d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/fieldofscience/total_gpu_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Total: by PI Group" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[Biophysics] GPU Hours: Total","[Algebra and Number Theory] GPU Hours: Total","[Arts] GPU Hours: Total","[Biochemistry and Molecular Structure and Function] GPU Hours: Total","[Cell Biology] GPU Hours: Total","[Computer and Computation Theory] GPU Hours: Total","[Decision, Risk, and Management Science] GPU Hours: Total","[Design and Computer-Integrated Engineering] GPU Hours: Total","[Design, Tools, and Test] GPU Hours: Total","[Economics] GPU Hours: Total","[Emerging Technologies Initiation] GPU Hours: Total","[Experimental Systems] GPU Hours: Total","[Extragalactic Astronomy and Cosmology] GPU Hours: Total","[Fluid, Particulate, and Hydraulic Systems] GPU Hours: Total","[Galactic Astronomy] GPU Hours: Total","[Geology and Paleontology] GPU Hours: Total","[Geophysics] GPU Hours: Total","[Global Atmospheric Research] GPU Hours: Total","[Law and Social Sciences] GPU Hours: Total","[Mechanics and Materials] GPU Hours: Total","[Metals, Ceramics, and Electronic Materials] GPU Hours: Total","[Operations Research and Production Systems] GPU Hours: Total","[Organic and Macromolecular Chemistry] GPU Hours: Total","[Physical Chemistry] GPU Hours: Total","[Polar Aeronomy and Astrophysics] GPU Hours: Total","[Polar Meteorology] GPU Hours: Total","[Polar Ocean and Climate Systems] GPU Hours: Total","[Quantum Electronics, Waves, and Beams] GPU Hours: Total","[Seismology] GPU Hours: Total","[Sociology] GPU Hours: Total","[Solid State Chemistry and Polymers] GPU Hours: Total","[Solid-State and Microstructures] GPU Hours: Total","[Statistics and Probability] GPU Hours: Total","[Stellar Astronomy and Astrophysics] GPU Hours: Total","[Structures and Building Systems] GPU Hours: Total","[Systematic and Population Biology] GPU Hours: Total","[Systems Prototyping and Fabrication] GPU Hours: Total","[Tectonics] GPU Hours: Total","[Theoretical Physics] GPU Hours: Total","[Volcanology and Mantle Geochemistry] GPU Hours: Total" +"2016 Q4",465.4928,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +"2017 Q1",41.4200,0.0000,0.0000,0,0.0000,0,0,0.0000,0,0.0000,0.0000,0.0000,0,0,0.0000,0.0000,0,0.0000,0,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/fieldofscience/total_gpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/fieldofscience/total_gpu_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..dfd98f33e9 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/fieldofscience/total_gpu_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Total: by PI Group" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[Biophysics] GPU Hours: Total","[Algebra and Number Theory] GPU Hours: Total","[Arts] GPU Hours: Total","[Biochemistry and Molecular Structure and Function] GPU Hours: Total","[Cell Biology] GPU Hours: Total","[Computer and Computation Theory] GPU Hours: Total","[Decision, Risk, and Management Science] GPU Hours: Total","[Design and Computer-Integrated Engineering] GPU Hours: Total","[Design, Tools, and Test] GPU Hours: Total","[Economics] GPU Hours: Total","[Emerging Technologies Initiation] GPU Hours: Total","[Experimental Systems] GPU Hours: Total","[Extragalactic Astronomy and Cosmology] GPU Hours: Total","[Fluid, Particulate, and Hydraulic Systems] GPU Hours: Total","[Galactic Astronomy] GPU Hours: Total","[Geology and Paleontology] GPU Hours: Total","[Geophysics] GPU Hours: Total","[Global Atmospheric Research] GPU Hours: Total","[Law and Social Sciences] GPU Hours: Total","[Mechanics and Materials] GPU Hours: Total","[Metals, Ceramics, and Electronic Materials] GPU Hours: Total","[Operations Research and Production Systems] GPU Hours: Total","[Organic and Macromolecular Chemistry] GPU Hours: Total","[Physical Chemistry] GPU Hours: Total","[Polar Aeronomy and Astrophysics] GPU Hours: Total","[Polar Meteorology] GPU Hours: Total","[Polar Ocean and Climate Systems] GPU Hours: Total","[Quantum Electronics, Waves, and Beams] GPU Hours: Total","[Seismology] GPU Hours: Total","[Sociology] GPU Hours: Total","[Solid State Chemistry and Polymers] GPU Hours: Total","[Solid-State and Microstructures] GPU Hours: Total","[Statistics and Probability] GPU Hours: Total","[Stellar Astronomy and Astrophysics] GPU Hours: Total","[Structures and Building Systems] GPU Hours: Total","[Systematic and Population Biology] GPU Hours: Total","[Systems Prototyping and Fabrication] GPU Hours: Total","[Tectonics] GPU Hours: Total","[Theoretical Physics] GPU Hours: Total","[Volcanology and Mantle Geochemistry] GPU Hours: Total" +2016,465.4928,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2017,41.4200,0.0000,0.0000,0,0.0000,0,0,0.0000,0,0.0000,0.0000,0.0000,0,0,0.0000,0.0000,0,0.0000,0,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/active_person_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/active_person_count/aggregate-Day-reference.csv new file mode 100644 index 0000000000..a22a557fea --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/active_person_count/aggregate-Day-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Users: Active: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"GPU Count","Number of Users: Active" +0,66 +2,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/active_person_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/active_person_count/aggregate-Month-reference.csv new file mode 100644 index 0000000000..a22a557fea --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/active_person_count/aggregate-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Users: Active: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"GPU Count","Number of Users: Active" +0,66 +2,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/active_person_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/active_person_count/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..a22a557fea --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/active_person_count/aggregate-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Users: Active: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"GPU Count","Number of Users: Active" +0,66 +2,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/active_person_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/active_person_count/aggregate-Year-reference.csv new file mode 100644 index 0000000000..a22a557fea --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/active_person_count/aggregate-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Users: Active: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"GPU Count","Number of Users: Active" +0,66 +2,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/active_person_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/active_person_count/timeseries-Day-reference.csv new file mode 100644 index 0000000000..67b648fec7 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/active_person_count/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Number of Users: Active: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[0] Number of Users: Active","[2] Number of Users: Active" +2016-12-22,1,1 +2016-12-23,2,1 +2016-12-24,2,1 +2016-12-25,3,1 +2016-12-26,4,1 +2016-12-27,15,1 +2016-12-28,24,1 +2016-12-29,42,1 +2016-12-30,63,1 +2016-12-31,55,1 +2017-01-01,38,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/active_person_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/active_person_count/timeseries-Month-reference.csv new file mode 100644 index 0000000000..7c356cf4fa --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/active_person_count/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Users: Active: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[0] Number of Users: Active","[2] Number of Users: Active" +2016-12,66,1 +2017-01,38,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/active_person_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/active_person_count/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..81e3ad710a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/active_person_count/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Users: Active: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[0] Number of Users: Active","[2] Number of Users: Active" +"2016 Q4",66,1 +"2017 Q1",38,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/active_person_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/active_person_count/timeseries-Year-reference.csv new file mode 100644 index 0000000000..f6ef6018f8 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/active_person_count/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Users: Active: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[0] Number of Users: Active","[2] Number of Users: Active" +2016,66,1 +2017,38,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/active_pi_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/active_pi_count/aggregate-Day-reference.csv new file mode 100644 index 0000000000..54ecf07f47 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/active_pi_count/aggregate-Day-reference.csv @@ -0,0 +1,11 @@ +title +"Number of PIs: Active: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"GPU Count","Number of PIs: Active" +0,41 +2,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/active_pi_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/active_pi_count/aggregate-Month-reference.csv new file mode 100644 index 0000000000..54ecf07f47 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/active_pi_count/aggregate-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Number of PIs: Active: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"GPU Count","Number of PIs: Active" +0,41 +2,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/active_pi_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/active_pi_count/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..54ecf07f47 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/active_pi_count/aggregate-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Number of PIs: Active: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"GPU Count","Number of PIs: Active" +0,41 +2,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/active_pi_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/active_pi_count/aggregate-Year-reference.csv new file mode 100644 index 0000000000..54ecf07f47 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/active_pi_count/aggregate-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Number of PIs: Active: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"GPU Count","Number of PIs: Active" +0,41 +2,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/active_pi_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/active_pi_count/timeseries-Day-reference.csv new file mode 100644 index 0000000000..570ddb0602 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/active_pi_count/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Number of PIs: Active: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[0] Number of PIs: Active","[2] Number of PIs: Active" +2016-12-22,1,1 +2016-12-23,2,1 +2016-12-24,2,1 +2016-12-25,2,1 +2016-12-26,3,1 +2016-12-27,11,1 +2016-12-28,18,1 +2016-12-29,28,1 +2016-12-30,39,1 +2016-12-31,34,1 +2017-01-01,25,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/active_pi_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/active_pi_count/timeseries-Month-reference.csv new file mode 100644 index 0000000000..714c93a3a9 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/active_pi_count/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Number of PIs: Active: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[0] Number of PIs: Active","[2] Number of PIs: Active" +2016-12,41,1 +2017-01,25,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/active_pi_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/active_pi_count/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..076c5de42f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/active_pi_count/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Number of PIs: Active: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[0] Number of PIs: Active","[2] Number of PIs: Active" +"2016 Q4",41,1 +"2017 Q1",25,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/active_pi_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/active_pi_count/timeseries-Year-reference.csv new file mode 100644 index 0000000000..36d2751cda --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/active_pi_count/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Number of PIs: Active: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[0] Number of PIs: Active","[2] Number of PIs: Active" +2016,41,1 +2017,25,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/active_resource_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/active_resource_count/aggregate-Day-reference.csv new file mode 100644 index 0000000000..1968d05fea --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/active_resource_count/aggregate-Day-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Resources: Active: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"GPU Count","Number of Resources: Active" +0,5 +2,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/active_resource_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/active_resource_count/aggregate-Month-reference.csv new file mode 100644 index 0000000000..1968d05fea --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/active_resource_count/aggregate-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Resources: Active: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"GPU Count","Number of Resources: Active" +0,5 +2,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/active_resource_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/active_resource_count/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..1968d05fea --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/active_resource_count/aggregate-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Resources: Active: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"GPU Count","Number of Resources: Active" +0,5 +2,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/active_resource_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/active_resource_count/aggregate-Year-reference.csv new file mode 100644 index 0000000000..1968d05fea --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/active_resource_count/aggregate-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Resources: Active: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"GPU Count","Number of Resources: Active" +0,5 +2,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/active_resource_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/active_resource_count/timeseries-Day-reference.csv new file mode 100644 index 0000000000..19cd976fad --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/active_resource_count/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Number of Resources: Active: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[0] Number of Resources: Active","[2] Number of Resources: Active" +2016-12-22,1,1 +2016-12-23,1,1 +2016-12-24,1,1 +2016-12-25,1,1 +2016-12-26,2,1 +2016-12-27,5,1 +2016-12-28,5,1 +2016-12-29,5,1 +2016-12-30,5,1 +2016-12-31,5,1 +2017-01-01,5,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/active_resource_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/active_resource_count/timeseries-Month-reference.csv new file mode 100644 index 0000000000..18769cd6a9 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/active_resource_count/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Resources: Active: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[0] Number of Resources: Active","[2] Number of Resources: Active" +2016-12,5,1 +2017-01,5,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/active_resource_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/active_resource_count/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..6a69bc2006 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/active_resource_count/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Resources: Active: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[0] Number of Resources: Active","[2] Number of Resources: Active" +"2016 Q4",5,1 +"2017 Q1",5,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/active_resource_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/active_resource_count/timeseries-Year-reference.csv new file mode 100644 index 0000000000..d473fe4b65 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/active_resource_count/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Resources: Active: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[0] Number of Resources: Active","[2] Number of Resources: Active" +2016,5,1 +2017,5,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/avg_cpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/avg_cpu_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..d46fefda96 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/avg_cpu_hours/aggregate-Day-reference.csv @@ -0,0 +1,11 @@ +title +"CPU Hours: Per Job: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"GPU Count","CPU Hours: Per Job","Std Dev: CPU Hours: Per Job" +0,11.74453254,0.45334655825879255 +2,1520.73833333, +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/avg_cpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/avg_cpu_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..09525e7d53 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/avg_cpu_hours/aggregate-Month-reference.csv @@ -0,0 +1,11 @@ +title +"CPU Hours: Per Job: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"GPU Count","CPU Hours: Per Job","Std Dev: CPU Hours: Per Job" +0,11.74453254,0.7927749973468059 +2,1520.73833333,899.5902978802504 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/avg_cpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/avg_cpu_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..09525e7d53 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/avg_cpu_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"CPU Hours: Per Job: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"GPU Count","CPU Hours: Per Job","Std Dev: CPU Hours: Per Job" +0,11.74453254,0.7927749973468059 +2,1520.73833333,899.5902978802504 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/avg_cpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/avg_cpu_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..09525e7d53 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/avg_cpu_hours/aggregate-Year-reference.csv @@ -0,0 +1,11 @@ +title +"CPU Hours: Per Job: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"GPU Count","CPU Hours: Per Job","Std Dev: CPU Hours: Per Job" +0,11.74453254,0.7927749973468059 +2,1520.73833333,899.5902978802504 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/avg_cpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/avg_cpu_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..126480d848 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/avg_cpu_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"CPU Hours: Per Job: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[0] CPU Hours: Per Job","[2] CPU Hours: Per Job" +2016-12-22,203.30000000,200.95666667 +2016-12-23,148.30180556,288.00000000 +2016-12-24,156.00000000,288.00000000 +2016-12-25,98.05400000,288.00000000 +2016-12-26,196.83333333,288.00000000 +2016-12-27,372.32060298,288.00000000 +2016-12-28,181.96149282,288.00000000 +2016-12-29,98.31729921,288.00000000 +2016-12-30,9.52489316,288.00000000 +2016-12-31,7.49752144,288.00000000 +2017-01-01,4.19773714,124.26000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/avg_cpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/avg_cpu_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..442f1eb1ab --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/avg_cpu_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"CPU Hours: Per Job: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[0] CPU Hours: Per Job","[2] CPU Hours: Per Job" +2016-12,13.66323374,2792.95666667 +2017-01,4.19773714,124.26000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/avg_cpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/avg_cpu_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..963ab4bd11 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/avg_cpu_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"CPU Hours: Per Job: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[0] CPU Hours: Per Job","[2] CPU Hours: Per Job" +"2016 Q4",13.66323374,2792.95666667 +"2017 Q1",4.19773714,124.26000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/avg_cpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/avg_cpu_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..31025c39ad --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/avg_cpu_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"CPU Hours: Per Job: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[0] CPU Hours: Per Job","[2] CPU Hours: Per Job" +2016,13.66323374,2792.95666667 +2017,4.19773714,124.26000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/avg_gpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/avg_gpu_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..d645fb38f1 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/avg_gpu_hours/aggregate-Day-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Per Job: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"GPU Count","GPU Hours: Per Job" +0,0.00000000 +2,253.45638889 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/avg_gpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/avg_gpu_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..d645fb38f1 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/avg_gpu_hours/aggregate-Month-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Per Job: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"GPU Count","GPU Hours: Per Job" +0,0.00000000 +2,253.45638889 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/avg_gpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/avg_gpu_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..d645fb38f1 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/avg_gpu_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Per Job: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"GPU Count","GPU Hours: Per Job" +0,0.00000000 +2,253.45638889 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/avg_gpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/avg_gpu_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..d645fb38f1 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/avg_gpu_hours/aggregate-Year-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Per Job: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"GPU Count","GPU Hours: Per Job" +0,0.00000000 +2,253.45638889 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/avg_gpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/avg_gpu_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..f1b8733132 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/avg_gpu_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"GPU Hours: Per Job: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[0] GPU Hours: Per Job","[2] GPU Hours: Per Job" +2016-12-22,0.00000000,33.49277778 +2016-12-23,0.00000000,48.00000000 +2016-12-24,0.00000000,48.00000000 +2016-12-25,0.00000000,48.00000000 +2016-12-26,0.00000000,48.00000000 +2016-12-27,0.00000000,48.00000000 +2016-12-28,0.00000000,48.00000000 +2016-12-29,0.00000000,48.00000000 +2016-12-30,0.00000000,48.00000000 +2016-12-31,0.00000000,48.00000000 +2017-01-01,0.00000000,20.71000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/avg_gpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/avg_gpu_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..acf895c1f4 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/avg_gpu_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Per Job: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[0] GPU Hours: Per Job","[2] GPU Hours: Per Job" +2016-12,0.00000000,465.49277778 +2017-01,0.00000000,20.71000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/avg_gpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/avg_gpu_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..8ebf038ad5 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/avg_gpu_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Per Job: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[0] GPU Hours: Per Job","[2] GPU Hours: Per Job" +"2016 Q4",0.00000000,465.49277778 +"2017 Q1",0.00000000,20.71000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/avg_gpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/avg_gpu_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..8868cea75d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/avg_gpu_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Per Job: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[0] GPU Hours: Per Job","[2] GPU Hours: Per Job" +2016,0.00000000,465.49277778 +2017,0.00000000,20.71000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/avg_gpus/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/avg_gpus/aggregate-Day-reference.csv new file mode 100644 index 0000000000..b62ac608af --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/avg_gpus/aggregate-Day-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Count: Per Job: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"GPU Count","GPU Count: Per Job","Std Dev: GPU Count: Per Job" +0,0.0000,0 +2,2.0000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/avg_gpus/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/avg_gpus/aggregate-Month-reference.csv new file mode 100644 index 0000000000..b62ac608af --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/avg_gpus/aggregate-Month-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Count: Per Job: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"GPU Count","GPU Count: Per Job","Std Dev: GPU Count: Per Job" +0,0.0000,0 +2,2.0000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/avg_gpus/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/avg_gpus/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..b62ac608af --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/avg_gpus/aggregate-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Count: Per Job: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"GPU Count","GPU Count: Per Job","Std Dev: GPU Count: Per Job" +0,0.0000,0 +2,2.0000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/avg_gpus/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/avg_gpus/aggregate-Year-reference.csv new file mode 100644 index 0000000000..b62ac608af --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/avg_gpus/aggregate-Year-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Count: Per Job: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"GPU Count","GPU Count: Per Job","Std Dev: GPU Count: Per Job" +0,0.0000,0 +2,2.0000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/avg_gpus/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/avg_gpus/timeseries-Day-reference.csv new file mode 100644 index 0000000000..58fae4864f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/avg_gpus/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"GPU Count: Per Job: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[0] GPU Count: Per Job","[2] GPU Count: Per Job" +2016-12-22,0.0000,2.0000 +2016-12-23,0.0000,2.0000 +2016-12-24,0.0000,2.0000 +2016-12-25,0.0000,2.0000 +2016-12-26,0.0000,2.0000 +2016-12-27,0.0000,2.0000 +2016-12-28,0.0000,2.0000 +2016-12-29,0.0000,2.0000 +2016-12-30,0.0000,2.0000 +2016-12-31,0.0000,2.0000 +2017-01-01,0.0000,2.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/avg_gpus/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/avg_gpus/timeseries-Month-reference.csv new file mode 100644 index 0000000000..700cfccf84 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/avg_gpus/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Count: Per Job: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[0] GPU Count: Per Job","[2] GPU Count: Per Job" +2016-12,0.0000,2.0000 +2017-01,0.0000,2.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/avg_gpus/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/avg_gpus/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..327af0ee6f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/avg_gpus/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Count: Per Job: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[0] GPU Count: Per Job","[2] GPU Count: Per Job" +"2016 Q4",0.0000,2.0000 +"2017 Q1",0.0000,2.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/avg_gpus/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/avg_gpus/timeseries-Year-reference.csv new file mode 100644 index 0000000000..14afc1faba --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/avg_gpus/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Count: Per Job: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[0] GPU Count: Per Job","[2] GPU Count: Per Job" +2016,0.0000,2.0000 +2017,0.0000,2.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/avg_job_size_weighted_by_cpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/avg_job_size_weighted_by_cpu_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..979be49cee --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/avg_job_size_weighted_by_cpu_hours/aggregate-Day-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Weighted By CPU Hours (Core Count): by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"GPU Count","Job Size: Weighted By CPU Hours (Core Count)" +0,65.8108 +2,12.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/avg_job_size_weighted_by_cpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/avg_job_size_weighted_by_cpu_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..979be49cee --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/avg_job_size_weighted_by_cpu_hours/aggregate-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Weighted By CPU Hours (Core Count): by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"GPU Count","Job Size: Weighted By CPU Hours (Core Count)" +0,65.8108 +2,12.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/avg_job_size_weighted_by_cpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/avg_job_size_weighted_by_cpu_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..979be49cee --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/avg_job_size_weighted_by_cpu_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Weighted By CPU Hours (Core Count): by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"GPU Count","Job Size: Weighted By CPU Hours (Core Count)" +0,65.8108 +2,12.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/avg_job_size_weighted_by_cpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/avg_job_size_weighted_by_cpu_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..979be49cee --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/avg_job_size_weighted_by_cpu_hours/aggregate-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Weighted By CPU Hours (Core Count): by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"GPU Count","Job Size: Weighted By CPU Hours (Core Count)" +0,65.8108 +2,12.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/avg_job_size_weighted_by_cpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/avg_job_size_weighted_by_cpu_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..04fbc57539 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/avg_job_size_weighted_by_cpu_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Job Size: Weighted By CPU Hours (Core Count): by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[0] Job Size: Weighted By CPU Hours (Core Count)","[2] Job Size: Weighted By CPU Hours (Core Count)" +2016-12-22,12.0000,12.0000 +2016-12-23,11.6809,12.0000 +2016-12-24,11.1538,12.0000 +2016-12-25,15.1906,12.0000 +2016-12-26,19.3287,12.0000 +2016-12-27,68.9139,12.0000 +2016-12-28,107.9503,12.0000 +2016-12-29,87.7147,12.0000 +2016-12-30,69.1753,12.0000 +2016-12-31,43.3951,12.0000 +2017-01-01,22.3122,12.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/avg_job_size_weighted_by_cpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/avg_job_size_weighted_by_cpu_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..d76545b6a9 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/avg_job_size_weighted_by_cpu_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Weighted By CPU Hours (Core Count): by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[0] Job Size: Weighted By CPU Hours (Core Count)","[2] Job Size: Weighted By CPU Hours (Core Count)" +2016-12,69.7491,12.0000 +2017-01,22.3122,12.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/avg_job_size_weighted_by_cpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/avg_job_size_weighted_by_cpu_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..1526735c14 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/avg_job_size_weighted_by_cpu_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Weighted By CPU Hours (Core Count): by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[0] Job Size: Weighted By CPU Hours (Core Count)","[2] Job Size: Weighted By CPU Hours (Core Count)" +"2016 Q4",69.7491,12.0000 +"2017 Q1",22.3122,12.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/avg_job_size_weighted_by_cpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/avg_job_size_weighted_by_cpu_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..bba2269bb3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/avg_job_size_weighted_by_cpu_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Weighted By CPU Hours (Core Count): by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[0] Job Size: Weighted By CPU Hours (Core Count)","[2] Job Size: Weighted By CPU Hours (Core Count)" +2016,69.7491,12.0000 +2017,22.3122,12.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/avg_job_size_weighted_by_gpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/avg_job_size_weighted_by_gpu_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..25b889eebc --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/avg_job_size_weighted_by_gpu_hours/aggregate-Day-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"GPU Count","Job Size: Weighted By GPU Hours (GPU Count)" +0,0.0000 +2,12.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/avg_job_size_weighted_by_gpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/avg_job_size_weighted_by_gpu_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..25b889eebc --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/avg_job_size_weighted_by_gpu_hours/aggregate-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"GPU Count","Job Size: Weighted By GPU Hours (GPU Count)" +0,0.0000 +2,12.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/avg_job_size_weighted_by_gpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/avg_job_size_weighted_by_gpu_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..25b889eebc --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/avg_job_size_weighted_by_gpu_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"GPU Count","Job Size: Weighted By GPU Hours (GPU Count)" +0,0.0000 +2,12.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/avg_job_size_weighted_by_gpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/avg_job_size_weighted_by_gpu_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..25b889eebc --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/avg_job_size_weighted_by_gpu_hours/aggregate-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"GPU Count","Job Size: Weighted By GPU Hours (GPU Count)" +0,0.0000 +2,12.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/avg_job_size_weighted_by_gpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/avg_job_size_weighted_by_gpu_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..b28dcfb2a3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/avg_job_size_weighted_by_gpu_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[0] Job Size: Weighted By GPU Hours (GPU Count)","[2] Job Size: Weighted By GPU Hours (GPU Count)" +2016-12-22,0.0000,12.0000 +2016-12-23,0.0000,12.0000 +2016-12-24,0.0000,12.0000 +2016-12-25,0.0000,12.0000 +2016-12-26,0.0000,12.0000 +2016-12-27,0.0000,12.0000 +2016-12-28,0.0000,12.0000 +2016-12-29,0.0000,12.0000 +2016-12-30,0.0000,12.0000 +2016-12-31,0.0000,12.0000 +2017-01-01,0.0000,12.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/avg_job_size_weighted_by_gpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/avg_job_size_weighted_by_gpu_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..be71e5eda7 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/avg_job_size_weighted_by_gpu_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[0] Job Size: Weighted By GPU Hours (GPU Count)","[2] Job Size: Weighted By GPU Hours (GPU Count)" +2016-12,0.0000,12.0000 +2017-01,0.0000,12.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/avg_job_size_weighted_by_gpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/avg_job_size_weighted_by_gpu_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..84f5c0133a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/avg_job_size_weighted_by_gpu_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[0] Job Size: Weighted By GPU Hours (GPU Count)","[2] Job Size: Weighted By GPU Hours (GPU Count)" +"2016 Q4",0.0000,12.0000 +"2017 Q1",0.0000,12.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/avg_job_size_weighted_by_gpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/avg_job_size_weighted_by_gpu_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..1a679a7d3f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/avg_job_size_weighted_by_gpu_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[0] Job Size: Weighted By GPU Hours (GPU Count)","[2] Job Size: Weighted By GPU Hours (GPU Count)" +2016,0.0000,12.0000 +2017,0.0000,12.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/avg_node_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/avg_node_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..4b5feb22a9 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/avg_node_hours/aggregate-Day-reference.csv @@ -0,0 +1,11 @@ +title +"Node Hours: Per Job: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"GPU Count","Node Hours: Per Job","Std Dev: Node Hours: Per Job" +0,2.18830603,0.03779688988122659 +2,126.72819444, +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/avg_node_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/avg_node_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..5eb9296993 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/avg_node_hours/aggregate-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Node Hours: Per Job: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"GPU Count","Node Hours: Per Job","Std Dev: Node Hours: Per Job" +0,2.18830603,0.06286554569018009 +2,126.72819444,74.96585815668755 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/avg_node_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/avg_node_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..5eb9296993 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/avg_node_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Node Hours: Per Job: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"GPU Count","Node Hours: Per Job","Std Dev: Node Hours: Per Job" +0,2.18830603,0.06286554569018009 +2,126.72819444,74.96585815668755 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/avg_node_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/avg_node_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..5eb9296993 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/avg_node_hours/aggregate-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Node Hours: Per Job: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"GPU Count","Node Hours: Per Job","Std Dev: Node Hours: Per Job" +0,2.18830603,0.06286554569018009 +2,126.72819444,74.96585815668755 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/avg_node_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/avg_node_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..58a4fb7b49 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/avg_node_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Node Hours: Per Job: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[0] Node Hours: Per Job","[2] Node Hours: Per Job" +2016-12-22,16.94166667,16.74638889 +2016-12-23,16.30180556,24.00000000 +2016-12-24,24.00000000,24.00000000 +2016-12-25,11.30155556,24.00000000 +2016-12-26,13.35208333,24.00000000 +2016-12-27,28.83883469,24.00000000 +2016-12-28,19.13277654,24.00000000 +2016-12-29,16.39131509,24.00000000 +2016-12-30,1.81203854,24.00000000 +2016-12-31,1.60005394,24.00000000 +2017-01-01,1.07678427,10.35500000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/avg_node_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/avg_node_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..f82a236d40 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/avg_node_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Node Hours: Per Job: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[0] Node Hours: Per Job","[2] Node Hours: Per Job" +2016-12,2.45898158,232.74638889 +2017-01,1.07678427,10.35500000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/avg_node_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/avg_node_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..d10656e711 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/avg_node_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Node Hours: Per Job: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[0] Node Hours: Per Job","[2] Node Hours: Per Job" +"2016 Q4",2.45898158,232.74638889 +"2017 Q1",1.07678427,10.35500000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/avg_node_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/avg_node_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..ee7542e7ae --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/avg_node_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Node Hours: Per Job: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[0] Node Hours: Per Job","[2] Node Hours: Per Job" +2016,2.45898158,232.74638889 +2017,1.07678427,10.35500000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/avg_processors/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/avg_processors/aggregate-Day-reference.csv new file mode 100644 index 0000000000..3354bd7a26 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/avg_processors/aggregate-Day-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Per Job (Core Count): by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"GPU Count","Job Size: Per Job (Core Count)","Std Dev: Job Size: Per Job (Core Count)" +0,8.7345,0.02156363253599851 +2,12.0000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/avg_processors/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/avg_processors/aggregate-Month-reference.csv new file mode 100644 index 0000000000..3354bd7a26 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/avg_processors/aggregate-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Per Job (Core Count): by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"GPU Count","Job Size: Per Job (Core Count)","Std Dev: Job Size: Per Job (Core Count)" +0,8.7345,0.02156363253599851 +2,12.0000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/avg_processors/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/avg_processors/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..3354bd7a26 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/avg_processors/aggregate-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Per Job (Core Count): by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"GPU Count","Job Size: Per Job (Core Count)","Std Dev: Job Size: Per Job (Core Count)" +0,8.7345,0.02156363253599851 +2,12.0000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/avg_processors/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/avg_processors/aggregate-Year-reference.csv new file mode 100644 index 0000000000..3354bd7a26 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/avg_processors/aggregate-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Per Job (Core Count): by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"GPU Count","Job Size: Per Job (Core Count)","Std Dev: Job Size: Per Job (Core Count)" +0,8.7345,0.02156363253599851 +2,12.0000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/avg_processors/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/avg_processors/timeseries-Day-reference.csv new file mode 100644 index 0000000000..da2605354c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/avg_processors/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Job Size: Per Job (Core Count): by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[0] Job Size: Per Job (Core Count)","[2] Job Size: Per Job (Core Count)" +2016-12-22,12.0000,12.0000 +2016-12-23,6.5000,12.0000 +2016-12-24,6.5000,12.0000 +2016-12-25,14.6000,12.0000 +2016-12-26,15.3000,12.0000 +2016-12-27,29.4390,12.0000 +2016-12-28,11.5635,12.0000 +2016-12-29,6.8608,12.0000 +2016-12-30,8.0162,12.0000 +2016-12-31,8.7856,12.0000 +2017-01-01,9.1323,12.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/avg_processors/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/avg_processors/timeseries-Month-reference.csv new file mode 100644 index 0000000000..53100fb9d5 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/avg_processors/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Per Job (Core Count): by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[0] Job Size: Per Job (Core Count)","[2] Job Size: Per Job (Core Count)" +2016-12,8.5389,12.0000 +2017-01,9.1323,12.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/avg_processors/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/avg_processors/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..84c2a0866a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/avg_processors/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Per Job (Core Count): by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[0] Job Size: Per Job (Core Count)","[2] Job Size: Per Job (Core Count)" +"2016 Q4",8.5389,12.0000 +"2017 Q1",9.1323,12.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/avg_processors/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/avg_processors/timeseries-Year-reference.csv new file mode 100644 index 0000000000..710206be53 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/avg_processors/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Per Job (Core Count): by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[0] Job Size: Per Job (Core Count)","[2] Job Size: Per Job (Core Count)" +2016,8.5389,12.0000 +2017,9.1323,12.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/avg_waitduration_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/avg_waitduration_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..22b5bee66e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/avg_waitduration_hours/aggregate-Day-reference.csv @@ -0,0 +1,11 @@ +title +"Wait Hours: Per Job: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"GPU Count","Wait Hours: Per Job","Std Dev: Wait Hours: Per Job" +0,4.29590611,0.08956818240268102 +2,0.00013889,0.00009820927516479828 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/avg_waitduration_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/avg_waitduration_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..22b5bee66e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/avg_waitduration_hours/aggregate-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Wait Hours: Per Job: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"GPU Count","Wait Hours: Per Job","Std Dev: Wait Hours: Per Job" +0,4.29590611,0.08956818240268102 +2,0.00013889,0.00009820927516479828 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/avg_waitduration_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/avg_waitduration_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..22b5bee66e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/avg_waitduration_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Wait Hours: Per Job: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"GPU Count","Wait Hours: Per Job","Std Dev: Wait Hours: Per Job" +0,4.29590611,0.08956818240268102 +2,0.00013889,0.00009820927516479828 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/avg_waitduration_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/avg_waitduration_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..22b5bee66e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/avg_waitduration_hours/aggregate-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Wait Hours: Per Job: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"GPU Count","Wait Hours: Per Job","Std Dev: Wait Hours: Per Job" +0,4.29590611,0.08956818240268102 +2,0.00013889,0.00009820927516479828 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/avg_waitduration_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/avg_waitduration_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..1f58befd7f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/avg_waitduration_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Wait Hours: Per Job: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[0] Wait Hours: Per Job","[2] Wait Hours: Per Job" +2016-12-22,9.33222222,0.00027778 +2016-12-23,9.59638889,0.00000000 +2016-12-24,0.00000000,0.00000000 +2016-12-25,36.96185185,0.00000000 +2016-12-26,0.00066667,0.00000000 +2016-12-27,63.81457885,0.00000000 +2016-12-28,8.81944104,0.00000000 +2016-12-29,4.73013286,0.00000000 +2016-12-30,7.20200027,0.00000000 +2016-12-31,2.68411411,0.00000000 +2017-01-01,1.71049414,0.00000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/avg_waitduration_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/avg_waitduration_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..f457b3c9e1 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/avg_waitduration_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Wait Hours: Per Job: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[0] Wait Hours: Per Job","[2] Wait Hours: Per Job" +2016-12,4.99060218,0.00027778 +2017-01,1.71049414,0.00000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/avg_waitduration_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/avg_waitduration_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..dab5871365 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/avg_waitduration_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Wait Hours: Per Job: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[0] Wait Hours: Per Job","[2] Wait Hours: Per Job" +"2016 Q4",4.99060218,0.00027778 +"2017 Q1",1.71049414,0.00000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/avg_waitduration_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/avg_waitduration_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..d5af09d763 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/avg_waitduration_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Wait Hours: Per Job: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[0] Wait Hours: Per Job","[2] Wait Hours: Per Job" +2016,4.99060218,0.00027778 +2017,1.71049414,0.00000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/avg_wallduration_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/avg_wallduration_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..e6b746013c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/avg_wallduration_hours/aggregate-Day-reference.csv @@ -0,0 +1,11 @@ +title +"Wall Hours: Per Job: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"GPU Count","Wall Hours: Per Job","Std Dev: Wall Hours: Per Job" +0,1.79107501,0.017902725699608067 +2,126.72819444, +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/avg_wallduration_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/avg_wallduration_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..ebe5b92de3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/avg_wallduration_hours/aggregate-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Wall Hours: Per Job: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"GPU Count","Wall Hours: Per Job","Std Dev: Wall Hours: Per Job" +0,1.79107501,0.02569893349474275 +2,126.72819444,74.96585815668755 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/avg_wallduration_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/avg_wallduration_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..ebe5b92de3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/avg_wallduration_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Wall Hours: Per Job: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"GPU Count","Wall Hours: Per Job","Std Dev: Wall Hours: Per Job" +0,1.79107501,0.02569893349474275 +2,126.72819444,74.96585815668755 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/avg_wallduration_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/avg_wallduration_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..ebe5b92de3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/avg_wallduration_hours/aggregate-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Wall Hours: Per Job: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"GPU Count","Wall Hours: Per Job","Std Dev: Wall Hours: Per Job" +0,1.79107501,0.02569893349474275 +2,126.72819444,74.96585815668755 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/avg_wallduration_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/avg_wallduration_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..05c8e94e7d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/avg_wallduration_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Wall Hours: Per Job: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[0] Wall Hours: Per Job","[2] Wall Hours: Per Job" +2016-12-22,16.94166667,16.74638889 +2016-12-23,16.30180556,24.00000000 +2016-12-24,24.00000000,24.00000000 +2016-12-25,11.30155556,24.00000000 +2016-12-26,13.35208333,24.00000000 +2016-12-27,12.44349593,24.00000000 +2016-12-28,10.13395014,24.00000000 +2016-12-29,11.77717622,24.00000000 +2016-12-30,1.48466465,24.00000000 +2016-12-31,1.42890835,24.00000000 +2017-01-01,1.01170495,10.35500000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/avg_wallduration_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/avg_wallduration_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..b9f9515bd2 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/avg_wallduration_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Wall Hours: Per Job: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[0] Wall Hours: Per Job","[2] Wall Hours: Per Job" +2016-12,1.97419352,232.74638889 +2017-01,1.01170495,10.35500000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/avg_wallduration_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/avg_wallduration_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..f4d79f4748 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/avg_wallduration_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Wall Hours: Per Job: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[0] Wall Hours: Per Job","[2] Wall Hours: Per Job" +"2016 Q4",1.97419352,232.74638889 +"2017 Q1",1.01170495,10.35500000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/avg_wallduration_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/avg_wallduration_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..e8e1ccfcf9 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/avg_wallduration_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Wall Hours: Per Job: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[0] Wall Hours: Per Job","[2] Wall Hours: Per Job" +2016,1.97419352,232.74638889 +2017,1.01170495,10.35500000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/expansion_factor/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/expansion_factor/aggregate-Day-reference.csv new file mode 100644 index 0000000000..552287dd19 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/expansion_factor/aggregate-Day-reference.csv @@ -0,0 +1,11 @@ +title +"User Expansion Factor: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"GPU Count","User Expansion Factor" +0,3.1066 +2,1.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/expansion_factor/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/expansion_factor/aggregate-Month-reference.csv new file mode 100644 index 0000000000..552287dd19 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/expansion_factor/aggregate-Month-reference.csv @@ -0,0 +1,11 @@ +title +"User Expansion Factor: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"GPU Count","User Expansion Factor" +0,3.1066 +2,1.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/expansion_factor/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/expansion_factor/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..552287dd19 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/expansion_factor/aggregate-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"User Expansion Factor: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"GPU Count","User Expansion Factor" +0,3.1066 +2,1.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/expansion_factor/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/expansion_factor/aggregate-Year-reference.csv new file mode 100644 index 0000000000..552287dd19 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/expansion_factor/aggregate-Year-reference.csv @@ -0,0 +1,11 @@ +title +"User Expansion Factor: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"GPU Count","User Expansion Factor" +0,3.1066 +2,1.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/expansion_factor/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/expansion_factor/timeseries-Day-reference.csv new file mode 100644 index 0000000000..5f1743f4da --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/expansion_factor/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"User Expansion Factor: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[0] User Expansion Factor","[2] User Expansion Factor" +2016-12-22,1.0495,1.0000 +2016-12-23,1.0525,1.0000 +2016-12-24,1.0552,1.0000 +2016-12-25,1.1158,1.0000 +2016-12-26,1.2076,1.0000 +2016-12-27,2.0662,1.0000 +2016-12-28,1.5099,1.0000 +2016-12-29,1.3805,1.0000 +2016-12-30,4.9363,1.0000 +2016-12-31,2.5847,1.0000 +2017-01-01,2.7567,1.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/expansion_factor/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/expansion_factor/timeseries-Month-reference.csv new file mode 100644 index 0000000000..c425337161 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/expansion_factor/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"User Expansion Factor: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[0] User Expansion Factor","[2] User Expansion Factor" +2016-12,3.1517,1.0000 +2017-01,2.7567,1.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/expansion_factor/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/expansion_factor/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..180ab029e9 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/expansion_factor/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"User Expansion Factor: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[0] User Expansion Factor","[2] User Expansion Factor" +"2016 Q4",3.1517,1.0000 +"2017 Q1",2.7567,1.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/expansion_factor/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/expansion_factor/timeseries-Year-reference.csv new file mode 100644 index 0000000000..1cfc62ea70 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/expansion_factor/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"User Expansion Factor: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[0] User Expansion Factor","[2] User Expansion Factor" +2016,3.1517,1.0000 +2017,2.7567,1.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/job_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/job_count/aggregate-Day-reference.csv new file mode 100644 index 0000000000..ad07d3a637 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/job_count/aggregate-Day-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Ended: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"GPU Count","Number of Jobs Ended" +0,71311 +2,2 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/job_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/job_count/aggregate-Month-reference.csv new file mode 100644 index 0000000000..ad07d3a637 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/job_count/aggregate-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Ended: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"GPU Count","Number of Jobs Ended" +0,71311 +2,2 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/job_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/job_count/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..ad07d3a637 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/job_count/aggregate-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Ended: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"GPU Count","Number of Jobs Ended" +0,71311 +2,2 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/job_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/job_count/aggregate-Year-reference.csv new file mode 100644 index 0000000000..ad07d3a637 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/job_count/aggregate-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Ended: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"GPU Count","Number of Jobs Ended" +0,71311 +2,2 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/job_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/job_count/timeseries-Day-reference.csv new file mode 100644 index 0000000000..a5999dc9fb --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/job_count/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Number of Jobs Ended: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[0] Number of Jobs Ended","[2] Number of Jobs Ended" +2016-12-22,0,0 +2016-12-23,0,0 +2016-12-24,0,0 +2016-12-25,0,0 +2016-12-26,0,0 +2016-12-27,0,0 +2016-12-28,0,0 +2016-12-29,0,0 +2016-12-30,26606,0 +2016-12-31,28141,0 +2017-01-01,16564,2 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/job_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/job_count/timeseries-Month-reference.csv new file mode 100644 index 0000000000..fb49506c37 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/job_count/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Ended: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[0] Number of Jobs Ended","[2] Number of Jobs Ended" +2016-12,54747,0 +2017-01,16564,2 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/job_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/job_count/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..f64923a86e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/job_count/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Ended: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[0] Number of Jobs Ended","[2] Number of Jobs Ended" +"2016 Q4",54747,0 +"2017 Q1",16564,2 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/job_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/job_count/timeseries-Year-reference.csv new file mode 100644 index 0000000000..8b5f88efef --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/job_count/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Ended: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[0] Number of Jobs Ended","[2] Number of Jobs Ended" +2016,54747,0 +2017,16564,2 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/max_processors/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/max_processors/aggregate-Day-reference.csv new file mode 100644 index 0000000000..7e9b13a2a8 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/max_processors/aggregate-Day-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Max (Core Count): by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"GPU Count","Job Size: Max (Core Count)" +0,336 +2,12 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/max_processors/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/max_processors/aggregate-Month-reference.csv new file mode 100644 index 0000000000..7e9b13a2a8 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/max_processors/aggregate-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Max (Core Count): by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"GPU Count","Job Size: Max (Core Count)" +0,336 +2,12 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/max_processors/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/max_processors/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..7e9b13a2a8 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/max_processors/aggregate-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Max (Core Count): by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"GPU Count","Job Size: Max (Core Count)" +0,336 +2,12 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/max_processors/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/max_processors/aggregate-Year-reference.csv new file mode 100644 index 0000000000..7e9b13a2a8 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/max_processors/aggregate-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Max (Core Count): by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"GPU Count","Job Size: Max (Core Count)" +0,336 +2,12 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/max_processors/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/max_processors/timeseries-Day-reference.csv new file mode 100644 index 0000000000..c755d3eac3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/max_processors/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Job Size: Max (Core Count): by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[0] Job Size: Max (Core Count)","[2] Job Size: Max (Core Count)" +2016-12-22,12,12 +2016-12-23,12,12 +2016-12-24,12,12 +2016-12-25,24,12 +2016-12-26,24,12 +2016-12-27,144,12 +2016-12-28,192,12 +2016-12-29,192,12 +2016-12-30,336,12 +2016-12-31,336,12 +2017-01-01,192,12 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/max_processors/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/max_processors/timeseries-Month-reference.csv new file mode 100644 index 0000000000..ad5ba0c0b9 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/max_processors/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Max (Core Count): by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[0] Job Size: Max (Core Count)","[2] Job Size: Max (Core Count)" +2016-12,336,12 +2017-01,192,12 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/max_processors/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/max_processors/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..cf4842f488 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/max_processors/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Max (Core Count): by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[0] Job Size: Max (Core Count)","[2] Job Size: Max (Core Count)" +"2016 Q4",336,12 +"2017 Q1",192,12 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/max_processors/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/max_processors/timeseries-Year-reference.csv new file mode 100644 index 0000000000..98c5dcf2c6 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/max_processors/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Max (Core Count): by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[0] Job Size: Max (Core Count)","[2] Job Size: Max (Core Count)" +2016,336,12 +2017,192,12 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/min_processors/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/min_processors/aggregate-Day-reference.csv new file mode 100644 index 0000000000..341abc8acf --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/min_processors/aggregate-Day-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Min (Core Count): by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"GPU Count","Job Size: Min (Core Count)" +0,1 +2,12 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/min_processors/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/min_processors/aggregate-Month-reference.csv new file mode 100644 index 0000000000..341abc8acf --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/min_processors/aggregate-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Min (Core Count): by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"GPU Count","Job Size: Min (Core Count)" +0,1 +2,12 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/min_processors/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/min_processors/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..341abc8acf --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/min_processors/aggregate-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Min (Core Count): by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"GPU Count","Job Size: Min (Core Count)" +0,1 +2,12 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/min_processors/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/min_processors/aggregate-Year-reference.csv new file mode 100644 index 0000000000..341abc8acf --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/min_processors/aggregate-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Min (Core Count): by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"GPU Count","Job Size: Min (Core Count)" +0,1 +2,12 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/min_processors/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/min_processors/timeseries-Day-reference.csv new file mode 100644 index 0000000000..1ee81515da --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/min_processors/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Job Size: Min (Core Count): by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[0] Job Size: Min (Core Count)","[2] Job Size: Min (Core Count)" +2016-12-22,12,12 +2016-12-23,1,12 +2016-12-24,1,12 +2016-12-25,1,12 +2016-12-26,1,12 +2016-12-27,1,12 +2016-12-28,1,12 +2016-12-29,1,12 +2016-12-30,1,12 +2016-12-31,1,12 +2017-01-01,1,12 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/min_processors/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/min_processors/timeseries-Month-reference.csv new file mode 100644 index 0000000000..54b4a05d49 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/min_processors/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Min (Core Count): by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[0] Job Size: Min (Core Count)","[2] Job Size: Min (Core Count)" +2016-12,1,12 +2017-01,1,12 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/min_processors/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/min_processors/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..a186c24576 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/min_processors/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Min (Core Count): by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[0] Job Size: Min (Core Count)","[2] Job Size: Min (Core Count)" +"2016 Q4",1,12 +"2017 Q1",1,12 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/min_processors/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/min_processors/timeseries-Year-reference.csv new file mode 100644 index 0000000000..185ecc2553 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/min_processors/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Min (Core Count): by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[0] Job Size: Min (Core Count)","[2] Job Size: Min (Core Count)" +2016,1,12 +2017,1,12 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/normalized_avg_processors/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/normalized_avg_processors/aggregate-Day-reference.csv new file mode 100644 index 0000000000..ae8f0d5ee4 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/normalized_avg_processors/aggregate-Day-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Normalized (% of Total Cores): by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"GPU Count","Job Size: Normalized (% of Total Cores)" +0,0.043672295 +2,0.300000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/normalized_avg_processors/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/normalized_avg_processors/aggregate-Month-reference.csv new file mode 100644 index 0000000000..ae8f0d5ee4 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/normalized_avg_processors/aggregate-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Normalized (% of Total Cores): by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"GPU Count","Job Size: Normalized (% of Total Cores)" +0,0.043672295 +2,0.300000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/normalized_avg_processors/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/normalized_avg_processors/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..ae8f0d5ee4 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/normalized_avg_processors/aggregate-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Normalized (% of Total Cores): by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"GPU Count","Job Size: Normalized (% of Total Cores)" +0,0.043672295 +2,0.300000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/normalized_avg_processors/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/normalized_avg_processors/aggregate-Year-reference.csv new file mode 100644 index 0000000000..ae8f0d5ee4 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/normalized_avg_processors/aggregate-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Normalized (% of Total Cores): by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"GPU Count","Job Size: Normalized (% of Total Cores)" +0,0.043672295 +2,0.300000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/normalized_avg_processors/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/normalized_avg_processors/timeseries-Day-reference.csv new file mode 100644 index 0000000000..31fbde2297 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/normalized_avg_processors/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Job Size: Normalized (% of Total Cores): by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[0] Job Size: Normalized (% of Total Cores)","[2] Job Size: Normalized (% of Total Cores)" +2016-12-22,0.300000000,0.300000000 +2016-12-23,0.162500000,0.300000000 +2016-12-24,0.162500000,0.300000000 +2016-12-25,0.365000000,0.300000000 +2016-12-26,0.191250000,0.300000000 +2016-12-27,0.147195122,0.300000000 +2016-12-28,0.057817372,0.300000000 +2016-12-29,0.034304198,0.300000000 +2016-12-30,0.040080751,0.300000000 +2016-12-31,0.043928113,0.300000000 +2017-01-01,0.045661374,0.300000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/normalized_avg_processors/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/normalized_avg_processors/timeseries-Month-reference.csv new file mode 100644 index 0000000000..efe48119fa --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/normalized_avg_processors/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Normalized (% of Total Cores): by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[0] Job Size: Normalized (% of Total Cores)","[2] Job Size: Normalized (% of Total Cores)" +2016-12,0.042694456,0.300000000 +2017-01,0.045661374,0.300000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/normalized_avg_processors/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/normalized_avg_processors/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..5736198e2d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/normalized_avg_processors/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Normalized (% of Total Cores): by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[0] Job Size: Normalized (% of Total Cores)","[2] Job Size: Normalized (% of Total Cores)" +"2016 Q4",0.042694456,0.300000000 +"2017 Q1",0.045661374,0.300000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/normalized_avg_processors/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/normalized_avg_processors/timeseries-Year-reference.csv new file mode 100644 index 0000000000..3e3daf710e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/normalized_avg_processors/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Normalized (% of Total Cores): by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[0] Job Size: Normalized (% of Total Cores)","[2] Job Size: Normalized (% of Total Cores)" +2016,0.042694456,0.300000000 +2017,0.045661374,0.300000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/running_job_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/running_job_count/aggregate-Day-reference.csv new file mode 100644 index 0000000000..444f15ae2b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/running_job_count/aggregate-Day-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Running: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"GPU Count","Number of Jobs Running" +0,71311 +2,2 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/running_job_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/running_job_count/aggregate-Month-reference.csv new file mode 100644 index 0000000000..444f15ae2b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/running_job_count/aggregate-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Running: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"GPU Count","Number of Jobs Running" +0,71311 +2,2 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/running_job_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/running_job_count/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..444f15ae2b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/running_job_count/aggregate-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Running: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"GPU Count","Number of Jobs Running" +0,71311 +2,2 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/running_job_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/running_job_count/aggregate-Year-reference.csv new file mode 100644 index 0000000000..444f15ae2b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/running_job_count/aggregate-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Running: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"GPU Count","Number of Jobs Running" +0,71311 +2,2 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/running_job_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/running_job_count/timeseries-Day-reference.csv new file mode 100644 index 0000000000..cd3c48a6d2 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/running_job_count/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Number of Jobs Running: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[0] Number of Jobs Running","[2] Number of Jobs Running" +2016-12-22,1,1 +2016-12-23,2,1 +2016-12-24,2,1 +2016-12-25,5,1 +2016-12-26,10,1 +2016-12-27,41,1 +2016-12-28,449,1 +2016-12-29,1739,1 +2016-12-30,28854,1 +2016-12-31,29602,1 +2017-01-01,16564,2 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/running_job_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/running_job_count/timeseries-Month-reference.csv new file mode 100644 index 0000000000..925b7dc776 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/running_job_count/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Running: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[0] Number of Jobs Running","[2] Number of Jobs Running" +2016-12,56208,1 +2017-01,16564,2 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/running_job_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/running_job_count/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..5657e279e6 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/running_job_count/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Running: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[0] Number of Jobs Running","[2] Number of Jobs Running" +"2016 Q4",56208,1 +"2017 Q1",16564,2 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/running_job_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/running_job_count/timeseries-Year-reference.csv new file mode 100644 index 0000000000..cfc70429a9 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/running_job_count/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Running: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[0] Number of Jobs Running","[2] Number of Jobs Running" +2016,56208,1 +2017,16564,2 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/started_job_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/started_job_count/aggregate-Day-reference.csv new file mode 100644 index 0000000000..a8c929476e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/started_job_count/aggregate-Day-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Started: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"GPU Count","Number of Jobs Started" +0,71311 +2,2 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/started_job_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/started_job_count/aggregate-Month-reference.csv new file mode 100644 index 0000000000..a8c929476e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/started_job_count/aggregate-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Started: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"GPU Count","Number of Jobs Started" +0,71311 +2,2 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/started_job_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/started_job_count/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..a8c929476e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/started_job_count/aggregate-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Started: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"GPU Count","Number of Jobs Started" +0,71311 +2,2 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/started_job_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/started_job_count/aggregate-Year-reference.csv new file mode 100644 index 0000000000..a8c929476e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/started_job_count/aggregate-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Started: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"GPU Count","Number of Jobs Started" +0,71311 +2,2 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/started_job_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/started_job_count/timeseries-Day-reference.csv new file mode 100644 index 0000000000..d688831a35 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/started_job_count/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Number of Jobs Started: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[0] Number of Jobs Started","[2] Number of Jobs Started" +2016-12-22,1,1 +2016-12-23,1,0 +2016-12-24,0,0 +2016-12-25,3,0 +2016-12-26,5,0 +2016-12-27,31,0 +2016-12-28,408,0 +2016-12-29,1290,0 +2016-12-30,27115,0 +2016-12-31,27354,0 +2017-01-01,15103,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/started_job_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/started_job_count/timeseries-Month-reference.csv new file mode 100644 index 0000000000..f1a7bbb780 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/started_job_count/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Started: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[0] Number of Jobs Started","[2] Number of Jobs Started" +2016-12,56208,1 +2017-01,15103,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/started_job_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/started_job_count/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..54cd0b22c7 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/started_job_count/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Started: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[0] Number of Jobs Started","[2] Number of Jobs Started" +"2016 Q4",56208,1 +"2017 Q1",15103,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/started_job_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/started_job_count/timeseries-Year-reference.csv new file mode 100644 index 0000000000..e52504a543 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/started_job_count/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Started: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[0] Number of Jobs Started","[2] Number of Jobs Started" +2016,56208,1 +2017,15103,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/submitted_job_count/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/submitted_job_count/aggregate-Day-reference.csv new file mode 100644 index 0000000000..3047699123 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/submitted_job_count/aggregate-Day-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Submitted: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"GPU Count","Number of Jobs Submitted" +0,64414 +2,2 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/submitted_job_count/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/submitted_job_count/aggregate-Month-reference.csv new file mode 100644 index 0000000000..404763a5ee --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/submitted_job_count/aggregate-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Submitted: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"GPU Count","Number of Jobs Submitted" +0,69241 +2,2 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/submitted_job_count/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/submitted_job_count/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..404763a5ee --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/submitted_job_count/aggregate-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Submitted: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"GPU Count","Number of Jobs Submitted" +0,69241 +2,2 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/submitted_job_count/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/submitted_job_count/aggregate-Year-reference.csv new file mode 100644 index 0000000000..404763a5ee --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/submitted_job_count/aggregate-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Submitted: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"GPU Count","Number of Jobs Submitted" +0,69241 +2,2 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/submitted_job_count/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/submitted_job_count/timeseries-Day-reference.csv new file mode 100644 index 0000000000..c70274fdc5 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/submitted_job_count/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Number of Jobs Submitted: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[0] Number of Jobs Submitted","[2] Number of Jobs Submitted" +2016-12-22,0,1 +2016-12-23,1,0 +2016-12-24,0,0 +2016-12-25,1,0 +2016-12-26,5,0 +2016-12-27,18,0 +2016-12-28,379,0 +2016-12-29,1206,0 +2016-12-30,25660,0 +2016-12-31,24111,0 +2017-01-01,13033,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/submitted_job_count/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/submitted_job_count/timeseries-Month-reference.csv new file mode 100644 index 0000000000..e319a4de5d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/submitted_job_count/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Submitted: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[0] Number of Jobs Submitted","[2] Number of Jobs Submitted" +2016-12,56208,1 +2017-01,13033,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/submitted_job_count/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/submitted_job_count/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..a31e74a134 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/submitted_job_count/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Submitted: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[0] Number of Jobs Submitted","[2] Number of Jobs Submitted" +"2016 Q4",56208,1 +"2017 Q1",13033,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/submitted_job_count/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/submitted_job_count/timeseries-Year-reference.csv new file mode 100644 index 0000000000..3f6c8e29a4 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/submitted_job_count/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Number of Jobs Submitted: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[0] Number of Jobs Submitted","[2] Number of Jobs Submitted" +2016,56208,1 +2017,13033,1 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/total_cpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/total_cpu_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..fa6cc0e585 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/total_cpu_hours/aggregate-Day-reference.csv @@ -0,0 +1,11 @@ +title +"CPU Hours: Total: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"GPU Count","CPU Hours: Total" +0,837514.3603 +2,3041.4767 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/total_cpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/total_cpu_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..fa6cc0e585 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/total_cpu_hours/aggregate-Month-reference.csv @@ -0,0 +1,11 @@ +title +"CPU Hours: Total: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"GPU Count","CPU Hours: Total" +0,837514.3603 +2,3041.4767 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/total_cpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/total_cpu_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..fa6cc0e585 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/total_cpu_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"CPU Hours: Total: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"GPU Count","CPU Hours: Total" +0,837514.3603 +2,3041.4767 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/total_cpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/total_cpu_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..fa6cc0e585 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/total_cpu_hours/aggregate-Year-reference.csv @@ -0,0 +1,11 @@ +title +"CPU Hours: Total: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"GPU Count","CPU Hours: Total" +0,837514.3603 +2,3041.4767 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/total_cpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/total_cpu_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..98fa24dee6 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/total_cpu_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"CPU Hours: Total: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[0] CPU Hours: Total","[2] CPU Hours: Total" +2016-12-22,203.3000,200.9567 +2016-12-23,296.6036,288.0000 +2016-12-24,312.0000,288.0000 +2016-12-25,490.2700,288.0000 +2016-12-26,1968.3333,288.0000 +2016-12-27,15265.1447,288.0000 +2016-12-28,81700.7103,288.0000 +2016-12-29,170973.7833,288.0000 +2016-12-30,274831.2672,288.0000 +2016-12-31,221941.6297,288.0000 +2017-01-01,69531.3181,248.5200 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/total_cpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/total_cpu_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..96f9ce8626 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/total_cpu_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"CPU Hours: Total: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[0] CPU Hours: Total","[2] CPU Hours: Total" +2016-12,767983.0422,2792.9567 +2017-01,69531.3181,248.5200 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/total_cpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/total_cpu_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..b3957f1fb4 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/total_cpu_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"CPU Hours: Total: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[0] CPU Hours: Total","[2] CPU Hours: Total" +"2016 Q4",767983.0422,2792.9567 +"2017 Q1",69531.3181,248.5200 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/total_cpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/total_cpu_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..c01e050aa7 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/total_cpu_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"CPU Hours: Total: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[0] CPU Hours: Total","[2] CPU Hours: Total" +2016,767983.0422,2792.9567 +2017,69531.3181,248.5200 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/total_gpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/total_gpu_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..5392c1e3f1 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/total_gpu_hours/aggregate-Day-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Total: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"GPU Count","GPU Hours: Total" +0,0.0000 +2,506.9128 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/total_gpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/total_gpu_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..5392c1e3f1 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/total_gpu_hours/aggregate-Month-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Total: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"GPU Count","GPU Hours: Total" +0,0.0000 +2,506.9128 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/total_gpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/total_gpu_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..5392c1e3f1 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/total_gpu_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Total: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"GPU Count","GPU Hours: Total" +0,0.0000 +2,506.9128 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/total_gpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/total_gpu_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..5392c1e3f1 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/total_gpu_hours/aggregate-Year-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Total: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"GPU Count","GPU Hours: Total" +0,0.0000 +2,506.9128 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/total_gpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/total_gpu_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..42d62245f2 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/total_gpu_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"GPU Hours: Total: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[0] GPU Hours: Total","[2] GPU Hours: Total" +2016-12-22,0.0000,33.4928 +2016-12-23,0.0000,48.0000 +2016-12-24,0.0000,48.0000 +2016-12-25,0.0000,48.0000 +2016-12-26,0.0000,48.0000 +2016-12-27,0.0000,48.0000 +2016-12-28,0.0000,48.0000 +2016-12-29,0.0000,48.0000 +2016-12-30,0.0000,48.0000 +2016-12-31,0.0000,48.0000 +2017-01-01,0.0000,41.4200 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/total_gpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/total_gpu_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..65124723ab --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/total_gpu_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Total: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[0] GPU Hours: Total","[2] GPU Hours: Total" +2016-12,0.0000,465.4928 +2017-01,0.0000,41.4200 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/total_gpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/total_gpu_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..f9c635a790 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/total_gpu_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Total: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[0] GPU Hours: Total","[2] GPU Hours: Total" +"2016 Q4",0.0000,465.4928 +"2017 Q1",0.0000,41.4200 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/total_gpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/total_gpu_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..97b3347dcb --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/total_gpu_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Total: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[0] GPU Hours: Total","[2] GPU Hours: Total" +2016,0.0000,465.4928 +2017,0.0000,41.4200 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/total_node_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/total_node_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..604aadbb8d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/total_node_hours/aggregate-Day-reference.csv @@ -0,0 +1,11 @@ +title +"Node Hours: Total: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"GPU Count","Node Hours: Total" +0,156050.2911 +2,253.4564 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/total_node_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/total_node_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..604aadbb8d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/total_node_hours/aggregate-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Node Hours: Total: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"GPU Count","Node Hours: Total" +0,156050.2911 +2,253.4564 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/total_node_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/total_node_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..604aadbb8d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/total_node_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Node Hours: Total: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"GPU Count","Node Hours: Total" +0,156050.2911 +2,253.4564 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/total_node_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/total_node_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..604aadbb8d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/total_node_hours/aggregate-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Node Hours: Total: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"GPU Count","Node Hours: Total" +0,156050.2911 +2,253.4564 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/total_node_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/total_node_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..c2b4e3c126 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/total_node_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Node Hours: Total: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[0] Node Hours: Total","[2] Node Hours: Total" +2016-12-22,16.9417,16.7464 +2016-12-23,32.6036,24.0000 +2016-12-24,48.0000,24.0000 +2016-12-25,56.5078,24.0000 +2016-12-26,133.5208,24.0000 +2016-12-27,1182.3922,24.0000 +2016-12-28,8590.6167,24.0000 +2016-12-29,28504.4969,24.0000 +2016-12-30,52284.5600,24.0000 +2016-12-31,47364.7967,24.0000 +2017-01-01,17835.8547,20.7100 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/total_node_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/total_node_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..06e6680993 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/total_node_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Node Hours: Total: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[0] Node Hours: Total","[2] Node Hours: Total" +2016-12,138214.4364,232.7464 +2017-01,17835.8547,20.7100 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/total_node_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/total_node_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..5d295d2641 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/total_node_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Node Hours: Total: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[0] Node Hours: Total","[2] Node Hours: Total" +"2016 Q4",138214.4364,232.7464 +"2017 Q1",17835.8547,20.7100 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/total_node_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/total_node_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..ac5c5c4cbe --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/total_node_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Node Hours: Total: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[0] Node Hours: Total","[2] Node Hours: Total" +2016,138214.4364,232.7464 +2017,17835.8547,20.7100 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/total_waitduration_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/total_waitduration_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..c1476f714b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/total_waitduration_hours/aggregate-Day-reference.csv @@ -0,0 +1,11 @@ +title +"Wait Hours: Total: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"GPU Count","Wait Hours: Total" +0,306345.3606 +2,0.0003 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/total_waitduration_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/total_waitduration_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..c1476f714b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/total_waitduration_hours/aggregate-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Wait Hours: Total: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"GPU Count","Wait Hours: Total" +0,306345.3606 +2,0.0003 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/total_waitduration_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/total_waitduration_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..c1476f714b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/total_waitduration_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Wait Hours: Total: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"GPU Count","Wait Hours: Total" +0,306345.3606 +2,0.0003 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/total_waitduration_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/total_waitduration_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..c1476f714b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/total_waitduration_hours/aggregate-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Wait Hours: Total: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"GPU Count","Wait Hours: Total" +0,306345.3606 +2,0.0003 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/total_waitduration_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/total_waitduration_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..ca74d4f661 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/total_waitduration_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Wait Hours: Total: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[0] Wait Hours: Total","[2] Wait Hours: Total" +2016-12-22,9.3322,0.0003 +2016-12-23,9.5964,0.0000 +2016-12-24,0.0000,0.0000 +2016-12-25,110.8856,0.0000 +2016-12-26,0.0033,0.0000 +2016-12-27,1978.2519,0.0000 +2016-12-28,3598.3319,0.0000 +2016-12-29,6101.8714,0.0000 +2016-12-30,195282.2372,0.0000 +2016-12-31,73421.2575,0.0000 +2017-01-01,25833.5931,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/total_waitduration_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/total_waitduration_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..1ea871b452 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/total_waitduration_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Wait Hours: Total: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[0] Wait Hours: Total","[2] Wait Hours: Total" +2016-12,280511.7675,0.0003 +2017-01,25833.5931,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/total_waitduration_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/total_waitduration_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..1009503fdc --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/total_waitduration_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Wait Hours: Total: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[0] Wait Hours: Total","[2] Wait Hours: Total" +"2016 Q4",280511.7675,0.0003 +"2017 Q1",25833.5931,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/total_waitduration_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/total_waitduration_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..588cdc538e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/total_waitduration_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Wait Hours: Total: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[0] Wait Hours: Total","[2] Wait Hours: Total" +2016,280511.7675,0.0003 +2017,25833.5931,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/total_wallduration_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/total_wallduration_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..a58b33dce1 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/total_wallduration_hours/aggregate-Day-reference.csv @@ -0,0 +1,11 @@ +title +"Wall Hours: Total: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"GPU Count","Wall Hours: Total" +0,127723.3500 +2,253.4564 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/total_wallduration_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/total_wallduration_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..a58b33dce1 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/total_wallduration_hours/aggregate-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Wall Hours: Total: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"GPU Count","Wall Hours: Total" +0,127723.3500 +2,253.4564 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/total_wallduration_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/total_wallduration_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..a58b33dce1 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/total_wallduration_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Wall Hours: Total: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"GPU Count","Wall Hours: Total" +0,127723.3500 +2,253.4564 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/total_wallduration_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/total_wallduration_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..a58b33dce1 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/total_wallduration_hours/aggregate-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Wall Hours: Total: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"GPU Count","Wall Hours: Total" +0,127723.3500 +2,253.4564 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/total_wallduration_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/total_wallduration_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..8f2ddc6856 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/total_wallduration_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Wall Hours: Total: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[0] Wall Hours: Total","[2] Wall Hours: Total" +2016-12-22,16.9417,16.7464 +2016-12-23,32.6036,24.0000 +2016-12-24,48.0000,24.0000 +2016-12-25,56.5078,24.0000 +2016-12-26,133.5208,24.0000 +2016-12-27,510.1833,24.0000 +2016-12-28,4550.1436,24.0000 +2016-12-29,20480.5094,24.0000 +2016-12-30,42838.5139,24.0000 +2016-12-31,42298.5450,24.0000 +2017-01-01,16757.8808,20.7100 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/total_wallduration_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/total_wallduration_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..f213c66690 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/total_wallduration_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Wall Hours: Total: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[0] Wall Hours: Total","[2] Wall Hours: Total" +2016-12,110965.4692,232.7464 +2017-01,16757.8808,20.7100 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/total_wallduration_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/total_wallduration_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..88a1ee5614 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/total_wallduration_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Wall Hours: Total: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[0] Wall Hours: Total","[2] Wall Hours: Total" +"2016 Q4",110965.4692,232.7464 +"2017 Q1",16757.8808,20.7100 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/total_wallduration_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/total_wallduration_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..26e40e79b7 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/total_wallduration_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Wall Hours: Total: by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[0] Wall Hours: Total","[2] Wall Hours: Total" +2016,110965.4692,232.7464 +2017,16757.8808,20.7100 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/utilization/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/utilization/aggregate-Day-reference.csv new file mode 100644 index 0000000000..f88dc400e6 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/utilization/aggregate-Day-reference.csv @@ -0,0 +1,11 @@ +title +"Screwdriver Utilization (%): by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"GPU Count","Screwdriver Utilization (%)" +0,15.862014399 +2,0.288018624 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/utilization/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/utilization/aggregate-Month-reference.csv new file mode 100644 index 0000000000..f88dc400e6 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/utilization/aggregate-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Screwdriver Utilization (%): by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"GPU Count","Screwdriver Utilization (%)" +0,15.862014399 +2,0.288018624 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/utilization/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/utilization/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..f88dc400e6 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/utilization/aggregate-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Screwdriver Utilization (%): by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"GPU Count","Screwdriver Utilization (%)" +0,15.862014399 +2,0.288018624 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/utilization/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/utilization/aggregate-Year-reference.csv new file mode 100644 index 0000000000..f88dc400e6 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/utilization/aggregate-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Screwdriver Utilization (%): by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"GPU Count","Screwdriver Utilization (%)" +0,15.862014399 +2,0.288018624 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/utilization/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/utilization/timeseries-Day-reference.csv new file mode 100644 index 0000000000..8663c19036 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/utilization/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Screwdriver Utilization (%): by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[0] Screwdriver Utilization (%)","[2] Screwdriver Utilization (%)" +2016-12-22,0.211770833,0.209329861 +2016-12-23,0.308962095,0.300000000 +2016-12-24,0.325000000,0.300000000 +2016-12-25,0.510697917,0.300000000 +2016-12-26,1.025173611,0.300000000 +2016-12-27,3.180238484,0.300000000 +2016-12-28,17.020981308,0.300000000 +2016-12-29,35.619538194,0.300000000 +2016-12-30,57.256514005,0.300000000 +2016-12-31,46.237839525,0.300000000 +2017-01-01,14.485691262,0.258875000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/utilization/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/utilization/timeseries-Month-reference.csv new file mode 100644 index 0000000000..add008a8ec --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/utilization/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Screwdriver Utilization (%): by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[0] Screwdriver Utilization (%)","[2] Screwdriver Utilization (%)" +2016-12,5.161176359,0.093849350 +2017-01,0.467280363,0.008350806 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/utilization/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/utilization/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..2c085ffca7 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/utilization/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Screwdriver Utilization (%): by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[0] Screwdriver Utilization (%)","[2] Screwdriver Utilization (%)" +"2016 Q4",1.739092034,0.031623151 +"2017 Q1",0.160952125,0.002876389 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/utilization/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/utilization/timeseries-Year-reference.csv new file mode 100644 index 0000000000..519134ea43 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/gpucount/utilization/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Screwdriver Utilization (%): by GPU Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[0] Screwdriver Utilization (%)","[2] Screwdriver Utilization (%)" +2016,0.437148817,0.007948989 +2017,0.039686825,0.000709247 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobsize/avg_gpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobsize/avg_gpu_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..eaa66eb678 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobsize/avg_gpu_hours/aggregate-Day-reference.csv @@ -0,0 +1,19 @@ +title +"GPU Hours: Per Job: by Job Size" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Size","GPU Hours: Per Job" +1,0.00000000 +2,0.00000000 +"3 - 4",0.00000000 +"5 - 8",0.00000000 +"9 - 16",0.02453833 +"17 - 32",0.00000000 +"33 - 64",0.00000000 +"65 - 128",0.00000000 +"129 - 256",0.00000000 +"257 - 512",0.00000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobsize/avg_gpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobsize/avg_gpu_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..eaa66eb678 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobsize/avg_gpu_hours/aggregate-Month-reference.csv @@ -0,0 +1,19 @@ +title +"GPU Hours: Per Job: by Job Size" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Size","GPU Hours: Per Job" +1,0.00000000 +2,0.00000000 +"3 - 4",0.00000000 +"5 - 8",0.00000000 +"9 - 16",0.02453833 +"17 - 32",0.00000000 +"33 - 64",0.00000000 +"65 - 128",0.00000000 +"129 - 256",0.00000000 +"257 - 512",0.00000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobsize/avg_gpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobsize/avg_gpu_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..eaa66eb678 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobsize/avg_gpu_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,19 @@ +title +"GPU Hours: Per Job: by Job Size" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Size","GPU Hours: Per Job" +1,0.00000000 +2,0.00000000 +"3 - 4",0.00000000 +"5 - 8",0.00000000 +"9 - 16",0.02453833 +"17 - 32",0.00000000 +"33 - 64",0.00000000 +"65 - 128",0.00000000 +"129 - 256",0.00000000 +"257 - 512",0.00000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobsize/avg_gpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobsize/avg_gpu_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..eaa66eb678 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobsize/avg_gpu_hours/aggregate-Year-reference.csv @@ -0,0 +1,19 @@ +title +"GPU Hours: Per Job: by Job Size" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Size","GPU Hours: Per Job" +1,0.00000000 +2,0.00000000 +"3 - 4",0.00000000 +"5 - 8",0.00000000 +"9 - 16",0.02453833 +"17 - 32",0.00000000 +"33 - 64",0.00000000 +"65 - 128",0.00000000 +"129 - 256",0.00000000 +"257 - 512",0.00000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobsize/avg_gpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobsize/avg_gpu_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..7bf796e22c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobsize/avg_gpu_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"GPU Hours: Per Job: by Job Size" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[1] GPU Hours: Per Job","[2] GPU Hours: Per Job","[3 - 4] GPU Hours: Per Job","[5 - 8] GPU Hours: Per Job","[9 - 16] GPU Hours: Per Job","[17 - 32] GPU Hours: Per Job","[33 - 64] GPU Hours: Per Job","[65 - 128] GPU Hours: Per Job","[129 - 256] GPU Hours: Per Job","[257 - 512] GPU Hours: Per Job" +2016-12-22,0,0,0,0,16.74638889,0,0,0,0,0 +2016-12-23,0.00000000,0,0,0,24.00000000,0,0,0,0,0 +2016-12-24,0.00000000,0,0,0,24.00000000,0,0,0,0,0 +2016-12-25,0.00000000,0,0,0,16.00000000,0.00000000,0,0,0,0 +2016-12-26,0.00000000,0,0,0,6.00000000,0.00000000,0,0,0,0 +2016-12-27,0.00000000,0,0,0.00000000,3.42857143,0.00000000,0.00000000,0.00000000,0.00000000,0 +2016-12-28,0.00000000,0,0,0.00000000,1.14285714,0.00000000,0.00000000,0.00000000,0.00000000,0 +2016-12-29,0.00000000,0.00000000,0.00000000,0.00000000,0.28915663,0.00000000,0.00000000,0.00000000,0.00000000,0 +2016-12-30,0.00000000,0.00000000,0.00000000,0.00000000,0.00870511,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000 +2016-12-31,0.00000000,0.00000000,0.00000000,0.00000000,0.00445228,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000 +2017-01-01,0.00000000,0.00000000,0.00000000,0.00000000,0.00851563,0.00000000,0.00000000,0.00000000,0.00000000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobsize/avg_gpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobsize/avg_gpu_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..bef8b75874 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobsize/avg_gpu_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Per Job: by Job Size" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[1] GPU Hours: Per Job","[2] GPU Hours: Per Job","[3 - 4] GPU Hours: Per Job","[5 - 8] GPU Hours: Per Job","[9 - 16] GPU Hours: Per Job","[17 - 32] GPU Hours: Per Job","[33 - 64] GPU Hours: Per Job","[65 - 128] GPU Hours: Per Job","[129 - 256] GPU Hours: Per Job","[257 - 512] GPU Hours: Per Job" +2016-12,0.00000000,0.00000000,0.00000000,0.00000000,0.02892337,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000 +2017-01,0.00000000,0.00000000,0.00000000,0.00000000,0.00851563,0.00000000,0.00000000,0.00000000,0.00000000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobsize/avg_gpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobsize/avg_gpu_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..1faea3cceb --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobsize/avg_gpu_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Per Job: by Job Size" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[1] GPU Hours: Per Job","[2] GPU Hours: Per Job","[3 - 4] GPU Hours: Per Job","[5 - 8] GPU Hours: Per Job","[9 - 16] GPU Hours: Per Job","[17 - 32] GPU Hours: Per Job","[33 - 64] GPU Hours: Per Job","[65 - 128] GPU Hours: Per Job","[129 - 256] GPU Hours: Per Job","[257 - 512] GPU Hours: Per Job" +"2016 Q4",0.00000000,0.00000000,0.00000000,0.00000000,0.02892337,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000 +"2017 Q1",0.00000000,0.00000000,0.00000000,0.00000000,0.00851563,0.00000000,0.00000000,0.00000000,0.00000000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobsize/avg_gpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobsize/avg_gpu_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..ad0fd6b630 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobsize/avg_gpu_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Per Job: by Job Size" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[1] GPU Hours: Per Job","[2] GPU Hours: Per Job","[3 - 4] GPU Hours: Per Job","[5 - 8] GPU Hours: Per Job","[9 - 16] GPU Hours: Per Job","[17 - 32] GPU Hours: Per Job","[33 - 64] GPU Hours: Per Job","[65 - 128] GPU Hours: Per Job","[129 - 256] GPU Hours: Per Job","[257 - 512] GPU Hours: Per Job" +2016,0.00000000,0.00000000,0.00000000,0.00000000,0.02892337,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000 +2017,0.00000000,0.00000000,0.00000000,0.00000000,0.00851563,0.00000000,0.00000000,0.00000000,0.00000000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobsize/avg_gpus/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobsize/avg_gpus/aggregate-Day-reference.csv new file mode 100644 index 0000000000..a359bebe60 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobsize/avg_gpus/aggregate-Day-reference.csv @@ -0,0 +1,19 @@ +title +"GPU Count: Per Job: by Job Size" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Size","GPU Count: Per Job","Std Dev: GPU Count: Per Job" +1,0.0000,0 +2,0.0000,0 +"3 - 4",0.0000,0 +"5 - 8",0.0000,0 +"9 - 16",0.0002,0.00013691016581798967 +"17 - 32",0.0000,0 +"33 - 64",0.0000,0 +"65 - 128",0.0000,0 +"129 - 256",0.0000,0 +"257 - 512",0.0000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobsize/avg_gpus/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobsize/avg_gpus/aggregate-Month-reference.csv new file mode 100644 index 0000000000..a359bebe60 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobsize/avg_gpus/aggregate-Month-reference.csv @@ -0,0 +1,19 @@ +title +"GPU Count: Per Job: by Job Size" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Size","GPU Count: Per Job","Std Dev: GPU Count: Per Job" +1,0.0000,0 +2,0.0000,0 +"3 - 4",0.0000,0 +"5 - 8",0.0000,0 +"9 - 16",0.0002,0.00013691016581798967 +"17 - 32",0.0000,0 +"33 - 64",0.0000,0 +"65 - 128",0.0000,0 +"129 - 256",0.0000,0 +"257 - 512",0.0000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobsize/avg_gpus/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobsize/avg_gpus/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..a359bebe60 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobsize/avg_gpus/aggregate-Quarter-reference.csv @@ -0,0 +1,19 @@ +title +"GPU Count: Per Job: by Job Size" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Size","GPU Count: Per Job","Std Dev: GPU Count: Per Job" +1,0.0000,0 +2,0.0000,0 +"3 - 4",0.0000,0 +"5 - 8",0.0000,0 +"9 - 16",0.0002,0.00013691016581798967 +"17 - 32",0.0000,0 +"33 - 64",0.0000,0 +"65 - 128",0.0000,0 +"129 - 256",0.0000,0 +"257 - 512",0.0000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobsize/avg_gpus/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobsize/avg_gpus/aggregate-Year-reference.csv new file mode 100644 index 0000000000..a359bebe60 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobsize/avg_gpus/aggregate-Year-reference.csv @@ -0,0 +1,19 @@ +title +"GPU Count: Per Job: by Job Size" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Size","GPU Count: Per Job","Std Dev: GPU Count: Per Job" +1,0.0000,0 +2,0.0000,0 +"3 - 4",0.0000,0 +"5 - 8",0.0000,0 +"9 - 16",0.0002,0.00013691016581798967 +"17 - 32",0.0000,0 +"33 - 64",0.0000,0 +"65 - 128",0.0000,0 +"129 - 256",0.0000,0 +"257 - 512",0.0000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobsize/avg_gpus/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobsize/avg_gpus/timeseries-Day-reference.csv new file mode 100644 index 0000000000..b8e72d2c03 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobsize/avg_gpus/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"GPU Count: Per Job: by Job Size" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[1] GPU Count: Per Job","[2] GPU Count: Per Job","[3 - 4] GPU Count: Per Job","[5 - 8] GPU Count: Per Job","[9 - 16] GPU Count: Per Job","[17 - 32] GPU Count: Per Job","[33 - 64] GPU Count: Per Job","[65 - 128] GPU Count: Per Job","[129 - 256] GPU Count: Per Job","[257 - 512] GPU Count: Per Job" +2016-12-22,0,0,0,0,1.0000,0,0,0,0,0 +2016-12-23,0.0000,0,0,0,1.0000,0,0,0,0,0 +2016-12-24,0.0000,0,0,0,1.0000,0,0,0,0,0 +2016-12-25,0.0000,0,0,0,0.6667,0.0000,0,0,0,0 +2016-12-26,0.0000,0,0,0,0.2500,0.0000,0,0,0,0 +2016-12-27,0.0000,0,0,0.0000,0.1429,0.0000,0.0000,0.0000,0.0000,0 +2016-12-28,0.0000,0,0,0.0000,0.0476,0.0000,0.0000,0.0000,0.0000,0 +2016-12-29,0.0000,0.0000,0.0000,0.0000,0.0120,0.0000,0.0000,0.0000,0.0000,0 +2016-12-30,0.0000,0.0000,0.0000,0.0000,0.0004,0.0000,0.0000,0.0000,0.0000,0.0000 +2016-12-31,0.0000,0.0000,0.0000,0.0000,0.0002,0.0000,0.0000,0.0000,0.0000,0.0000 +2017-01-01,0.0000,0.0000,0.0000,0.0000,0.0008,0.0000,0.0000,0.0000,0.0000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobsize/avg_gpus/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobsize/avg_gpus/timeseries-Month-reference.csv new file mode 100644 index 0000000000..4a160c013a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobsize/avg_gpus/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Count: Per Job: by Job Size" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[1] GPU Count: Per Job","[2] GPU Count: Per Job","[3 - 4] GPU Count: Per Job","[5 - 8] GPU Count: Per Job","[9 - 16] GPU Count: Per Job","[17 - 32] GPU Count: Per Job","[33 - 64] GPU Count: Per Job","[65 - 128] GPU Count: Per Job","[129 - 256] GPU Count: Per Job","[257 - 512] GPU Count: Per Job" +2016-12,0.0000,0.0000,0.0000,0.0000,0.0001,0.0000,0.0000,0.0000,0.0000,0.0000 +2017-01,0.0000,0.0000,0.0000,0.0000,0.0008,0.0000,0.0000,0.0000,0.0000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobsize/avg_gpus/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobsize/avg_gpus/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..3c9a2b6a6b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobsize/avg_gpus/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Count: Per Job: by Job Size" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[1] GPU Count: Per Job","[2] GPU Count: Per Job","[3 - 4] GPU Count: Per Job","[5 - 8] GPU Count: Per Job","[9 - 16] GPU Count: Per Job","[17 - 32] GPU Count: Per Job","[33 - 64] GPU Count: Per Job","[65 - 128] GPU Count: Per Job","[129 - 256] GPU Count: Per Job","[257 - 512] GPU Count: Per Job" +"2016 Q4",0.0000,0.0000,0.0000,0.0000,0.0001,0.0000,0.0000,0.0000,0.0000,0.0000 +"2017 Q1",0.0000,0.0000,0.0000,0.0000,0.0008,0.0000,0.0000,0.0000,0.0000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobsize/avg_gpus/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobsize/avg_gpus/timeseries-Year-reference.csv new file mode 100644 index 0000000000..012c23a4fe --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobsize/avg_gpus/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Count: Per Job: by Job Size" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[1] GPU Count: Per Job","[2] GPU Count: Per Job","[3 - 4] GPU Count: Per Job","[5 - 8] GPU Count: Per Job","[9 - 16] GPU Count: Per Job","[17 - 32] GPU Count: Per Job","[33 - 64] GPU Count: Per Job","[65 - 128] GPU Count: Per Job","[129 - 256] GPU Count: Per Job","[257 - 512] GPU Count: Per Job" +2016,0.0000,0.0000,0.0000,0.0000,0.0001,0.0000,0.0000,0.0000,0.0000,0.0000 +2017,0.0000,0.0000,0.0000,0.0000,0.0008,0.0000,0.0000,0.0000,0.0000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobsize/avg_job_size_weighted_by_gpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobsize/avg_job_size_weighted_by_gpu_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..5160216b64 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobsize/avg_job_size_weighted_by_gpu_hours/aggregate-Day-reference.csv @@ -0,0 +1,19 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by Job Size" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Size","Job Size: Weighted By GPU Hours (GPU Count)" +1,0.0000 +2,0.0000 +"3 - 4",0.0000 +"5 - 8",0.0000 +"9 - 16",12.0000 +"17 - 32",0.0000 +"33 - 64",0.0000 +"65 - 128",0.0000 +"129 - 256",0.0000 +"257 - 512",0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobsize/avg_job_size_weighted_by_gpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobsize/avg_job_size_weighted_by_gpu_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..5160216b64 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobsize/avg_job_size_weighted_by_gpu_hours/aggregate-Month-reference.csv @@ -0,0 +1,19 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by Job Size" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Size","Job Size: Weighted By GPU Hours (GPU Count)" +1,0.0000 +2,0.0000 +"3 - 4",0.0000 +"5 - 8",0.0000 +"9 - 16",12.0000 +"17 - 32",0.0000 +"33 - 64",0.0000 +"65 - 128",0.0000 +"129 - 256",0.0000 +"257 - 512",0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobsize/avg_job_size_weighted_by_gpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobsize/avg_job_size_weighted_by_gpu_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..5160216b64 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobsize/avg_job_size_weighted_by_gpu_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,19 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by Job Size" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Size","Job Size: Weighted By GPU Hours (GPU Count)" +1,0.0000 +2,0.0000 +"3 - 4",0.0000 +"5 - 8",0.0000 +"9 - 16",12.0000 +"17 - 32",0.0000 +"33 - 64",0.0000 +"65 - 128",0.0000 +"129 - 256",0.0000 +"257 - 512",0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobsize/avg_job_size_weighted_by_gpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobsize/avg_job_size_weighted_by_gpu_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..5160216b64 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobsize/avg_job_size_weighted_by_gpu_hours/aggregate-Year-reference.csv @@ -0,0 +1,19 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by Job Size" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Size","Job Size: Weighted By GPU Hours (GPU Count)" +1,0.0000 +2,0.0000 +"3 - 4",0.0000 +"5 - 8",0.0000 +"9 - 16",12.0000 +"17 - 32",0.0000 +"33 - 64",0.0000 +"65 - 128",0.0000 +"129 - 256",0.0000 +"257 - 512",0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobsize/avg_job_size_weighted_by_gpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobsize/avg_job_size_weighted_by_gpu_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..6c3098c996 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobsize/avg_job_size_weighted_by_gpu_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by Job Size" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[1] Job Size: Weighted By GPU Hours (GPU Count)","[2] Job Size: Weighted By GPU Hours (GPU Count)","[3 - 4] Job Size: Weighted By GPU Hours (GPU Count)","[5 - 8] Job Size: Weighted By GPU Hours (GPU Count)","[9 - 16] Job Size: Weighted By GPU Hours (GPU Count)","[17 - 32] Job Size: Weighted By GPU Hours (GPU Count)","[33 - 64] Job Size: Weighted By GPU Hours (GPU Count)","[65 - 128] Job Size: Weighted By GPU Hours (GPU Count)","[129 - 256] Job Size: Weighted By GPU Hours (GPU Count)","[257 - 512] Job Size: Weighted By GPU Hours (GPU Count)" +2016-12-22,0,0,0,0,12.0000,0,0,0,0,0 +2016-12-23,0.0000,0,0,0,12.0000,0,0,0,0,0 +2016-12-24,0.0000,0,0,0,12.0000,0,0,0,0,0 +2016-12-25,0.0000,0,0,0,12.0000,0.0000,0,0,0,0 +2016-12-26,0.0000,0,0,0,12.0000,0.0000,0,0,0,0 +2016-12-27,0.0000,0,0,0.0000,12.0000,0.0000,0.0000,0.0000,0.0000,0 +2016-12-28,0.0000,0,0,0.0000,12.0000,0.0000,0.0000,0.0000,0.0000,0 +2016-12-29,0.0000,0.0000,0.0000,0.0000,12.0000,0.0000,0.0000,0.0000,0.0000,0 +2016-12-30,0.0000,0.0000,0.0000,0.0000,12.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2016-12-31,0.0000,0.0000,0.0000,0.0000,12.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2017-01-01,0.0000,0.0000,0.0000,0.0000,12.0000,0.0000,0.0000,0.0000,0.0000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobsize/avg_job_size_weighted_by_gpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobsize/avg_job_size_weighted_by_gpu_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..429299c1eb --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobsize/avg_job_size_weighted_by_gpu_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by Job Size" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[1] Job Size: Weighted By GPU Hours (GPU Count)","[2] Job Size: Weighted By GPU Hours (GPU Count)","[3 - 4] Job Size: Weighted By GPU Hours (GPU Count)","[5 - 8] Job Size: Weighted By GPU Hours (GPU Count)","[9 - 16] Job Size: Weighted By GPU Hours (GPU Count)","[17 - 32] Job Size: Weighted By GPU Hours (GPU Count)","[33 - 64] Job Size: Weighted By GPU Hours (GPU Count)","[65 - 128] Job Size: Weighted By GPU Hours (GPU Count)","[129 - 256] Job Size: Weighted By GPU Hours (GPU Count)","[257 - 512] Job Size: Weighted By GPU Hours (GPU Count)" +2016-12,0.0000,0.0000,0.0000,0.0000,12.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2017-01,0.0000,0.0000,0.0000,0.0000,12.0000,0.0000,0.0000,0.0000,0.0000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobsize/avg_job_size_weighted_by_gpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobsize/avg_job_size_weighted_by_gpu_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..b1b221900b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobsize/avg_job_size_weighted_by_gpu_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by Job Size" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[1] Job Size: Weighted By GPU Hours (GPU Count)","[2] Job Size: Weighted By GPU Hours (GPU Count)","[3 - 4] Job Size: Weighted By GPU Hours (GPU Count)","[5 - 8] Job Size: Weighted By GPU Hours (GPU Count)","[9 - 16] Job Size: Weighted By GPU Hours (GPU Count)","[17 - 32] Job Size: Weighted By GPU Hours (GPU Count)","[33 - 64] Job Size: Weighted By GPU Hours (GPU Count)","[65 - 128] Job Size: Weighted By GPU Hours (GPU Count)","[129 - 256] Job Size: Weighted By GPU Hours (GPU Count)","[257 - 512] Job Size: Weighted By GPU Hours (GPU Count)" +"2016 Q4",0.0000,0.0000,0.0000,0.0000,12.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +"2017 Q1",0.0000,0.0000,0.0000,0.0000,12.0000,0.0000,0.0000,0.0000,0.0000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobsize/avg_job_size_weighted_by_gpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobsize/avg_job_size_weighted_by_gpu_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..eec96d8299 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobsize/avg_job_size_weighted_by_gpu_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by Job Size" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[1] Job Size: Weighted By GPU Hours (GPU Count)","[2] Job Size: Weighted By GPU Hours (GPU Count)","[3 - 4] Job Size: Weighted By GPU Hours (GPU Count)","[5 - 8] Job Size: Weighted By GPU Hours (GPU Count)","[9 - 16] Job Size: Weighted By GPU Hours (GPU Count)","[17 - 32] Job Size: Weighted By GPU Hours (GPU Count)","[33 - 64] Job Size: Weighted By GPU Hours (GPU Count)","[65 - 128] Job Size: Weighted By GPU Hours (GPU Count)","[129 - 256] Job Size: Weighted By GPU Hours (GPU Count)","[257 - 512] Job Size: Weighted By GPU Hours (GPU Count)" +2016,0.0000,0.0000,0.0000,0.0000,12.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2017,0.0000,0.0000,0.0000,0.0000,12.0000,0.0000,0.0000,0.0000,0.0000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobsize/total_gpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobsize/total_gpu_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..759b1dc128 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobsize/total_gpu_hours/aggregate-Day-reference.csv @@ -0,0 +1,19 @@ +title +"GPU Hours: Total: by Job Size" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Size","GPU Hours: Total" +1,0.0000 +2,0.0000 +"3 - 4",0.0000 +"5 - 8",0.0000 +"9 - 16",506.9128 +"17 - 32",0.0000 +"33 - 64",0.0000 +"65 - 128",0.0000 +"129 - 256",0.0000 +"257 - 512",0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobsize/total_gpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobsize/total_gpu_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..759b1dc128 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobsize/total_gpu_hours/aggregate-Month-reference.csv @@ -0,0 +1,19 @@ +title +"GPU Hours: Total: by Job Size" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Size","GPU Hours: Total" +1,0.0000 +2,0.0000 +"3 - 4",0.0000 +"5 - 8",0.0000 +"9 - 16",506.9128 +"17 - 32",0.0000 +"33 - 64",0.0000 +"65 - 128",0.0000 +"129 - 256",0.0000 +"257 - 512",0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobsize/total_gpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobsize/total_gpu_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..759b1dc128 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobsize/total_gpu_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,19 @@ +title +"GPU Hours: Total: by Job Size" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Size","GPU Hours: Total" +1,0.0000 +2,0.0000 +"3 - 4",0.0000 +"5 - 8",0.0000 +"9 - 16",506.9128 +"17 - 32",0.0000 +"33 - 64",0.0000 +"65 - 128",0.0000 +"129 - 256",0.0000 +"257 - 512",0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobsize/total_gpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobsize/total_gpu_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..759b1dc128 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobsize/total_gpu_hours/aggregate-Year-reference.csv @@ -0,0 +1,19 @@ +title +"GPU Hours: Total: by Job Size" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Size","GPU Hours: Total" +1,0.0000 +2,0.0000 +"3 - 4",0.0000 +"5 - 8",0.0000 +"9 - 16",506.9128 +"17 - 32",0.0000 +"33 - 64",0.0000 +"65 - 128",0.0000 +"129 - 256",0.0000 +"257 - 512",0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobsize/total_gpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobsize/total_gpu_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..d7a76fc540 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobsize/total_gpu_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"GPU Hours: Total: by Job Size" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[1] GPU Hours: Total","[2] GPU Hours: Total","[3 - 4] GPU Hours: Total","[5 - 8] GPU Hours: Total","[9 - 16] GPU Hours: Total","[17 - 32] GPU Hours: Total","[33 - 64] GPU Hours: Total","[65 - 128] GPU Hours: Total","[129 - 256] GPU Hours: Total","[257 - 512] GPU Hours: Total" +2016-12-22,0,0,0,0,33.4928,0,0,0,0,0 +2016-12-23,0.0000,0,0,0,48.0000,0,0,0,0,0 +2016-12-24,0.0000,0,0,0,48.0000,0,0,0,0,0 +2016-12-25,0.0000,0,0,0,48.0000,0.0000,0,0,0,0 +2016-12-26,0.0000,0,0,0,48.0000,0.0000,0,0,0,0 +2016-12-27,0.0000,0,0,0.0000,48.0000,0.0000,0.0000,0.0000,0.0000,0 +2016-12-28,0.0000,0,0,0.0000,48.0000,0.0000,0.0000,0.0000,0.0000,0 +2016-12-29,0.0000,0.0000,0.0000,0.0000,48.0000,0.0000,0.0000,0.0000,0.0000,0 +2016-12-30,0.0000,0.0000,0.0000,0.0000,48.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2016-12-31,0.0000,0.0000,0.0000,0.0000,48.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2017-01-01,0.0000,0.0000,0.0000,0.0000,41.4200,0.0000,0.0000,0.0000,0.0000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobsize/total_gpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobsize/total_gpu_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..ff3f088546 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobsize/total_gpu_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Total: by Job Size" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[1] GPU Hours: Total","[2] GPU Hours: Total","[3 - 4] GPU Hours: Total","[5 - 8] GPU Hours: Total","[9 - 16] GPU Hours: Total","[17 - 32] GPU Hours: Total","[33 - 64] GPU Hours: Total","[65 - 128] GPU Hours: Total","[129 - 256] GPU Hours: Total","[257 - 512] GPU Hours: Total" +2016-12,0.0000,0.0000,0.0000,0.0000,465.4928,0.0000,0.0000,0.0000,0.0000,0.0000 +2017-01,0.0000,0.0000,0.0000,0.0000,41.4200,0.0000,0.0000,0.0000,0.0000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobsize/total_gpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobsize/total_gpu_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..080036c11f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobsize/total_gpu_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Total: by Job Size" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[1] GPU Hours: Total","[2] GPU Hours: Total","[3 - 4] GPU Hours: Total","[5 - 8] GPU Hours: Total","[9 - 16] GPU Hours: Total","[17 - 32] GPU Hours: Total","[33 - 64] GPU Hours: Total","[65 - 128] GPU Hours: Total","[129 - 256] GPU Hours: Total","[257 - 512] GPU Hours: Total" +"2016 Q4",0.0000,0.0000,0.0000,0.0000,465.4928,0.0000,0.0000,0.0000,0.0000,0.0000 +"2017 Q1",0.0000,0.0000,0.0000,0.0000,41.4200,0.0000,0.0000,0.0000,0.0000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobsize/total_gpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobsize/total_gpu_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..0889e82815 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobsize/total_gpu_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Total: by Job Size" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[1] GPU Hours: Total","[2] GPU Hours: Total","[3 - 4] GPU Hours: Total","[5 - 8] GPU Hours: Total","[9 - 16] GPU Hours: Total","[17 - 32] GPU Hours: Total","[33 - 64] GPU Hours: Total","[65 - 128] GPU Hours: Total","[129 - 256] GPU Hours: Total","[257 - 512] GPU Hours: Total" +2016,0.0000,0.0000,0.0000,0.0000,465.4928,0.0000,0.0000,0.0000,0.0000,0.0000 +2017,0.0000,0.0000,0.0000,0.0000,41.4200,0.0000,0.0000,0.0000,0.0000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwaittime/avg_gpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwaittime/avg_gpu_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..b09f07d063 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwaittime/avg_gpu_hours/aggregate-Day-reference.csv @@ -0,0 +1,17 @@ +title +"GPU Hours: Per Job: by Job Wait Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Wait Time","GPU Hours: Per Job" +"0 - 1s",0.00000077 +"1 - 30s",0.02789475 +"30s - 30min",0.00000000 +"30 - 60min",0.00000000 +"1 - 5hr",0.00000000 +"5 - 10hr",0.00000000 +"10 - 18hr",0.00000000 +18+hr,0.00000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwaittime/avg_gpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwaittime/avg_gpu_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..b09f07d063 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwaittime/avg_gpu_hours/aggregate-Month-reference.csv @@ -0,0 +1,17 @@ +title +"GPU Hours: Per Job: by Job Wait Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Wait Time","GPU Hours: Per Job" +"0 - 1s",0.00000077 +"1 - 30s",0.02789475 +"30s - 30min",0.00000000 +"30 - 60min",0.00000000 +"1 - 5hr",0.00000000 +"5 - 10hr",0.00000000 +"10 - 18hr",0.00000000 +18+hr,0.00000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwaittime/avg_gpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwaittime/avg_gpu_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..b09f07d063 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwaittime/avg_gpu_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,17 @@ +title +"GPU Hours: Per Job: by Job Wait Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Wait Time","GPU Hours: Per Job" +"0 - 1s",0.00000077 +"1 - 30s",0.02789475 +"30s - 30min",0.00000000 +"30 - 60min",0.00000000 +"1 - 5hr",0.00000000 +"5 - 10hr",0.00000000 +"10 - 18hr",0.00000000 +18+hr,0.00000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwaittime/avg_gpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwaittime/avg_gpu_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..b09f07d063 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwaittime/avg_gpu_hours/aggregate-Year-reference.csv @@ -0,0 +1,17 @@ +title +"GPU Hours: Per Job: by Job Wait Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Wait Time","GPU Hours: Per Job" +"0 - 1s",0.00000077 +"1 - 30s",0.02789475 +"30s - 30min",0.00000000 +"30 - 60min",0.00000000 +"1 - 5hr",0.00000000 +"5 - 10hr",0.00000000 +"10 - 18hr",0.00000000 +18+hr,0.00000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwaittime/avg_gpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwaittime/avg_gpu_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..19cfa667eb --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwaittime/avg_gpu_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"GPU Hours: Per Job: by Job Wait Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[0 - 1s] GPU Hours: Per Job","[1 - 30s] GPU Hours: Per Job","[30s - 30min] GPU Hours: Per Job","[30 - 60min] GPU Hours: Per Job","[1 - 5hr] GPU Hours: Per Job","[5 - 10hr] GPU Hours: Per Job","[10 - 18hr] GPU Hours: Per Job","[18+hr] GPU Hours: Per Job" +2016-12-22,0,33.49277778,0,0,0,0.00000000,0,0 +2016-12-23,0,48.00000000,0,0,0,0.00000000,0,0 +2016-12-24,0,48.00000000,0,0,0,0.00000000,0,0 +2016-12-25,0,48.00000000,0.00000000,0,0,0.00000000,0,0.00000000 +2016-12-26,0,8.00000000,0.00000000,0,0,0.00000000,0,0.00000000 +2016-12-27,0.00000000,3.42857143,0.00000000,0,0,0.00000000,0,0.00000000 +2016-12-28,0.00000000,0.72727273,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000 +2016-12-29,0.00000000,0.16000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000 +2016-12-30,0.00000000,0.00570071,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000 +2016-12-31,0.00000000,0.00947306,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000 +2017-01-01,0.00000391,0.00818552,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwaittime/avg_gpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwaittime/avg_gpu_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..6e134e68c3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwaittime/avg_gpu_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Per Job: by Job Wait Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[0 - 1s] GPU Hours: Per Job","[1 - 30s] GPU Hours: Per Job","[30s - 30min] GPU Hours: Per Job","[30 - 60min] GPU Hours: Per Job","[1 - 5hr] GPU Hours: Per Job","[5 - 10hr] GPU Hours: Per Job","[10 - 18hr] GPU Hours: Per Job","[18+hr] GPU Hours: Per Job" +2016-12,0.00000000,0.03492331,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000 +2017-01,0.00000391,0.00818552,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwaittime/avg_gpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwaittime/avg_gpu_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..329b34e730 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwaittime/avg_gpu_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Per Job: by Job Wait Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[0 - 1s] GPU Hours: Per Job","[1 - 30s] GPU Hours: Per Job","[30s - 30min] GPU Hours: Per Job","[30 - 60min] GPU Hours: Per Job","[1 - 5hr] GPU Hours: Per Job","[5 - 10hr] GPU Hours: Per Job","[10 - 18hr] GPU Hours: Per Job","[18+hr] GPU Hours: Per Job" +"2016 Q4",0.00000000,0.03492331,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000 +"2017 Q1",0.00000391,0.00818552,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwaittime/avg_gpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwaittime/avg_gpu_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..699c8acc85 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwaittime/avg_gpu_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Per Job: by Job Wait Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[0 - 1s] GPU Hours: Per Job","[1 - 30s] GPU Hours: Per Job","[30s - 30min] GPU Hours: Per Job","[30 - 60min] GPU Hours: Per Job","[1 - 5hr] GPU Hours: Per Job","[5 - 10hr] GPU Hours: Per Job","[10 - 18hr] GPU Hours: Per Job","[18+hr] GPU Hours: Per Job" +2016,0.00000000,0.03492331,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000 +2017,0.00000391,0.00818552,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwaittime/avg_gpus/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwaittime/avg_gpus/aggregate-Day-reference.csv new file mode 100644 index 0000000000..9e1d391998 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwaittime/avg_gpus/aggregate-Day-reference.csv @@ -0,0 +1,17 @@ +title +"GPU Count: Per Job: by Job Wait Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Wait Time","GPU Count: Per Job","Std Dev: GPU Count: Per Job" +"0 - 1s",0.0002,0.0001626611358456056 +"1 - 30s",0.0001,0.00011005640380579844 +"30s - 30min",0.0000,0 +"30 - 60min",0.0000,0 +"1 - 5hr",0.0000,0 +"5 - 10hr",0.0000,0 +"10 - 18hr",0.0000,0 +18+hr,0.0000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwaittime/avg_gpus/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwaittime/avg_gpus/aggregate-Month-reference.csv new file mode 100644 index 0000000000..9e1d391998 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwaittime/avg_gpus/aggregate-Month-reference.csv @@ -0,0 +1,17 @@ +title +"GPU Count: Per Job: by Job Wait Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Wait Time","GPU Count: Per Job","Std Dev: GPU Count: Per Job" +"0 - 1s",0.0002,0.0001626611358456056 +"1 - 30s",0.0001,0.00011005640380579844 +"30s - 30min",0.0000,0 +"30 - 60min",0.0000,0 +"1 - 5hr",0.0000,0 +"5 - 10hr",0.0000,0 +"10 - 18hr",0.0000,0 +18+hr,0.0000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwaittime/avg_gpus/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwaittime/avg_gpus/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..9e1d391998 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwaittime/avg_gpus/aggregate-Quarter-reference.csv @@ -0,0 +1,17 @@ +title +"GPU Count: Per Job: by Job Wait Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Wait Time","GPU Count: Per Job","Std Dev: GPU Count: Per Job" +"0 - 1s",0.0002,0.0001626611358456056 +"1 - 30s",0.0001,0.00011005640380579844 +"30s - 30min",0.0000,0 +"30 - 60min",0.0000,0 +"1 - 5hr",0.0000,0 +"5 - 10hr",0.0000,0 +"10 - 18hr",0.0000,0 +18+hr,0.0000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwaittime/avg_gpus/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwaittime/avg_gpus/aggregate-Year-reference.csv new file mode 100644 index 0000000000..9e1d391998 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwaittime/avg_gpus/aggregate-Year-reference.csv @@ -0,0 +1,17 @@ +title +"GPU Count: Per Job: by Job Wait Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Wait Time","GPU Count: Per Job","Std Dev: GPU Count: Per Job" +"0 - 1s",0.0002,0.0001626611358456056 +"1 - 30s",0.0001,0.00011005640380579844 +"30s - 30min",0.0000,0 +"30 - 60min",0.0000,0 +"1 - 5hr",0.0000,0 +"5 - 10hr",0.0000,0 +"10 - 18hr",0.0000,0 +18+hr,0.0000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwaittime/avg_gpus/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwaittime/avg_gpus/timeseries-Day-reference.csv new file mode 100644 index 0000000000..973e0266e6 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwaittime/avg_gpus/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"GPU Count: Per Job: by Job Wait Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[0 - 1s] GPU Count: Per Job","[1 - 30s] GPU Count: Per Job","[30s - 30min] GPU Count: Per Job","[30 - 60min] GPU Count: Per Job","[1 - 5hr] GPU Count: Per Job","[5 - 10hr] GPU Count: Per Job","[10 - 18hr] GPU Count: Per Job","[18+hr] GPU Count: Per Job" +2016-12-22,0,2.0000,0,0,0,0.0000,0,0 +2016-12-23,0,2.0000,0,0,0,0.0000,0,0 +2016-12-24,0,2.0000,0,0,0,0.0000,0,0 +2016-12-25,0,2.0000,0.0000,0,0,0.0000,0,0.0000 +2016-12-26,0,0.3333,0.0000,0,0,0.0000,0,0.0000 +2016-12-27,0.0000,0.1429,0.0000,0,0,0.0000,0,0.0000 +2016-12-28,0.0000,0.0303,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2016-12-29,0.0000,0.0067,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2016-12-30,0.0000,0.0002,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2016-12-31,0.0000,0.0004,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2017-01-01,0.0008,0.0004,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwaittime/avg_gpus/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwaittime/avg_gpus/timeseries-Month-reference.csv new file mode 100644 index 0000000000..2d4427a38b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwaittime/avg_gpus/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Count: Per Job: by Job Wait Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[0 - 1s] GPU Count: Per Job","[1 - 30s] GPU Count: Per Job","[30s - 30min] GPU Count: Per Job","[30 - 60min] GPU Count: Per Job","[1 - 5hr] GPU Count: Per Job","[5 - 10hr] GPU Count: Per Job","[10 - 18hr] GPU Count: Per Job","[18+hr] GPU Count: Per Job" +2016-12,0.0000,0.0002,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2017-01,0.0008,0.0004,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwaittime/avg_gpus/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwaittime/avg_gpus/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..7df676cd12 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwaittime/avg_gpus/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Count: Per Job: by Job Wait Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[0 - 1s] GPU Count: Per Job","[1 - 30s] GPU Count: Per Job","[30s - 30min] GPU Count: Per Job","[30 - 60min] GPU Count: Per Job","[1 - 5hr] GPU Count: Per Job","[5 - 10hr] GPU Count: Per Job","[10 - 18hr] GPU Count: Per Job","[18+hr] GPU Count: Per Job" +"2016 Q4",0.0000,0.0002,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +"2017 Q1",0.0008,0.0004,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwaittime/avg_gpus/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwaittime/avg_gpus/timeseries-Year-reference.csv new file mode 100644 index 0000000000..e45fc43625 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwaittime/avg_gpus/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Count: Per Job: by Job Wait Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[0 - 1s] GPU Count: Per Job","[1 - 30s] GPU Count: Per Job","[30s - 30min] GPU Count: Per Job","[30 - 60min] GPU Count: Per Job","[1 - 5hr] GPU Count: Per Job","[5 - 10hr] GPU Count: Per Job","[10 - 18hr] GPU Count: Per Job","[18+hr] GPU Count: Per Job" +2016,0.0000,0.0002,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2017,0.0008,0.0004,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwaittime/avg_job_size_weighted_by_gpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwaittime/avg_job_size_weighted_by_gpu_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..53f3f9fc6e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwaittime/avg_job_size_weighted_by_gpu_hours/aggregate-Day-reference.csv @@ -0,0 +1,17 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by Job Wait Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Wait Time","Job Size: Weighted By GPU Hours (GPU Count)" +"0 - 1s",12.0000 +"1 - 30s",12.0000 +"30s - 30min",0.0000 +"30 - 60min",0.0000 +"1 - 5hr",0.0000 +"5 - 10hr",0.0000 +"10 - 18hr",0.0000 +18+hr,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwaittime/avg_job_size_weighted_by_gpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwaittime/avg_job_size_weighted_by_gpu_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..53f3f9fc6e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwaittime/avg_job_size_weighted_by_gpu_hours/aggregate-Month-reference.csv @@ -0,0 +1,17 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by Job Wait Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Wait Time","Job Size: Weighted By GPU Hours (GPU Count)" +"0 - 1s",12.0000 +"1 - 30s",12.0000 +"30s - 30min",0.0000 +"30 - 60min",0.0000 +"1 - 5hr",0.0000 +"5 - 10hr",0.0000 +"10 - 18hr",0.0000 +18+hr,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwaittime/avg_job_size_weighted_by_gpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwaittime/avg_job_size_weighted_by_gpu_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..53f3f9fc6e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwaittime/avg_job_size_weighted_by_gpu_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,17 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by Job Wait Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Wait Time","Job Size: Weighted By GPU Hours (GPU Count)" +"0 - 1s",12.0000 +"1 - 30s",12.0000 +"30s - 30min",0.0000 +"30 - 60min",0.0000 +"1 - 5hr",0.0000 +"5 - 10hr",0.0000 +"10 - 18hr",0.0000 +18+hr,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwaittime/avg_job_size_weighted_by_gpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwaittime/avg_job_size_weighted_by_gpu_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..53f3f9fc6e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwaittime/avg_job_size_weighted_by_gpu_hours/aggregate-Year-reference.csv @@ -0,0 +1,17 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by Job Wait Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Wait Time","Job Size: Weighted By GPU Hours (GPU Count)" +"0 - 1s",12.0000 +"1 - 30s",12.0000 +"30s - 30min",0.0000 +"30 - 60min",0.0000 +"1 - 5hr",0.0000 +"5 - 10hr",0.0000 +"10 - 18hr",0.0000 +18+hr,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwaittime/avg_job_size_weighted_by_gpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwaittime/avg_job_size_weighted_by_gpu_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..5a8a1bfa2d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwaittime/avg_job_size_weighted_by_gpu_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by Job Wait Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[0 - 1s] Job Size: Weighted By GPU Hours (GPU Count)","[1 - 30s] Job Size: Weighted By GPU Hours (GPU Count)","[30s - 30min] Job Size: Weighted By GPU Hours (GPU Count)","[30 - 60min] Job Size: Weighted By GPU Hours (GPU Count)","[1 - 5hr] Job Size: Weighted By GPU Hours (GPU Count)","[5 - 10hr] Job Size: Weighted By GPU Hours (GPU Count)","[10 - 18hr] Job Size: Weighted By GPU Hours (GPU Count)","[18+hr] Job Size: Weighted By GPU Hours (GPU Count)" +2016-12-22,0,12.0000,0,0,0,0.0000,0,0 +2016-12-23,0,12.0000,0,0,0,0.0000,0,0 +2016-12-24,0,12.0000,0,0,0,0.0000,0,0 +2016-12-25,0,12.0000,0.0000,0,0,0.0000,0,0.0000 +2016-12-26,0,12.0000,0.0000,0,0,0.0000,0,0.0000 +2016-12-27,0.0000,12.0000,0.0000,0,0,0.0000,0,0.0000 +2016-12-28,0.0000,12.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2016-12-29,0.0000,12.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2016-12-30,0.0000,12.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2016-12-31,0.0000,12.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2017-01-01,12.0000,12.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwaittime/avg_job_size_weighted_by_gpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwaittime/avg_job_size_weighted_by_gpu_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..b71dd15988 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwaittime/avg_job_size_weighted_by_gpu_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by Job Wait Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[0 - 1s] Job Size: Weighted By GPU Hours (GPU Count)","[1 - 30s] Job Size: Weighted By GPU Hours (GPU Count)","[30s - 30min] Job Size: Weighted By GPU Hours (GPU Count)","[30 - 60min] Job Size: Weighted By GPU Hours (GPU Count)","[1 - 5hr] Job Size: Weighted By GPU Hours (GPU Count)","[5 - 10hr] Job Size: Weighted By GPU Hours (GPU Count)","[10 - 18hr] Job Size: Weighted By GPU Hours (GPU Count)","[18+hr] Job Size: Weighted By GPU Hours (GPU Count)" +2016-12,0.0000,12.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2017-01,12.0000,12.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwaittime/avg_job_size_weighted_by_gpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwaittime/avg_job_size_weighted_by_gpu_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..4843dc281b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwaittime/avg_job_size_weighted_by_gpu_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by Job Wait Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[0 - 1s] Job Size: Weighted By GPU Hours (GPU Count)","[1 - 30s] Job Size: Weighted By GPU Hours (GPU Count)","[30s - 30min] Job Size: Weighted By GPU Hours (GPU Count)","[30 - 60min] Job Size: Weighted By GPU Hours (GPU Count)","[1 - 5hr] Job Size: Weighted By GPU Hours (GPU Count)","[5 - 10hr] Job Size: Weighted By GPU Hours (GPU Count)","[10 - 18hr] Job Size: Weighted By GPU Hours (GPU Count)","[18+hr] Job Size: Weighted By GPU Hours (GPU Count)" +"2016 Q4",0.0000,12.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +"2017 Q1",12.0000,12.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwaittime/avg_job_size_weighted_by_gpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwaittime/avg_job_size_weighted_by_gpu_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..e9f256417c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwaittime/avg_job_size_weighted_by_gpu_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by Job Wait Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[0 - 1s] Job Size: Weighted By GPU Hours (GPU Count)","[1 - 30s] Job Size: Weighted By GPU Hours (GPU Count)","[30s - 30min] Job Size: Weighted By GPU Hours (GPU Count)","[30 - 60min] Job Size: Weighted By GPU Hours (GPU Count)","[1 - 5hr] Job Size: Weighted By GPU Hours (GPU Count)","[5 - 10hr] Job Size: Weighted By GPU Hours (GPU Count)","[10 - 18hr] Job Size: Weighted By GPU Hours (GPU Count)","[18+hr] Job Size: Weighted By GPU Hours (GPU Count)" +2016,0.0000,12.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2017,12.0000,12.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwaittime/total_gpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwaittime/total_gpu_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..4d04658b5d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwaittime/total_gpu_hours/aggregate-Day-reference.csv @@ -0,0 +1,17 @@ +title +"GPU Hours: Total: by Job Wait Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Wait Time","GPU Hours: Total" +"0 - 1s",0.0094 +"1 - 30s",506.9033 +"30s - 30min",0.0000 +"30 - 60min",0.0000 +"1 - 5hr",0.0000 +"5 - 10hr",0.0000 +"10 - 18hr",0.0000 +18+hr,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwaittime/total_gpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwaittime/total_gpu_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..4d04658b5d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwaittime/total_gpu_hours/aggregate-Month-reference.csv @@ -0,0 +1,17 @@ +title +"GPU Hours: Total: by Job Wait Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Wait Time","GPU Hours: Total" +"0 - 1s",0.0094 +"1 - 30s",506.9033 +"30s - 30min",0.0000 +"30 - 60min",0.0000 +"1 - 5hr",0.0000 +"5 - 10hr",0.0000 +"10 - 18hr",0.0000 +18+hr,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwaittime/total_gpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwaittime/total_gpu_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..4d04658b5d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwaittime/total_gpu_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,17 @@ +title +"GPU Hours: Total: by Job Wait Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Wait Time","GPU Hours: Total" +"0 - 1s",0.0094 +"1 - 30s",506.9033 +"30s - 30min",0.0000 +"30 - 60min",0.0000 +"1 - 5hr",0.0000 +"5 - 10hr",0.0000 +"10 - 18hr",0.0000 +18+hr,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwaittime/total_gpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwaittime/total_gpu_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..4d04658b5d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwaittime/total_gpu_hours/aggregate-Year-reference.csv @@ -0,0 +1,17 @@ +title +"GPU Hours: Total: by Job Wait Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Wait Time","GPU Hours: Total" +"0 - 1s",0.0094 +"1 - 30s",506.9033 +"30s - 30min",0.0000 +"30 - 60min",0.0000 +"1 - 5hr",0.0000 +"5 - 10hr",0.0000 +"10 - 18hr",0.0000 +18+hr,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwaittime/total_gpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwaittime/total_gpu_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..ad28903a75 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwaittime/total_gpu_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"GPU Hours: Total: by Job Wait Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[0 - 1s] GPU Hours: Total","[1 - 30s] GPU Hours: Total","[30s - 30min] GPU Hours: Total","[30 - 60min] GPU Hours: Total","[1 - 5hr] GPU Hours: Total","[5 - 10hr] GPU Hours: Total","[10 - 18hr] GPU Hours: Total","[18+hr] GPU Hours: Total" +2016-12-22,0,33.4928,0,0,0,0.0000,0,0 +2016-12-23,0,48.0000,0,0,0,0.0000,0,0 +2016-12-24,0,48.0000,0,0,0,0.0000,0,0 +2016-12-25,0,48.0000,0.0000,0,0,0.0000,0,0.0000 +2016-12-26,0,48.0000,0.0000,0,0,0.0000,0,0.0000 +2016-12-27,0.0000,48.0000,0.0000,0,0,0.0000,0,0.0000 +2016-12-28,0.0000,48.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2016-12-29,0.0000,48.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2016-12-30,0.0000,48.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2016-12-31,0.0000,48.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2017-01-01,0.0094,41.4106,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwaittime/total_gpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwaittime/total_gpu_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..b472b5364a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwaittime/total_gpu_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Total: by Job Wait Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[0 - 1s] GPU Hours: Total","[1 - 30s] GPU Hours: Total","[30s - 30min] GPU Hours: Total","[30 - 60min] GPU Hours: Total","[1 - 5hr] GPU Hours: Total","[5 - 10hr] GPU Hours: Total","[10 - 18hr] GPU Hours: Total","[18+hr] GPU Hours: Total" +2016-12,0.0000,465.4928,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2017-01,0.0094,41.4106,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwaittime/total_gpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwaittime/total_gpu_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..98567bae16 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwaittime/total_gpu_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Total: by Job Wait Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[0 - 1s] GPU Hours: Total","[1 - 30s] GPU Hours: Total","[30s - 30min] GPU Hours: Total","[30 - 60min] GPU Hours: Total","[1 - 5hr] GPU Hours: Total","[5 - 10hr] GPU Hours: Total","[10 - 18hr] GPU Hours: Total","[18+hr] GPU Hours: Total" +"2016 Q4",0.0000,465.4928,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +"2017 Q1",0.0094,41.4106,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwaittime/total_gpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwaittime/total_gpu_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..ac4773dab0 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwaittime/total_gpu_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Total: by Job Wait Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[0 - 1s] GPU Hours: Total","[1 - 30s] GPU Hours: Total","[30s - 30min] GPU Hours: Total","[30 - 60min] GPU Hours: Total","[1 - 5hr] GPU Hours: Total","[5 - 10hr] GPU Hours: Total","[10 - 18hr] GPU Hours: Total","[18+hr] GPU Hours: Total" +2016,0.0000,465.4928,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2017,0.0094,41.4106,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwalltime/avg_gpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwalltime/avg_gpu_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..3b948a4a69 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwalltime/avg_gpu_hours/aggregate-Day-reference.csv @@ -0,0 +1,17 @@ +title +"GPU Hours: Per Job: by Job Wall Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Wall Time","GPU Hours: Per Job" +"0 - 1s",0.00000000 +"1 - 30s",0.00000056 +"30s - 30min",0.00000000 +"30 - 60min",0.00000000 +"1 - 5hr",0.00000000 +"5 - 10hr",0.00000000 +"10 - 18hr",0.00000000 +18+hr,0.19310603 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwalltime/avg_gpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwalltime/avg_gpu_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..3b948a4a69 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwalltime/avg_gpu_hours/aggregate-Month-reference.csv @@ -0,0 +1,17 @@ +title +"GPU Hours: Per Job: by Job Wall Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Wall Time","GPU Hours: Per Job" +"0 - 1s",0.00000000 +"1 - 30s",0.00000056 +"30s - 30min",0.00000000 +"30 - 60min",0.00000000 +"1 - 5hr",0.00000000 +"5 - 10hr",0.00000000 +"10 - 18hr",0.00000000 +18+hr,0.19310603 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwalltime/avg_gpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwalltime/avg_gpu_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..3b948a4a69 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwalltime/avg_gpu_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,17 @@ +title +"GPU Hours: Per Job: by Job Wall Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Wall Time","GPU Hours: Per Job" +"0 - 1s",0.00000000 +"1 - 30s",0.00000056 +"30s - 30min",0.00000000 +"30 - 60min",0.00000000 +"1 - 5hr",0.00000000 +"5 - 10hr",0.00000000 +"10 - 18hr",0.00000000 +18+hr,0.19310603 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwalltime/avg_gpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwalltime/avg_gpu_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..3b948a4a69 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwalltime/avg_gpu_hours/aggregate-Year-reference.csv @@ -0,0 +1,17 @@ +title +"GPU Hours: Per Job: by Job Wall Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Wall Time","GPU Hours: Per Job" +"0 - 1s",0.00000000 +"1 - 30s",0.00000056 +"30s - 30min",0.00000000 +"30 - 60min",0.00000000 +"1 - 5hr",0.00000000 +"5 - 10hr",0.00000000 +"10 - 18hr",0.00000000 +18+hr,0.19310603 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwalltime/avg_gpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwalltime/avg_gpu_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..3237614890 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwalltime/avg_gpu_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"GPU Hours: Per Job: by Job Wall Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[0 - 1s] GPU Hours: Per Job","[1 - 30s] GPU Hours: Per Job","[30s - 30min] GPU Hours: Per Job","[30 - 60min] GPU Hours: Per Job","[1 - 5hr] GPU Hours: Per Job","[5 - 10hr] GPU Hours: Per Job","[10 - 18hr] GPU Hours: Per Job","[18+hr] GPU Hours: Per Job" +2016-12-22,0,0,0,0,0,0,0,16.74638889 +2016-12-23,0,0,0,0,0,0,0,16.00000000 +2016-12-24,0,0,0,0,0,0,0,16.00000000 +2016-12-25,0,0,0,0,0,0,0,8.00000000 +2016-12-26,0,0,0,0,0,0,0,4.36363636 +2016-12-27,0,0,0,0,0,0,0,1.14285714 +2016-12-28,0,0,0,0,0,0,0,0.10666667 +2016-12-29,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.03611738 +2016-12-30,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.02424242 +2016-12-31,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.02635914 +2017-01-01,0.00000000,0.00000104,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.04462344 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwalltime/avg_gpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwalltime/avg_gpu_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..7e81fcaa80 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwalltime/avg_gpu_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Per Job: by Job Wall Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[0 - 1s] GPU Hours: Per Job","[1 - 30s] GPU Hours: Per Job","[30s - 30min] GPU Hours: Per Job","[30 - 60min] GPU Hours: Per Job","[1 - 5hr] GPU Hours: Per Job","[5 - 10hr] GPU Hours: Per Job","[10 - 18hr] GPU Hours: Per Job","[18+hr] GPU Hours: Per Job" +2016-12,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.17800871 +2017-01,0.00000000,0.00000104,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.04462344 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwalltime/avg_gpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwalltime/avg_gpu_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..f9c8331848 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwalltime/avg_gpu_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Per Job: by Job Wall Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[0 - 1s] GPU Hours: Per Job","[1 - 30s] GPU Hours: Per Job","[30s - 30min] GPU Hours: Per Job","[30 - 60min] GPU Hours: Per Job","[1 - 5hr] GPU Hours: Per Job","[5 - 10hr] GPU Hours: Per Job","[10 - 18hr] GPU Hours: Per Job","[18+hr] GPU Hours: Per Job" +"2016 Q4",0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.17800871 +"2017 Q1",0.00000000,0.00000104,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.04462344 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwalltime/avg_gpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwalltime/avg_gpu_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..da646d8a15 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwalltime/avg_gpu_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Per Job: by Job Wall Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[0 - 1s] GPU Hours: Per Job","[1 - 30s] GPU Hours: Per Job","[30s - 30min] GPU Hours: Per Job","[30 - 60min] GPU Hours: Per Job","[1 - 5hr] GPU Hours: Per Job","[5 - 10hr] GPU Hours: Per Job","[10 - 18hr] GPU Hours: Per Job","[18+hr] GPU Hours: Per Job" +2016,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.17800871 +2017,0.00000000,0.00000104,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.04462344 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwalltime/avg_gpus/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwalltime/avg_gpus/aggregate-Day-reference.csv new file mode 100644 index 0000000000..45982a6079 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwalltime/avg_gpus/aggregate-Day-reference.csv @@ -0,0 +1,17 @@ +title +"GPU Count: Per Job: by Job Wall Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Wall Time","GPU Count: Per Job","Std Dev: GPU Count: Per Job" +"0 - 1s",0.0000,0 +"1 - 30s",0.0001,0.00011900157661986485 +"30s - 30min",0.0000,0 +"30 - 60min",0.0000,0 +"1 - 5hr",0.0000,0 +"5 - 10hr",0.0000,0 +"10 - 18hr",0.0000,0 +18+hr,0.0008,0.0007617596236544783 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwalltime/avg_gpus/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwalltime/avg_gpus/aggregate-Month-reference.csv new file mode 100644 index 0000000000..45982a6079 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwalltime/avg_gpus/aggregate-Month-reference.csv @@ -0,0 +1,17 @@ +title +"GPU Count: Per Job: by Job Wall Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Wall Time","GPU Count: Per Job","Std Dev: GPU Count: Per Job" +"0 - 1s",0.0000,0 +"1 - 30s",0.0001,0.00011900157661986485 +"30s - 30min",0.0000,0 +"30 - 60min",0.0000,0 +"1 - 5hr",0.0000,0 +"5 - 10hr",0.0000,0 +"10 - 18hr",0.0000,0 +18+hr,0.0008,0.0007617596236544783 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwalltime/avg_gpus/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwalltime/avg_gpus/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..45982a6079 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwalltime/avg_gpus/aggregate-Quarter-reference.csv @@ -0,0 +1,17 @@ +title +"GPU Count: Per Job: by Job Wall Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Wall Time","GPU Count: Per Job","Std Dev: GPU Count: Per Job" +"0 - 1s",0.0000,0 +"1 - 30s",0.0001,0.00011900157661986485 +"30s - 30min",0.0000,0 +"30 - 60min",0.0000,0 +"1 - 5hr",0.0000,0 +"5 - 10hr",0.0000,0 +"10 - 18hr",0.0000,0 +18+hr,0.0008,0.0007617596236544783 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwalltime/avg_gpus/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwalltime/avg_gpus/aggregate-Year-reference.csv new file mode 100644 index 0000000000..45982a6079 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwalltime/avg_gpus/aggregate-Year-reference.csv @@ -0,0 +1,17 @@ +title +"GPU Count: Per Job: by Job Wall Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Wall Time","GPU Count: Per Job","Std Dev: GPU Count: Per Job" +"0 - 1s",0.0000,0 +"1 - 30s",0.0001,0.00011900157661986485 +"30s - 30min",0.0000,0 +"30 - 60min",0.0000,0 +"1 - 5hr",0.0000,0 +"5 - 10hr",0.0000,0 +"10 - 18hr",0.0000,0 +18+hr,0.0008,0.0007617596236544783 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwalltime/avg_gpus/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwalltime/avg_gpus/timeseries-Day-reference.csv new file mode 100644 index 0000000000..1c58d1d3c6 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwalltime/avg_gpus/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"GPU Count: Per Job: by Job Wall Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[0 - 1s] GPU Count: Per Job","[1 - 30s] GPU Count: Per Job","[30s - 30min] GPU Count: Per Job","[30 - 60min] GPU Count: Per Job","[1 - 5hr] GPU Count: Per Job","[5 - 10hr] GPU Count: Per Job","[10 - 18hr] GPU Count: Per Job","[18+hr] GPU Count: Per Job" +2016-12-22,0,0,0,0,0,0,0,1.0000 +2016-12-23,0,0,0,0,0,0,0,0.6667 +2016-12-24,0,0,0,0,0,0,0,0.6667 +2016-12-25,0,0,0,0,0,0,0,0.3333 +2016-12-26,0,0,0,0,0,0,0,0.1818 +2016-12-27,0,0,0,0,0,0,0,0.0476 +2016-12-28,0,0,0,0,0,0,0,0.0044 +2016-12-29,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0015 +2016-12-30,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0010 +2016-12-31,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0011 +2017-01-01,0.0000,0.0002,0.0000,0.0000,0.0000,0.0000,0.0000,0.0022 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwalltime/avg_gpus/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwalltime/avg_gpus/timeseries-Month-reference.csv new file mode 100644 index 0000000000..0fb822d113 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwalltime/avg_gpus/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Count: Per Job: by Job Wall Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[0 - 1s] GPU Count: Per Job","[1 - 30s] GPU Count: Per Job","[30s - 30min] GPU Count: Per Job","[30 - 60min] GPU Count: Per Job","[1 - 5hr] GPU Count: Per Job","[5 - 10hr] GPU Count: Per Job","[10 - 18hr] GPU Count: Per Job","[18+hr] GPU Count: Per Job" +2016-12,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0008 +2017-01,0.0000,0.0002,0.0000,0.0000,0.0000,0.0000,0.0000,0.0022 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwalltime/avg_gpus/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwalltime/avg_gpus/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..4ee213f145 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwalltime/avg_gpus/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Count: Per Job: by Job Wall Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[0 - 1s] GPU Count: Per Job","[1 - 30s] GPU Count: Per Job","[30s - 30min] GPU Count: Per Job","[30 - 60min] GPU Count: Per Job","[1 - 5hr] GPU Count: Per Job","[5 - 10hr] GPU Count: Per Job","[10 - 18hr] GPU Count: Per Job","[18+hr] GPU Count: Per Job" +"2016 Q4",0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0008 +"2017 Q1",0.0000,0.0002,0.0000,0.0000,0.0000,0.0000,0.0000,0.0022 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwalltime/avg_gpus/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwalltime/avg_gpus/timeseries-Year-reference.csv new file mode 100644 index 0000000000..db95fe1aaf --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwalltime/avg_gpus/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Count: Per Job: by Job Wall Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[0 - 1s] GPU Count: Per Job","[1 - 30s] GPU Count: Per Job","[30s - 30min] GPU Count: Per Job","[30 - 60min] GPU Count: Per Job","[1 - 5hr] GPU Count: Per Job","[5 - 10hr] GPU Count: Per Job","[10 - 18hr] GPU Count: Per Job","[18+hr] GPU Count: Per Job" +2016,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0008 +2017,0.0000,0.0002,0.0000,0.0000,0.0000,0.0000,0.0000,0.0022 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwalltime/avg_job_size_weighted_by_gpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwalltime/avg_job_size_weighted_by_gpu_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..42c3c3c16e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwalltime/avg_job_size_weighted_by_gpu_hours/aggregate-Day-reference.csv @@ -0,0 +1,17 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by Job Wall Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Wall Time","Job Size: Weighted By GPU Hours (GPU Count)" +"0 - 1s",0.0000 +"1 - 30s",12.0000 +"30s - 30min",0.0000 +"30 - 60min",0.0000 +"1 - 5hr",0.0000 +"5 - 10hr",0.0000 +"10 - 18hr",0.0000 +18+hr,12.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwalltime/avg_job_size_weighted_by_gpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwalltime/avg_job_size_weighted_by_gpu_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..42c3c3c16e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwalltime/avg_job_size_weighted_by_gpu_hours/aggregate-Month-reference.csv @@ -0,0 +1,17 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by Job Wall Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Wall Time","Job Size: Weighted By GPU Hours (GPU Count)" +"0 - 1s",0.0000 +"1 - 30s",12.0000 +"30s - 30min",0.0000 +"30 - 60min",0.0000 +"1 - 5hr",0.0000 +"5 - 10hr",0.0000 +"10 - 18hr",0.0000 +18+hr,12.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwalltime/avg_job_size_weighted_by_gpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwalltime/avg_job_size_weighted_by_gpu_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..42c3c3c16e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwalltime/avg_job_size_weighted_by_gpu_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,17 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by Job Wall Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Wall Time","Job Size: Weighted By GPU Hours (GPU Count)" +"0 - 1s",0.0000 +"1 - 30s",12.0000 +"30s - 30min",0.0000 +"30 - 60min",0.0000 +"1 - 5hr",0.0000 +"5 - 10hr",0.0000 +"10 - 18hr",0.0000 +18+hr,12.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwalltime/avg_job_size_weighted_by_gpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwalltime/avg_job_size_weighted_by_gpu_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..42c3c3c16e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwalltime/avg_job_size_weighted_by_gpu_hours/aggregate-Year-reference.csv @@ -0,0 +1,17 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by Job Wall Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Wall Time","Job Size: Weighted By GPU Hours (GPU Count)" +"0 - 1s",0.0000 +"1 - 30s",12.0000 +"30s - 30min",0.0000 +"30 - 60min",0.0000 +"1 - 5hr",0.0000 +"5 - 10hr",0.0000 +"10 - 18hr",0.0000 +18+hr,12.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwalltime/avg_job_size_weighted_by_gpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwalltime/avg_job_size_weighted_by_gpu_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..70581a434a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwalltime/avg_job_size_weighted_by_gpu_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by Job Wall Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[0 - 1s] Job Size: Weighted By GPU Hours (GPU Count)","[1 - 30s] Job Size: Weighted By GPU Hours (GPU Count)","[30s - 30min] Job Size: Weighted By GPU Hours (GPU Count)","[30 - 60min] Job Size: Weighted By GPU Hours (GPU Count)","[1 - 5hr] Job Size: Weighted By GPU Hours (GPU Count)","[5 - 10hr] Job Size: Weighted By GPU Hours (GPU Count)","[10 - 18hr] Job Size: Weighted By GPU Hours (GPU Count)","[18+hr] Job Size: Weighted By GPU Hours (GPU Count)" +2016-12-22,0,0,0,0,0,0,0,12.0000 +2016-12-23,0,0,0,0,0,0,0,12.0000 +2016-12-24,0,0,0,0,0,0,0,12.0000 +2016-12-25,0,0,0,0,0,0,0,12.0000 +2016-12-26,0,0,0,0,0,0,0,12.0000 +2016-12-27,0,0,0,0,0,0,0,12.0000 +2016-12-28,0,0,0,0,0,0,0,12.0000 +2016-12-29,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,12.0000 +2016-12-30,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,12.0000 +2016-12-31,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,12.0000 +2017-01-01,0.0000,12.0000,0.0000,0.0000,0.0000,0.0000,0.0000,12.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwalltime/avg_job_size_weighted_by_gpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwalltime/avg_job_size_weighted_by_gpu_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..22adca734e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwalltime/avg_job_size_weighted_by_gpu_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by Job Wall Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[0 - 1s] Job Size: Weighted By GPU Hours (GPU Count)","[1 - 30s] Job Size: Weighted By GPU Hours (GPU Count)","[30s - 30min] Job Size: Weighted By GPU Hours (GPU Count)","[30 - 60min] Job Size: Weighted By GPU Hours (GPU Count)","[1 - 5hr] Job Size: Weighted By GPU Hours (GPU Count)","[5 - 10hr] Job Size: Weighted By GPU Hours (GPU Count)","[10 - 18hr] Job Size: Weighted By GPU Hours (GPU Count)","[18+hr] Job Size: Weighted By GPU Hours (GPU Count)" +2016-12,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,12.0000 +2017-01,0.0000,12.0000,0.0000,0.0000,0.0000,0.0000,0.0000,12.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwalltime/avg_job_size_weighted_by_gpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwalltime/avg_job_size_weighted_by_gpu_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..2b9c15aea4 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwalltime/avg_job_size_weighted_by_gpu_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by Job Wall Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[0 - 1s] Job Size: Weighted By GPU Hours (GPU Count)","[1 - 30s] Job Size: Weighted By GPU Hours (GPU Count)","[30s - 30min] Job Size: Weighted By GPU Hours (GPU Count)","[30 - 60min] Job Size: Weighted By GPU Hours (GPU Count)","[1 - 5hr] Job Size: Weighted By GPU Hours (GPU Count)","[5 - 10hr] Job Size: Weighted By GPU Hours (GPU Count)","[10 - 18hr] Job Size: Weighted By GPU Hours (GPU Count)","[18+hr] Job Size: Weighted By GPU Hours (GPU Count)" +"2016 Q4",0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,12.0000 +"2017 Q1",0.0000,12.0000,0.0000,0.0000,0.0000,0.0000,0.0000,12.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwalltime/avg_job_size_weighted_by_gpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwalltime/avg_job_size_weighted_by_gpu_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..70cbf9e093 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwalltime/avg_job_size_weighted_by_gpu_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by Job Wall Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[0 - 1s] Job Size: Weighted By GPU Hours (GPU Count)","[1 - 30s] Job Size: Weighted By GPU Hours (GPU Count)","[30s - 30min] Job Size: Weighted By GPU Hours (GPU Count)","[30 - 60min] Job Size: Weighted By GPU Hours (GPU Count)","[1 - 5hr] Job Size: Weighted By GPU Hours (GPU Count)","[5 - 10hr] Job Size: Weighted By GPU Hours (GPU Count)","[10 - 18hr] Job Size: Weighted By GPU Hours (GPU Count)","[18+hr] Job Size: Weighted By GPU Hours (GPU Count)" +2016,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,12.0000 +2017,0.0000,12.0000,0.0000,0.0000,0.0000,0.0000,0.0000,12.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwalltime/total_gpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwalltime/total_gpu_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..eb596183ca --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwalltime/total_gpu_hours/aggregate-Day-reference.csv @@ -0,0 +1,17 @@ +title +"GPU Hours: Total: by Job Wall Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Wall Time","GPU Hours: Total" +"0 - 1s",0.0000 +"1 - 30s",0.0094 +"30s - 30min",0.0000 +"30 - 60min",0.0000 +"1 - 5hr",0.0000 +"5 - 10hr",0.0000 +"10 - 18hr",0.0000 +18+hr,506.9033 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwalltime/total_gpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwalltime/total_gpu_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..eb596183ca --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwalltime/total_gpu_hours/aggregate-Month-reference.csv @@ -0,0 +1,17 @@ +title +"GPU Hours: Total: by Job Wall Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Wall Time","GPU Hours: Total" +"0 - 1s",0.0000 +"1 - 30s",0.0094 +"30s - 30min",0.0000 +"30 - 60min",0.0000 +"1 - 5hr",0.0000 +"5 - 10hr",0.0000 +"10 - 18hr",0.0000 +18+hr,506.9033 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwalltime/total_gpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwalltime/total_gpu_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..eb596183ca --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwalltime/total_gpu_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,17 @@ +title +"GPU Hours: Total: by Job Wall Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Wall Time","GPU Hours: Total" +"0 - 1s",0.0000 +"1 - 30s",0.0094 +"30s - 30min",0.0000 +"30 - 60min",0.0000 +"1 - 5hr",0.0000 +"5 - 10hr",0.0000 +"10 - 18hr",0.0000 +18+hr,506.9033 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwalltime/total_gpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwalltime/total_gpu_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..eb596183ca --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwalltime/total_gpu_hours/aggregate-Year-reference.csv @@ -0,0 +1,17 @@ +title +"GPU Hours: Total: by Job Wall Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Job Wall Time","GPU Hours: Total" +"0 - 1s",0.0000 +"1 - 30s",0.0094 +"30s - 30min",0.0000 +"30 - 60min",0.0000 +"1 - 5hr",0.0000 +"5 - 10hr",0.0000 +"10 - 18hr",0.0000 +18+hr,506.9033 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwalltime/total_gpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwalltime/total_gpu_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..5226fdaa02 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwalltime/total_gpu_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"GPU Hours: Total: by Job Wall Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[0 - 1s] GPU Hours: Total","[1 - 30s] GPU Hours: Total","[30s - 30min] GPU Hours: Total","[30 - 60min] GPU Hours: Total","[1 - 5hr] GPU Hours: Total","[5 - 10hr] GPU Hours: Total","[10 - 18hr] GPU Hours: Total","[18+hr] GPU Hours: Total" +2016-12-22,0,0,0,0,0,0,0,33.4928 +2016-12-23,0,0,0,0,0,0,0,48.0000 +2016-12-24,0,0,0,0,0,0,0,48.0000 +2016-12-25,0,0,0,0,0,0,0,48.0000 +2016-12-26,0,0,0,0,0,0,0,48.0000 +2016-12-27,0,0,0,0,0,0,0,48.0000 +2016-12-28,0,0,0,0,0,0,0,48.0000 +2016-12-29,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,48.0000 +2016-12-30,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,48.0000 +2016-12-31,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,48.0000 +2017-01-01,0.0000,0.0094,0.0000,0.0000,0.0000,0.0000,0.0000,41.4106 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwalltime/total_gpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwalltime/total_gpu_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..b5274048c5 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwalltime/total_gpu_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Total: by Job Wall Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[0 - 1s] GPU Hours: Total","[1 - 30s] GPU Hours: Total","[30s - 30min] GPU Hours: Total","[30 - 60min] GPU Hours: Total","[1 - 5hr] GPU Hours: Total","[5 - 10hr] GPU Hours: Total","[10 - 18hr] GPU Hours: Total","[18+hr] GPU Hours: Total" +2016-12,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,465.4928 +2017-01,0.0000,0.0094,0.0000,0.0000,0.0000,0.0000,0.0000,41.4106 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwalltime/total_gpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwalltime/total_gpu_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..da072d6303 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwalltime/total_gpu_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Total: by Job Wall Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[0 - 1s] GPU Hours: Total","[1 - 30s] GPU Hours: Total","[30s - 30min] GPU Hours: Total","[30 - 60min] GPU Hours: Total","[1 - 5hr] GPU Hours: Total","[5 - 10hr] GPU Hours: Total","[10 - 18hr] GPU Hours: Total","[18+hr] GPU Hours: Total" +"2016 Q4",0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,465.4928 +"2017 Q1",0.0000,0.0094,0.0000,0.0000,0.0000,0.0000,0.0000,41.4106 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwalltime/total_gpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwalltime/total_gpu_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..e369105e36 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/jobwalltime/total_gpu_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Total: by Job Wall Time" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[0 - 1s] GPU Hours: Total","[1 - 30s] GPU Hours: Total","[30s - 30min] GPU Hours: Total","[30 - 60min] GPU Hours: Total","[1 - 5hr] GPU Hours: Total","[5 - 10hr] GPU Hours: Total","[10 - 18hr] GPU Hours: Total","[18+hr] GPU Hours: Total" +2016,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,465.4928 +2017,0.0000,0.0094,0.0000,0.0000,0.0000,0.0000,0.0000,41.4106 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nodecount/avg_gpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nodecount/avg_gpu_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..87f1f63f64 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nodecount/avg_gpu_hours/aggregate-Day-reference.csv @@ -0,0 +1,24 @@ +title +"GPU Hours: Per Job: by Node Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Node Count","GPU Hours: Per Job" +1,0.00714989 +2,0.00000000 +3,0.00000000 +4,0.00000000 +5,0.00000000 +6,0.00000000 +7,0.00000000 +8,0.00000000 +9,0.00000000 +12,0.00000000 +14,0.00000000 +16,0.00000000 +20,0.00000000 +24,0.00000000 +28,0.00000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nodecount/avg_gpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nodecount/avg_gpu_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..87f1f63f64 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nodecount/avg_gpu_hours/aggregate-Month-reference.csv @@ -0,0 +1,24 @@ +title +"GPU Hours: Per Job: by Node Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Node Count","GPU Hours: Per Job" +1,0.00714989 +2,0.00000000 +3,0.00000000 +4,0.00000000 +5,0.00000000 +6,0.00000000 +7,0.00000000 +8,0.00000000 +9,0.00000000 +12,0.00000000 +14,0.00000000 +16,0.00000000 +20,0.00000000 +24,0.00000000 +28,0.00000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nodecount/avg_gpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nodecount/avg_gpu_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..87f1f63f64 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nodecount/avg_gpu_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,24 @@ +title +"GPU Hours: Per Job: by Node Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Node Count","GPU Hours: Per Job" +1,0.00714989 +2,0.00000000 +3,0.00000000 +4,0.00000000 +5,0.00000000 +6,0.00000000 +7,0.00000000 +8,0.00000000 +9,0.00000000 +12,0.00000000 +14,0.00000000 +16,0.00000000 +20,0.00000000 +24,0.00000000 +28,0.00000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nodecount/avg_gpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nodecount/avg_gpu_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..87f1f63f64 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nodecount/avg_gpu_hours/aggregate-Year-reference.csv @@ -0,0 +1,24 @@ +title +"GPU Hours: Per Job: by Node Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Node Count","GPU Hours: Per Job" +1,0.00714989 +2,0.00000000 +3,0.00000000 +4,0.00000000 +5,0.00000000 +6,0.00000000 +7,0.00000000 +8,0.00000000 +9,0.00000000 +12,0.00000000 +14,0.00000000 +16,0.00000000 +20,0.00000000 +24,0.00000000 +28,0.00000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nodecount/avg_gpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nodecount/avg_gpu_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..39ee882bf8 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nodecount/avg_gpu_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"GPU Hours: Per Job: by Node Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[1] GPU Hours: Per Job","[2] GPU Hours: Per Job","[3] GPU Hours: Per Job","[4] GPU Hours: Per Job","[5] GPU Hours: Per Job","[6] GPU Hours: Per Job","[7] GPU Hours: Per Job","[8] GPU Hours: Per Job","[9] GPU Hours: Per Job","[12] GPU Hours: Per Job","[14] GPU Hours: Per Job","[16] GPU Hours: Per Job","[20] GPU Hours: Per Job","[24] GPU Hours: Per Job","[28] GPU Hours: Per Job" +2016-12-22,16.74638889,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-23,16.00000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-24,16.00000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-25,8.00000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-26,4.36363636,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-27,1.41176471,0.00000000,0,0,0,0.00000000,0,0.00000000,0,0.00000000,0,0,0,0,0 +2016-12-28,0.11650485,0.00000000,0,0.00000000,0,0.00000000,0.00000000,0.00000000,0,0.00000000,0,0,0,0,0 +2016-12-29,0.02875974,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0,0.00000000,0,0 +2016-12-30,0.00167492,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000 +2016-12-31,0.00162739,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0,0.00000000,0,0,0.00000000 +2017-01-01,0.00252885,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0,0,0,0.00000000,0.00000000,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nodecount/avg_gpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nodecount/avg_gpu_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..69d1e02d52 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nodecount/avg_gpu_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Per Job: by Node Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[1] GPU Hours: Per Job","[2] GPU Hours: Per Job","[3] GPU Hours: Per Job","[4] GPU Hours: Per Job","[5] GPU Hours: Per Job","[6] GPU Hours: Per Job","[7] GPU Hours: Per Job","[8] GPU Hours: Per Job","[9] GPU Hours: Per Job","[12] GPU Hours: Per Job","[14] GPU Hours: Per Job","[16] GPU Hours: Per Job","[20] GPU Hours: Per Job","[24] GPU Hours: Per Job","[28] GPU Hours: Per Job" +2016-12,0.00831920,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000 +2017-01,0.00252885,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0,0,0,0.00000000,0.00000000,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nodecount/avg_gpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nodecount/avg_gpu_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..e1db9987ec --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nodecount/avg_gpu_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Per Job: by Node Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[1] GPU Hours: Per Job","[2] GPU Hours: Per Job","[3] GPU Hours: Per Job","[4] GPU Hours: Per Job","[5] GPU Hours: Per Job","[6] GPU Hours: Per Job","[7] GPU Hours: Per Job","[8] GPU Hours: Per Job","[9] GPU Hours: Per Job","[12] GPU Hours: Per Job","[14] GPU Hours: Per Job","[16] GPU Hours: Per Job","[20] GPU Hours: Per Job","[24] GPU Hours: Per Job","[28] GPU Hours: Per Job" +"2016 Q4",0.00831920,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000 +"2017 Q1",0.00252885,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0,0,0,0.00000000,0.00000000,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nodecount/avg_gpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nodecount/avg_gpu_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..39c1ae8f1c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nodecount/avg_gpu_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Per Job: by Node Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[1] GPU Hours: Per Job","[2] GPU Hours: Per Job","[3] GPU Hours: Per Job","[4] GPU Hours: Per Job","[5] GPU Hours: Per Job","[6] GPU Hours: Per Job","[7] GPU Hours: Per Job","[8] GPU Hours: Per Job","[9] GPU Hours: Per Job","[12] GPU Hours: Per Job","[14] GPU Hours: Per Job","[16] GPU Hours: Per Job","[20] GPU Hours: Per Job","[24] GPU Hours: Per Job","[28] GPU Hours: Per Job" +2016,0.00831920,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000 +2017,0.00252885,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0,0,0,0.00000000,0.00000000,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nodecount/avg_gpus/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nodecount/avg_gpus/aggregate-Day-reference.csv new file mode 100644 index 0000000000..7db0e0ee3e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nodecount/avg_gpus/aggregate-Day-reference.csv @@ -0,0 +1,24 @@ +title +"GPU Count: Per Job: by Node Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Node Count","GPU Count: Per Job","Std Dev: GPU Count: Per Job" +1,0.0001,0.000039893752013661574 +2,0.0000,0 +3,0.0000,0 +4,0.0000,0 +5,0.0000,0 +6,0.0000,0 +7,0.0000,0 +8,0.0000,0 +9,0.0000,0 +12,0.0000,0 +14,0.0000,0 +16,0.0000,0 +20,0.0000,0 +24,0.0000,0 +28,0.0000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nodecount/avg_gpus/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nodecount/avg_gpus/aggregate-Month-reference.csv new file mode 100644 index 0000000000..7db0e0ee3e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nodecount/avg_gpus/aggregate-Month-reference.csv @@ -0,0 +1,24 @@ +title +"GPU Count: Per Job: by Node Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Node Count","GPU Count: Per Job","Std Dev: GPU Count: Per Job" +1,0.0001,0.000039893752013661574 +2,0.0000,0 +3,0.0000,0 +4,0.0000,0 +5,0.0000,0 +6,0.0000,0 +7,0.0000,0 +8,0.0000,0 +9,0.0000,0 +12,0.0000,0 +14,0.0000,0 +16,0.0000,0 +20,0.0000,0 +24,0.0000,0 +28,0.0000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nodecount/avg_gpus/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nodecount/avg_gpus/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..7db0e0ee3e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nodecount/avg_gpus/aggregate-Quarter-reference.csv @@ -0,0 +1,24 @@ +title +"GPU Count: Per Job: by Node Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Node Count","GPU Count: Per Job","Std Dev: GPU Count: Per Job" +1,0.0001,0.000039893752013661574 +2,0.0000,0 +3,0.0000,0 +4,0.0000,0 +5,0.0000,0 +6,0.0000,0 +7,0.0000,0 +8,0.0000,0 +9,0.0000,0 +12,0.0000,0 +14,0.0000,0 +16,0.0000,0 +20,0.0000,0 +24,0.0000,0 +28,0.0000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nodecount/avg_gpus/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nodecount/avg_gpus/aggregate-Year-reference.csv new file mode 100644 index 0000000000..7db0e0ee3e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nodecount/avg_gpus/aggregate-Year-reference.csv @@ -0,0 +1,24 @@ +title +"GPU Count: Per Job: by Node Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Node Count","GPU Count: Per Job","Std Dev: GPU Count: Per Job" +1,0.0001,0.000039893752013661574 +2,0.0000,0 +3,0.0000,0 +4,0.0000,0 +5,0.0000,0 +6,0.0000,0 +7,0.0000,0 +8,0.0000,0 +9,0.0000,0 +12,0.0000,0 +14,0.0000,0 +16,0.0000,0 +20,0.0000,0 +24,0.0000,0 +28,0.0000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nodecount/avg_gpus/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nodecount/avg_gpus/timeseries-Day-reference.csv new file mode 100644 index 0000000000..73898b4023 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nodecount/avg_gpus/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"GPU Count: Per Job: by Node Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[1] GPU Count: Per Job","[2] GPU Count: Per Job","[3] GPU Count: Per Job","[4] GPU Count: Per Job","[5] GPU Count: Per Job","[6] GPU Count: Per Job","[7] GPU Count: Per Job","[8] GPU Count: Per Job","[9] GPU Count: Per Job","[12] GPU Count: Per Job","[14] GPU Count: Per Job","[16] GPU Count: Per Job","[20] GPU Count: Per Job","[24] GPU Count: Per Job","[28] GPU Count: Per Job" +2016-12-22,1.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-23,0.6667,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-24,0.6667,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-25,0.3333,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-26,0.1818,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-27,0.0588,0.0000,0,0,0,0.0000,0,0.0000,0,0.0000,0,0,0,0,0 +2016-12-28,0.0049,0.0000,0,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0,0,0,0,0 +2016-12-29,0.0012,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0.0000,0,0 +2016-12-30,0.0001,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2016-12-31,0.0001,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0,0.0000,0,0,0.0000 +2017-01-01,0.0002,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0,0,0,0.0000,0.0000,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nodecount/avg_gpus/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nodecount/avg_gpus/timeseries-Month-reference.csv new file mode 100644 index 0000000000..6874dc4bf5 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nodecount/avg_gpus/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Count: Per Job: by Node Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[1] GPU Count: Per Job","[2] GPU Count: Per Job","[3] GPU Count: Per Job","[4] GPU Count: Per Job","[5] GPU Count: Per Job","[6] GPU Count: Per Job","[7] GPU Count: Per Job","[8] GPU Count: Per Job","[9] GPU Count: Per Job","[12] GPU Count: Per Job","[14] GPU Count: Per Job","[16] GPU Count: Per Job","[20] GPU Count: Per Job","[24] GPU Count: Per Job","[28] GPU Count: Per Job" +2016-12,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2017-01,0.0002,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0,0,0,0.0000,0.0000,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nodecount/avg_gpus/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nodecount/avg_gpus/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..c9b64858f9 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nodecount/avg_gpus/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Count: Per Job: by Node Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[1] GPU Count: Per Job","[2] GPU Count: Per Job","[3] GPU Count: Per Job","[4] GPU Count: Per Job","[5] GPU Count: Per Job","[6] GPU Count: Per Job","[7] GPU Count: Per Job","[8] GPU Count: Per Job","[9] GPU Count: Per Job","[12] GPU Count: Per Job","[14] GPU Count: Per Job","[16] GPU Count: Per Job","[20] GPU Count: Per Job","[24] GPU Count: Per Job","[28] GPU Count: Per Job" +"2016 Q4",0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +"2017 Q1",0.0002,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0,0,0,0.0000,0.0000,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nodecount/avg_gpus/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nodecount/avg_gpus/timeseries-Year-reference.csv new file mode 100644 index 0000000000..672a732eb3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nodecount/avg_gpus/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Count: Per Job: by Node Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[1] GPU Count: Per Job","[2] GPU Count: Per Job","[3] GPU Count: Per Job","[4] GPU Count: Per Job","[5] GPU Count: Per Job","[6] GPU Count: Per Job","[7] GPU Count: Per Job","[8] GPU Count: Per Job","[9] GPU Count: Per Job","[12] GPU Count: Per Job","[14] GPU Count: Per Job","[16] GPU Count: Per Job","[20] GPU Count: Per Job","[24] GPU Count: Per Job","[28] GPU Count: Per Job" +2016,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2017,0.0002,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0,0,0,0.0000,0.0000,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nodecount/avg_job_size_weighted_by_gpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nodecount/avg_job_size_weighted_by_gpu_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..9e384975af --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nodecount/avg_job_size_weighted_by_gpu_hours/aggregate-Day-reference.csv @@ -0,0 +1,24 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by Node Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Node Count","Job Size: Weighted By GPU Hours (GPU Count)" +1,12.0000 +2,0.0000 +3,0.0000 +4,0.0000 +5,0.0000 +6,0.0000 +7,0.0000 +8,0.0000 +9,0.0000 +12,0.0000 +14,0.0000 +16,0.0000 +20,0.0000 +24,0.0000 +28,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nodecount/avg_job_size_weighted_by_gpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nodecount/avg_job_size_weighted_by_gpu_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..9e384975af --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nodecount/avg_job_size_weighted_by_gpu_hours/aggregate-Month-reference.csv @@ -0,0 +1,24 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by Node Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Node Count","Job Size: Weighted By GPU Hours (GPU Count)" +1,12.0000 +2,0.0000 +3,0.0000 +4,0.0000 +5,0.0000 +6,0.0000 +7,0.0000 +8,0.0000 +9,0.0000 +12,0.0000 +14,0.0000 +16,0.0000 +20,0.0000 +24,0.0000 +28,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nodecount/avg_job_size_weighted_by_gpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nodecount/avg_job_size_weighted_by_gpu_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..9e384975af --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nodecount/avg_job_size_weighted_by_gpu_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,24 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by Node Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Node Count","Job Size: Weighted By GPU Hours (GPU Count)" +1,12.0000 +2,0.0000 +3,0.0000 +4,0.0000 +5,0.0000 +6,0.0000 +7,0.0000 +8,0.0000 +9,0.0000 +12,0.0000 +14,0.0000 +16,0.0000 +20,0.0000 +24,0.0000 +28,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nodecount/avg_job_size_weighted_by_gpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nodecount/avg_job_size_weighted_by_gpu_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..9e384975af --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nodecount/avg_job_size_weighted_by_gpu_hours/aggregate-Year-reference.csv @@ -0,0 +1,24 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by Node Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Node Count","Job Size: Weighted By GPU Hours (GPU Count)" +1,12.0000 +2,0.0000 +3,0.0000 +4,0.0000 +5,0.0000 +6,0.0000 +7,0.0000 +8,0.0000 +9,0.0000 +12,0.0000 +14,0.0000 +16,0.0000 +20,0.0000 +24,0.0000 +28,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nodecount/avg_job_size_weighted_by_gpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nodecount/avg_job_size_weighted_by_gpu_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..37db0597ac --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nodecount/avg_job_size_weighted_by_gpu_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by Node Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[1] Job Size: Weighted By GPU Hours (GPU Count)","[2] Job Size: Weighted By GPU Hours (GPU Count)","[3] Job Size: Weighted By GPU Hours (GPU Count)","[4] Job Size: Weighted By GPU Hours (GPU Count)","[5] Job Size: Weighted By GPU Hours (GPU Count)","[6] Job Size: Weighted By GPU Hours (GPU Count)","[7] Job Size: Weighted By GPU Hours (GPU Count)","[8] Job Size: Weighted By GPU Hours (GPU Count)","[9] Job Size: Weighted By GPU Hours (GPU Count)","[12] Job Size: Weighted By GPU Hours (GPU Count)","[14] Job Size: Weighted By GPU Hours (GPU Count)","[16] Job Size: Weighted By GPU Hours (GPU Count)","[20] Job Size: Weighted By GPU Hours (GPU Count)","[24] Job Size: Weighted By GPU Hours (GPU Count)","[28] Job Size: Weighted By GPU Hours (GPU Count)" +2016-12-22,12.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-23,12.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-24,12.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-25,12.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-26,12.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-27,12.0000,0.0000,0,0,0,0.0000,0,0.0000,0,0.0000,0,0,0,0,0 +2016-12-28,12.0000,0.0000,0,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0,0,0,0,0 +2016-12-29,12.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0.0000,0,0 +2016-12-30,12.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2016-12-31,12.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0,0.0000,0,0,0.0000 +2017-01-01,12.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0,0,0,0.0000,0.0000,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nodecount/avg_job_size_weighted_by_gpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nodecount/avg_job_size_weighted_by_gpu_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..63148c4df6 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nodecount/avg_job_size_weighted_by_gpu_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by Node Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[1] Job Size: Weighted By GPU Hours (GPU Count)","[2] Job Size: Weighted By GPU Hours (GPU Count)","[3] Job Size: Weighted By GPU Hours (GPU Count)","[4] Job Size: Weighted By GPU Hours (GPU Count)","[5] Job Size: Weighted By GPU Hours (GPU Count)","[6] Job Size: Weighted By GPU Hours (GPU Count)","[7] Job Size: Weighted By GPU Hours (GPU Count)","[8] Job Size: Weighted By GPU Hours (GPU Count)","[9] Job Size: Weighted By GPU Hours (GPU Count)","[12] Job Size: Weighted By GPU Hours (GPU Count)","[14] Job Size: Weighted By GPU Hours (GPU Count)","[16] Job Size: Weighted By GPU Hours (GPU Count)","[20] Job Size: Weighted By GPU Hours (GPU Count)","[24] Job Size: Weighted By GPU Hours (GPU Count)","[28] Job Size: Weighted By GPU Hours (GPU Count)" +2016-12,12.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2017-01,12.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0,0,0,0.0000,0.0000,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nodecount/avg_job_size_weighted_by_gpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nodecount/avg_job_size_weighted_by_gpu_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..0a17584840 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nodecount/avg_job_size_weighted_by_gpu_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by Node Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[1] Job Size: Weighted By GPU Hours (GPU Count)","[2] Job Size: Weighted By GPU Hours (GPU Count)","[3] Job Size: Weighted By GPU Hours (GPU Count)","[4] Job Size: Weighted By GPU Hours (GPU Count)","[5] Job Size: Weighted By GPU Hours (GPU Count)","[6] Job Size: Weighted By GPU Hours (GPU Count)","[7] Job Size: Weighted By GPU Hours (GPU Count)","[8] Job Size: Weighted By GPU Hours (GPU Count)","[9] Job Size: Weighted By GPU Hours (GPU Count)","[12] Job Size: Weighted By GPU Hours (GPU Count)","[14] Job Size: Weighted By GPU Hours (GPU Count)","[16] Job Size: Weighted By GPU Hours (GPU Count)","[20] Job Size: Weighted By GPU Hours (GPU Count)","[24] Job Size: Weighted By GPU Hours (GPU Count)","[28] Job Size: Weighted By GPU Hours (GPU Count)" +"2016 Q4",12.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +"2017 Q1",12.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0,0,0,0.0000,0.0000,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nodecount/avg_job_size_weighted_by_gpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nodecount/avg_job_size_weighted_by_gpu_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..03d265b5db --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nodecount/avg_job_size_weighted_by_gpu_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by Node Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[1] Job Size: Weighted By GPU Hours (GPU Count)","[2] Job Size: Weighted By GPU Hours (GPU Count)","[3] Job Size: Weighted By GPU Hours (GPU Count)","[4] Job Size: Weighted By GPU Hours (GPU Count)","[5] Job Size: Weighted By GPU Hours (GPU Count)","[6] Job Size: Weighted By GPU Hours (GPU Count)","[7] Job Size: Weighted By GPU Hours (GPU Count)","[8] Job Size: Weighted By GPU Hours (GPU Count)","[9] Job Size: Weighted By GPU Hours (GPU Count)","[12] Job Size: Weighted By GPU Hours (GPU Count)","[14] Job Size: Weighted By GPU Hours (GPU Count)","[16] Job Size: Weighted By GPU Hours (GPU Count)","[20] Job Size: Weighted By GPU Hours (GPU Count)","[24] Job Size: Weighted By GPU Hours (GPU Count)","[28] Job Size: Weighted By GPU Hours (GPU Count)" +2016,12.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2017,12.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0,0,0,0.0000,0.0000,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nodecount/total_gpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nodecount/total_gpu_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..d696207c9d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nodecount/total_gpu_hours/aggregate-Day-reference.csv @@ -0,0 +1,24 @@ +title +"GPU Hours: Total: by Node Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Node Count","GPU Hours: Total" +1,506.9128 +2,0.0000 +3,0.0000 +4,0.0000 +5,0.0000 +6,0.0000 +7,0.0000 +8,0.0000 +9,0.0000 +12,0.0000 +14,0.0000 +16,0.0000 +20,0.0000 +24,0.0000 +28,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nodecount/total_gpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nodecount/total_gpu_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..d696207c9d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nodecount/total_gpu_hours/aggregate-Month-reference.csv @@ -0,0 +1,24 @@ +title +"GPU Hours: Total: by Node Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Node Count","GPU Hours: Total" +1,506.9128 +2,0.0000 +3,0.0000 +4,0.0000 +5,0.0000 +6,0.0000 +7,0.0000 +8,0.0000 +9,0.0000 +12,0.0000 +14,0.0000 +16,0.0000 +20,0.0000 +24,0.0000 +28,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nodecount/total_gpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nodecount/total_gpu_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..d696207c9d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nodecount/total_gpu_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,24 @@ +title +"GPU Hours: Total: by Node Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Node Count","GPU Hours: Total" +1,506.9128 +2,0.0000 +3,0.0000 +4,0.0000 +5,0.0000 +6,0.0000 +7,0.0000 +8,0.0000 +9,0.0000 +12,0.0000 +14,0.0000 +16,0.0000 +20,0.0000 +24,0.0000 +28,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nodecount/total_gpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nodecount/total_gpu_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..d696207c9d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nodecount/total_gpu_hours/aggregate-Year-reference.csv @@ -0,0 +1,24 @@ +title +"GPU Hours: Total: by Node Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Node Count","GPU Hours: Total" +1,506.9128 +2,0.0000 +3,0.0000 +4,0.0000 +5,0.0000 +6,0.0000 +7,0.0000 +8,0.0000 +9,0.0000 +12,0.0000 +14,0.0000 +16,0.0000 +20,0.0000 +24,0.0000 +28,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nodecount/total_gpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nodecount/total_gpu_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..f8a33a2180 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nodecount/total_gpu_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"GPU Hours: Total: by Node Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[1] GPU Hours: Total","[2] GPU Hours: Total","[3] GPU Hours: Total","[4] GPU Hours: Total","[5] GPU Hours: Total","[6] GPU Hours: Total","[7] GPU Hours: Total","[8] GPU Hours: Total","[9] GPU Hours: Total","[12] GPU Hours: Total","[14] GPU Hours: Total","[16] GPU Hours: Total","[20] GPU Hours: Total","[24] GPU Hours: Total","[28] GPU Hours: Total" +2016-12-22,33.4928,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-23,48.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-24,48.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-25,48.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-26,48.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-27,48.0000,0.0000,0,0,0,0.0000,0,0.0000,0,0.0000,0,0,0,0,0 +2016-12-28,48.0000,0.0000,0,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0,0,0,0,0 +2016-12-29,48.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0.0000,0,0 +2016-12-30,48.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2016-12-31,48.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0,0.0000,0,0,0.0000 +2017-01-01,41.4200,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0,0,0,0.0000,0.0000,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nodecount/total_gpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nodecount/total_gpu_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..a2296c99f7 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nodecount/total_gpu_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Total: by Node Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[1] GPU Hours: Total","[2] GPU Hours: Total","[3] GPU Hours: Total","[4] GPU Hours: Total","[5] GPU Hours: Total","[6] GPU Hours: Total","[7] GPU Hours: Total","[8] GPU Hours: Total","[9] GPU Hours: Total","[12] GPU Hours: Total","[14] GPU Hours: Total","[16] GPU Hours: Total","[20] GPU Hours: Total","[24] GPU Hours: Total","[28] GPU Hours: Total" +2016-12,465.4928,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2017-01,41.4200,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0,0,0,0.0000,0.0000,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nodecount/total_gpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nodecount/total_gpu_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..ba0f64c53e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nodecount/total_gpu_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Total: by Node Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[1] GPU Hours: Total","[2] GPU Hours: Total","[3] GPU Hours: Total","[4] GPU Hours: Total","[5] GPU Hours: Total","[6] GPU Hours: Total","[7] GPU Hours: Total","[8] GPU Hours: Total","[9] GPU Hours: Total","[12] GPU Hours: Total","[14] GPU Hours: Total","[16] GPU Hours: Total","[20] GPU Hours: Total","[24] GPU Hours: Total","[28] GPU Hours: Total" +"2016 Q4",465.4928,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +"2017 Q1",41.4200,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0,0,0,0.0000,0.0000,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nodecount/total_gpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nodecount/total_gpu_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..e15a54b695 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nodecount/total_gpu_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Total: by Node Count" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[1] GPU Hours: Total","[2] GPU Hours: Total","[3] GPU Hours: Total","[4] GPU Hours: Total","[5] GPU Hours: Total","[6] GPU Hours: Total","[7] GPU Hours: Total","[8] GPU Hours: Total","[9] GPU Hours: Total","[12] GPU Hours: Total","[14] GPU Hours: Total","[16] GPU Hours: Total","[20] GPU Hours: Total","[24] GPU Hours: Total","[28] GPU Hours: Total" +2016,465.4928,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2017,41.4200,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0,0,0,0.0000,0.0000,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/none/avg_gpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/none/avg_gpu_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..f42cc6295c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/none/avg_gpu_hours/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +title +"GPU Hours: Per Job" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Summary,"GPU Hours: Per Job" +Screwdriver,0.00710828 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/none/avg_gpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/none/avg_gpu_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..f42cc6295c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/none/avg_gpu_hours/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +title +"GPU Hours: Per Job" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Summary,"GPU Hours: Per Job" +Screwdriver,0.00710828 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/none/avg_gpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/none/avg_gpu_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..f42cc6295c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/none/avg_gpu_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"GPU Hours: Per Job" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Summary,"GPU Hours: Per Job" +Screwdriver,0.00710828 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/none/avg_gpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/none/avg_gpu_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..f42cc6295c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/none/avg_gpu_hours/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +title +"GPU Hours: Per Job" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Summary,"GPU Hours: Per Job" +Screwdriver,0.00710828 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/none/avg_gpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/none/avg_gpu_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..a1b720375d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/none/avg_gpu_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"GPU Hours: Per Job" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[Screwdriver] GPU Hours: Per Job" +2016-12-22,16.74638889 +2016-12-23,16.00000000 +2016-12-24,16.00000000 +2016-12-25,8.00000000 +2016-12-26,4.36363636 +2016-12-27,1.14285714 +2016-12-28,0.10666667 +2016-12-29,0.02758621 +2016-12-30,0.00166349 +2016-12-31,0.00162146 +2017-01-01,0.00250030 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/none/avg_gpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/none/avg_gpu_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..931395676e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/none/avg_gpu_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Per Job" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[Screwdriver] GPU Hours: Per Job" +2016-12,0.00828146 +2017-01,0.00250030 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/none/avg_gpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/none/avg_gpu_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..7253e758e9 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/none/avg_gpu_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Per Job" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[Screwdriver] GPU Hours: Per Job" +"2016 Q4",0.00828146 +"2017 Q1",0.00250030 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/none/avg_gpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/none/avg_gpu_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..3e12c42858 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/none/avg_gpu_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Per Job" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[Screwdriver] GPU Hours: Per Job" +2016,0.00828146 +2017,0.00250030 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/none/avg_gpus/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/none/avg_gpus/aggregate-Day-reference.csv new file mode 100644 index 0000000000..21f0c26790 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/none/avg_gpus/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +title +"GPU Count: Per Job" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Summary,"GPU Count: Per Job","Std Dev: GPU Count: Per Job" +Screwdriver,0.0001,0.000039661596951222156 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/none/avg_gpus/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/none/avg_gpus/aggregate-Month-reference.csv new file mode 100644 index 0000000000..21f0c26790 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/none/avg_gpus/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +title +"GPU Count: Per Job" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Summary,"GPU Count: Per Job","Std Dev: GPU Count: Per Job" +Screwdriver,0.0001,0.000039661596951222156 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/none/avg_gpus/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/none/avg_gpus/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..21f0c26790 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/none/avg_gpus/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"GPU Count: Per Job" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Summary,"GPU Count: Per Job","Std Dev: GPU Count: Per Job" +Screwdriver,0.0001,0.000039661596951222156 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/none/avg_gpus/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/none/avg_gpus/aggregate-Year-reference.csv new file mode 100644 index 0000000000..21f0c26790 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/none/avg_gpus/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +title +"GPU Count: Per Job" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Summary,"GPU Count: Per Job","Std Dev: GPU Count: Per Job" +Screwdriver,0.0001,0.000039661596951222156 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/none/avg_gpus/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/none/avg_gpus/timeseries-Day-reference.csv new file mode 100644 index 0000000000..937da59fb3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/none/avg_gpus/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"GPU Count: Per Job" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[Screwdriver] GPU Count: Per Job" +2016-12-22,1.0000 +2016-12-23,0.6667 +2016-12-24,0.6667 +2016-12-25,0.3333 +2016-12-26,0.1818 +2016-12-27,0.0476 +2016-12-28,0.0044 +2016-12-29,0.0011 +2016-12-30,0.0001 +2016-12-31,0.0001 +2017-01-01,0.0002 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/none/avg_gpus/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/none/avg_gpus/timeseries-Month-reference.csv new file mode 100644 index 0000000000..8d8c3cd462 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/none/avg_gpus/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Count: Per Job" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[Screwdriver] GPU Count: Per Job" +2016-12,0.0000 +2017-01,0.0002 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/none/avg_gpus/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/none/avg_gpus/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..c6553d41ea --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/none/avg_gpus/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Count: Per Job" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[Screwdriver] GPU Count: Per Job" +"2016 Q4",0.0000 +"2017 Q1",0.0002 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/none/avg_gpus/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/none/avg_gpus/timeseries-Year-reference.csv new file mode 100644 index 0000000000..d571a225ab --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/none/avg_gpus/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Count: Per Job" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[Screwdriver] GPU Count: Per Job" +2016,0.0000 +2017,0.0002 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/none/avg_job_size_weighted_by_gpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/none/avg_job_size_weighted_by_gpu_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..9de85967c9 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/none/avg_job_size_weighted_by_gpu_hours/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count)" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Summary,"Job Size: Weighted By GPU Hours (GPU Count)" +Screwdriver,12.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/none/avg_job_size_weighted_by_gpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/none/avg_job_size_weighted_by_gpu_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..9de85967c9 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/none/avg_job_size_weighted_by_gpu_hours/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count)" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Summary,"Job Size: Weighted By GPU Hours (GPU Count)" +Screwdriver,12.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/none/avg_job_size_weighted_by_gpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/none/avg_job_size_weighted_by_gpu_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..9de85967c9 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/none/avg_job_size_weighted_by_gpu_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count)" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Summary,"Job Size: Weighted By GPU Hours (GPU Count)" +Screwdriver,12.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/none/avg_job_size_weighted_by_gpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/none/avg_job_size_weighted_by_gpu_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..9de85967c9 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/none/avg_job_size_weighted_by_gpu_hours/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count)" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Summary,"Job Size: Weighted By GPU Hours (GPU Count)" +Screwdriver,12.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/none/avg_job_size_weighted_by_gpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/none/avg_job_size_weighted_by_gpu_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..af52fb7566 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/none/avg_job_size_weighted_by_gpu_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count)" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[Screwdriver] Job Size: Weighted By GPU Hours (GPU Count)" +2016-12-22,12.0000 +2016-12-23,12.0000 +2016-12-24,12.0000 +2016-12-25,12.0000 +2016-12-26,12.0000 +2016-12-27,12.0000 +2016-12-28,12.0000 +2016-12-29,12.0000 +2016-12-30,12.0000 +2016-12-31,12.0000 +2017-01-01,12.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/none/avg_job_size_weighted_by_gpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/none/avg_job_size_weighted_by_gpu_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..bc4b0e094e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/none/avg_job_size_weighted_by_gpu_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count)" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[Screwdriver] Job Size: Weighted By GPU Hours (GPU Count)" +2016-12,12.0000 +2017-01,12.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/none/avg_job_size_weighted_by_gpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/none/avg_job_size_weighted_by_gpu_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..688648ba12 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/none/avg_job_size_weighted_by_gpu_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count)" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[Screwdriver] Job Size: Weighted By GPU Hours (GPU Count)" +"2016 Q4",12.0000 +"2017 Q1",12.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/none/avg_job_size_weighted_by_gpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/none/avg_job_size_weighted_by_gpu_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..05c200df73 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/none/avg_job_size_weighted_by_gpu_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count)" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[Screwdriver] Job Size: Weighted By GPU Hours (GPU Count)" +2016,12.0000 +2017,12.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/none/total_gpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/none/total_gpu_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..4ffcc6f02e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/none/total_gpu_hours/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +title +"GPU Hours: Total" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Summary,"GPU Hours: Total" +Screwdriver,506.9128 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/none/total_gpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/none/total_gpu_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..4ffcc6f02e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/none/total_gpu_hours/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +title +"GPU Hours: Total" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Summary,"GPU Hours: Total" +Screwdriver,506.9128 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/none/total_gpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/none/total_gpu_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..4ffcc6f02e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/none/total_gpu_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"GPU Hours: Total" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Summary,"GPU Hours: Total" +Screwdriver,506.9128 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/none/total_gpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/none/total_gpu_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..4ffcc6f02e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/none/total_gpu_hours/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +title +"GPU Hours: Total" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Summary,"GPU Hours: Total" +Screwdriver,506.9128 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/none/total_gpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/none/total_gpu_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..114cbd12f4 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/none/total_gpu_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"GPU Hours: Total" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[Screwdriver] GPU Hours: Total" +2016-12-22,33.4928 +2016-12-23,48.0000 +2016-12-24,48.0000 +2016-12-25,48.0000 +2016-12-26,48.0000 +2016-12-27,48.0000 +2016-12-28,48.0000 +2016-12-29,48.0000 +2016-12-30,48.0000 +2016-12-31,48.0000 +2017-01-01,41.4200 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/none/total_gpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/none/total_gpu_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..cc8ccac726 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/none/total_gpu_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Total" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[Screwdriver] GPU Hours: Total" +2016-12,465.4928 +2017-01,41.4200 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/none/total_gpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/none/total_gpu_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..ad78335da6 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/none/total_gpu_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Total" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[Screwdriver] GPU Hours: Total" +"2016 Q4",465.4928 +"2017 Q1",41.4200 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/none/total_gpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/none/total_gpu_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..84a3a19d15 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/none/total_gpu_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Total" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[Screwdriver] GPU Hours: Total" +2016,465.4928 +2017,41.4200 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nsfdirectorate/avg_gpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nsfdirectorate/avg_gpu_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..295095bf4d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nsfdirectorate/avg_gpu_hours/aggregate-Day-reference.csv @@ -0,0 +1,16 @@ +title +"GPU Hours: Per Job: by Decanal Unit" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Decanal Unit","GPU Hours: Per Job" +"Biological Sciences",1.41992375 +"Computer and Information Science and Engineering",0.00000000 +Engineering,0.00000000 +Geosciences,0.00000000 +Humanities/Arts,0.00000000 +"Mathematical and Physical Sciences",0.00000000 +"Social, Behavioral, and Economic Sciences",0.00000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nsfdirectorate/avg_gpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nsfdirectorate/avg_gpu_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..295095bf4d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nsfdirectorate/avg_gpu_hours/aggregate-Month-reference.csv @@ -0,0 +1,16 @@ +title +"GPU Hours: Per Job: by Decanal Unit" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Decanal Unit","GPU Hours: Per Job" +"Biological Sciences",1.41992375 +"Computer and Information Science and Engineering",0.00000000 +Engineering,0.00000000 +Geosciences,0.00000000 +Humanities/Arts,0.00000000 +"Mathematical and Physical Sciences",0.00000000 +"Social, Behavioral, and Economic Sciences",0.00000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nsfdirectorate/avg_gpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nsfdirectorate/avg_gpu_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..295095bf4d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nsfdirectorate/avg_gpu_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,16 @@ +title +"GPU Hours: Per Job: by Decanal Unit" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Decanal Unit","GPU Hours: Per Job" +"Biological Sciences",1.41992375 +"Computer and Information Science and Engineering",0.00000000 +Engineering,0.00000000 +Geosciences,0.00000000 +Humanities/Arts,0.00000000 +"Mathematical and Physical Sciences",0.00000000 +"Social, Behavioral, and Economic Sciences",0.00000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nsfdirectorate/avg_gpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nsfdirectorate/avg_gpu_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..295095bf4d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nsfdirectorate/avg_gpu_hours/aggregate-Year-reference.csv @@ -0,0 +1,16 @@ +title +"GPU Hours: Per Job: by Decanal Unit" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Decanal Unit","GPU Hours: Per Job" +"Biological Sciences",1.41992375 +"Computer and Information Science and Engineering",0.00000000 +Engineering,0.00000000 +Geosciences,0.00000000 +Humanities/Arts,0.00000000 +"Mathematical and Physical Sciences",0.00000000 +"Social, Behavioral, and Economic Sciences",0.00000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nsfdirectorate/avg_gpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nsfdirectorate/avg_gpu_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..f05dd15b50 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nsfdirectorate/avg_gpu_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"GPU Hours: Per Job: by Decanal Unit" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[Biological Sciences] GPU Hours: Per Job","[Computer and Information Science and Engineering] GPU Hours: Per Job","[Engineering] GPU Hours: Per Job","[Geosciences] GPU Hours: Per Job","[Humanities/Arts] GPU Hours: Per Job","[Mathematical and Physical Sciences] GPU Hours: Per Job","[Social, Behavioral, and Economic Sciences] GPU Hours: Per Job" +2016-12-22,33.49277778,0,0,0,0,0.00000000,0 +2016-12-23,48.00000000,0,0,0,0,0.00000000,0 +2016-12-24,48.00000000,0,0,0,0,0.00000000,0 +2016-12-25,48.00000000,0,0,0,0,0.00000000,0 +2016-12-26,48.00000000,0,0,0,0,0.00000000,0 +2016-12-27,6.00000000,0,0.00000000,0,0,0.00000000,0.00000000 +2016-12-28,3.69230769,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000 +2016-12-29,0.73846154,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000 +2016-12-30,0.27428571,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000 +2016-12-31,1.50000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000 +2017-01-01,0.23942197,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nsfdirectorate/avg_gpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nsfdirectorate/avg_gpu_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..ccbedcf9bb --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nsfdirectorate/avg_gpu_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Per Job: by Decanal Unit" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[Biological Sciences] GPU Hours: Per Job","[Computer and Information Science and Engineering] GPU Hours: Per Job","[Engineering] GPU Hours: Per Job","[Geosciences] GPU Hours: Per Job","[Humanities/Arts] GPU Hours: Per Job","[Mathematical and Physical Sciences] GPU Hours: Per Job","[Social, Behavioral, and Economic Sciences] GPU Hours: Per Job" +2016-12,2.41187968,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000 +2017-01,0.23942197,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nsfdirectorate/avg_gpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nsfdirectorate/avg_gpu_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..f6c66c488e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nsfdirectorate/avg_gpu_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Per Job: by Decanal Unit" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[Biological Sciences] GPU Hours: Per Job","[Computer and Information Science and Engineering] GPU Hours: Per Job","[Engineering] GPU Hours: Per Job","[Geosciences] GPU Hours: Per Job","[Humanities/Arts] GPU Hours: Per Job","[Mathematical and Physical Sciences] GPU Hours: Per Job","[Social, Behavioral, and Economic Sciences] GPU Hours: Per Job" +"2016 Q4",2.41187968,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000 +"2017 Q1",0.23942197,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nsfdirectorate/avg_gpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nsfdirectorate/avg_gpu_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..b24a3d602c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nsfdirectorate/avg_gpu_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Per Job: by Decanal Unit" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[Biological Sciences] GPU Hours: Per Job","[Computer and Information Science and Engineering] GPU Hours: Per Job","[Engineering] GPU Hours: Per Job","[Geosciences] GPU Hours: Per Job","[Humanities/Arts] GPU Hours: Per Job","[Mathematical and Physical Sciences] GPU Hours: Per Job","[Social, Behavioral, and Economic Sciences] GPU Hours: Per Job" +2016,2.41187968,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000 +2017,0.23942197,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nsfdirectorate/avg_gpus/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nsfdirectorate/avg_gpus/aggregate-Day-reference.csv new file mode 100644 index 0000000000..56313bc58b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nsfdirectorate/avg_gpus/aggregate-Day-reference.csv @@ -0,0 +1,16 @@ +title +"GPU Count: Per Job: by Decanal Unit" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Decanal Unit","GPU Count: Per Job","Std Dev: GPU Count: Per Job" +"Biological Sciences",0.0112,0.007900541269787514 +"Computer and Information Science and Engineering",0.0000,0 +Engineering,0.0000,0 +Geosciences,0.0000,0 +Humanities/Arts,0.0000,0 +"Mathematical and Physical Sciences",0.0000,0 +"Social, Behavioral, and Economic Sciences",0.0000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nsfdirectorate/avg_gpus/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nsfdirectorate/avg_gpus/aggregate-Month-reference.csv new file mode 100644 index 0000000000..56313bc58b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nsfdirectorate/avg_gpus/aggregate-Month-reference.csv @@ -0,0 +1,16 @@ +title +"GPU Count: Per Job: by Decanal Unit" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Decanal Unit","GPU Count: Per Job","Std Dev: GPU Count: Per Job" +"Biological Sciences",0.0112,0.007900541269787514 +"Computer and Information Science and Engineering",0.0000,0 +Engineering,0.0000,0 +Geosciences,0.0000,0 +Humanities/Arts,0.0000,0 +"Mathematical and Physical Sciences",0.0000,0 +"Social, Behavioral, and Economic Sciences",0.0000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nsfdirectorate/avg_gpus/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nsfdirectorate/avg_gpus/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..56313bc58b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nsfdirectorate/avg_gpus/aggregate-Quarter-reference.csv @@ -0,0 +1,16 @@ +title +"GPU Count: Per Job: by Decanal Unit" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Decanal Unit","GPU Count: Per Job","Std Dev: GPU Count: Per Job" +"Biological Sciences",0.0112,0.007900541269787514 +"Computer and Information Science and Engineering",0.0000,0 +Engineering,0.0000,0 +Geosciences,0.0000,0 +Humanities/Arts,0.0000,0 +"Mathematical and Physical Sciences",0.0000,0 +"Social, Behavioral, and Economic Sciences",0.0000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nsfdirectorate/avg_gpus/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nsfdirectorate/avg_gpus/aggregate-Year-reference.csv new file mode 100644 index 0000000000..56313bc58b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nsfdirectorate/avg_gpus/aggregate-Year-reference.csv @@ -0,0 +1,16 @@ +title +"GPU Count: Per Job: by Decanal Unit" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Decanal Unit","GPU Count: Per Job","Std Dev: GPU Count: Per Job" +"Biological Sciences",0.0112,0.007900541269787514 +"Computer and Information Science and Engineering",0.0000,0 +Engineering,0.0000,0 +Geosciences,0.0000,0 +Humanities/Arts,0.0000,0 +"Mathematical and Physical Sciences",0.0000,0 +"Social, Behavioral, and Economic Sciences",0.0000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nsfdirectorate/avg_gpus/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nsfdirectorate/avg_gpus/timeseries-Day-reference.csv new file mode 100644 index 0000000000..1b4e805068 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nsfdirectorate/avg_gpus/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"GPU Count: Per Job: by Decanal Unit" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[Biological Sciences] GPU Count: Per Job","[Computer and Information Science and Engineering] GPU Count: Per Job","[Engineering] GPU Count: Per Job","[Geosciences] GPU Count: Per Job","[Humanities/Arts] GPU Count: Per Job","[Mathematical and Physical Sciences] GPU Count: Per Job","[Social, Behavioral, and Economic Sciences] GPU Count: Per Job" +2016-12-22,2.0000,0,0,0,0,0.0000,0 +2016-12-23,2.0000,0,0,0,0,0.0000,0 +2016-12-24,2.0000,0,0,0,0,0.0000,0 +2016-12-25,2.0000,0,0,0,0,0.0000,0 +2016-12-26,2.0000,0,0,0,0,0.0000,0 +2016-12-27,0.2500,0,0.0000,0,0,0.0000,0.0000 +2016-12-28,0.1538,0.0000,0.0000,0.0000,0,0.0000,0.0000 +2016-12-29,0.0308,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2016-12-30,0.0114,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2016-12-31,0.0625,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2017-01-01,0.0231,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nsfdirectorate/avg_gpus/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nsfdirectorate/avg_gpus/timeseries-Month-reference.csv new file mode 100644 index 0000000000..79d51c87c4 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nsfdirectorate/avg_gpus/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Count: Per Job: by Decanal Unit" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[Biological Sciences] GPU Count: Per Job","[Computer and Information Science and Engineering] GPU Count: Per Job","[Engineering] GPU Count: Per Job","[Geosciences] GPU Count: Per Job","[Humanities/Arts] GPU Count: Per Job","[Mathematical and Physical Sciences] GPU Count: Per Job","[Social, Behavioral, and Economic Sciences] GPU Count: Per Job" +2016-12,0.0104,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2017-01,0.0231,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nsfdirectorate/avg_gpus/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nsfdirectorate/avg_gpus/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..7f4b24bc8b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nsfdirectorate/avg_gpus/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Count: Per Job: by Decanal Unit" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[Biological Sciences] GPU Count: Per Job","[Computer and Information Science and Engineering] GPU Count: Per Job","[Engineering] GPU Count: Per Job","[Geosciences] GPU Count: Per Job","[Humanities/Arts] GPU Count: Per Job","[Mathematical and Physical Sciences] GPU Count: Per Job","[Social, Behavioral, and Economic Sciences] GPU Count: Per Job" +"2016 Q4",0.0104,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +"2017 Q1",0.0231,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nsfdirectorate/avg_gpus/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nsfdirectorate/avg_gpus/timeseries-Year-reference.csv new file mode 100644 index 0000000000..d3d98490ef --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nsfdirectorate/avg_gpus/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Count: Per Job: by Decanal Unit" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[Biological Sciences] GPU Count: Per Job","[Computer and Information Science and Engineering] GPU Count: Per Job","[Engineering] GPU Count: Per Job","[Geosciences] GPU Count: Per Job","[Humanities/Arts] GPU Count: Per Job","[Mathematical and Physical Sciences] GPU Count: Per Job","[Social, Behavioral, and Economic Sciences] GPU Count: Per Job" +2016,0.0104,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2017,0.0231,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nsfdirectorate/avg_job_size_weighted_by_gpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nsfdirectorate/avg_job_size_weighted_by_gpu_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..7441a22d2a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nsfdirectorate/avg_job_size_weighted_by_gpu_hours/aggregate-Day-reference.csv @@ -0,0 +1,16 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by Decanal Unit" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Decanal Unit","Job Size: Weighted By GPU Hours (GPU Count)" +"Biological Sciences",12.0000 +"Computer and Information Science and Engineering",0.0000 +Engineering,0.0000 +Geosciences,0.0000 +Humanities/Arts,0.0000 +"Mathematical and Physical Sciences",0.0000 +"Social, Behavioral, and Economic Sciences",0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nsfdirectorate/avg_job_size_weighted_by_gpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nsfdirectorate/avg_job_size_weighted_by_gpu_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..7441a22d2a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nsfdirectorate/avg_job_size_weighted_by_gpu_hours/aggregate-Month-reference.csv @@ -0,0 +1,16 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by Decanal Unit" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Decanal Unit","Job Size: Weighted By GPU Hours (GPU Count)" +"Biological Sciences",12.0000 +"Computer and Information Science and Engineering",0.0000 +Engineering,0.0000 +Geosciences,0.0000 +Humanities/Arts,0.0000 +"Mathematical and Physical Sciences",0.0000 +"Social, Behavioral, and Economic Sciences",0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nsfdirectorate/avg_job_size_weighted_by_gpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nsfdirectorate/avg_job_size_weighted_by_gpu_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..7441a22d2a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nsfdirectorate/avg_job_size_weighted_by_gpu_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,16 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by Decanal Unit" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Decanal Unit","Job Size: Weighted By GPU Hours (GPU Count)" +"Biological Sciences",12.0000 +"Computer and Information Science and Engineering",0.0000 +Engineering,0.0000 +Geosciences,0.0000 +Humanities/Arts,0.0000 +"Mathematical and Physical Sciences",0.0000 +"Social, Behavioral, and Economic Sciences",0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nsfdirectorate/avg_job_size_weighted_by_gpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nsfdirectorate/avg_job_size_weighted_by_gpu_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..7441a22d2a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nsfdirectorate/avg_job_size_weighted_by_gpu_hours/aggregate-Year-reference.csv @@ -0,0 +1,16 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by Decanal Unit" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Decanal Unit","Job Size: Weighted By GPU Hours (GPU Count)" +"Biological Sciences",12.0000 +"Computer and Information Science and Engineering",0.0000 +Engineering,0.0000 +Geosciences,0.0000 +Humanities/Arts,0.0000 +"Mathematical and Physical Sciences",0.0000 +"Social, Behavioral, and Economic Sciences",0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nsfdirectorate/avg_job_size_weighted_by_gpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nsfdirectorate/avg_job_size_weighted_by_gpu_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..88244c4a20 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nsfdirectorate/avg_job_size_weighted_by_gpu_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by Decanal Unit" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[Biological Sciences] Job Size: Weighted By GPU Hours (GPU Count)","[Computer and Information Science and Engineering] Job Size: Weighted By GPU Hours (GPU Count)","[Engineering] Job Size: Weighted By GPU Hours (GPU Count)","[Geosciences] Job Size: Weighted By GPU Hours (GPU Count)","[Humanities/Arts] Job Size: Weighted By GPU Hours (GPU Count)","[Mathematical and Physical Sciences] Job Size: Weighted By GPU Hours (GPU Count)","[Social, Behavioral, and Economic Sciences] Job Size: Weighted By GPU Hours (GPU Count)" +2016-12-22,12.0000,0,0,0,0,0.0000,0 +2016-12-23,12.0000,0,0,0,0,0.0000,0 +2016-12-24,12.0000,0,0,0,0,0.0000,0 +2016-12-25,12.0000,0,0,0,0,0.0000,0 +2016-12-26,12.0000,0,0,0,0,0.0000,0 +2016-12-27,12.0000,0,0.0000,0,0,0.0000,0.0000 +2016-12-28,12.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000 +2016-12-29,12.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2016-12-30,12.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2016-12-31,12.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2017-01-01,12.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nsfdirectorate/avg_job_size_weighted_by_gpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nsfdirectorate/avg_job_size_weighted_by_gpu_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..80b6d03478 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nsfdirectorate/avg_job_size_weighted_by_gpu_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by Decanal Unit" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[Biological Sciences] Job Size: Weighted By GPU Hours (GPU Count)","[Computer and Information Science and Engineering] Job Size: Weighted By GPU Hours (GPU Count)","[Engineering] Job Size: Weighted By GPU Hours (GPU Count)","[Geosciences] Job Size: Weighted By GPU Hours (GPU Count)","[Humanities/Arts] Job Size: Weighted By GPU Hours (GPU Count)","[Mathematical and Physical Sciences] Job Size: Weighted By GPU Hours (GPU Count)","[Social, Behavioral, and Economic Sciences] Job Size: Weighted By GPU Hours (GPU Count)" +2016-12,12.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2017-01,12.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nsfdirectorate/avg_job_size_weighted_by_gpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nsfdirectorate/avg_job_size_weighted_by_gpu_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..b1c301a414 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nsfdirectorate/avg_job_size_weighted_by_gpu_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by Decanal Unit" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[Biological Sciences] Job Size: Weighted By GPU Hours (GPU Count)","[Computer and Information Science and Engineering] Job Size: Weighted By GPU Hours (GPU Count)","[Engineering] Job Size: Weighted By GPU Hours (GPU Count)","[Geosciences] Job Size: Weighted By GPU Hours (GPU Count)","[Humanities/Arts] Job Size: Weighted By GPU Hours (GPU Count)","[Mathematical and Physical Sciences] Job Size: Weighted By GPU Hours (GPU Count)","[Social, Behavioral, and Economic Sciences] Job Size: Weighted By GPU Hours (GPU Count)" +"2016 Q4",12.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +"2017 Q1",12.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nsfdirectorate/avg_job_size_weighted_by_gpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nsfdirectorate/avg_job_size_weighted_by_gpu_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..0d75ffecaa --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nsfdirectorate/avg_job_size_weighted_by_gpu_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by Decanal Unit" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[Biological Sciences] Job Size: Weighted By GPU Hours (GPU Count)","[Computer and Information Science and Engineering] Job Size: Weighted By GPU Hours (GPU Count)","[Engineering] Job Size: Weighted By GPU Hours (GPU Count)","[Geosciences] Job Size: Weighted By GPU Hours (GPU Count)","[Humanities/Arts] Job Size: Weighted By GPU Hours (GPU Count)","[Mathematical and Physical Sciences] Job Size: Weighted By GPU Hours (GPU Count)","[Social, Behavioral, and Economic Sciences] Job Size: Weighted By GPU Hours (GPU Count)" +2016,12.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2017,12.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nsfdirectorate/total_gpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nsfdirectorate/total_gpu_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..1798446b91 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nsfdirectorate/total_gpu_hours/aggregate-Day-reference.csv @@ -0,0 +1,16 @@ +title +"GPU Hours: Total: by Decanal Unit" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Decanal Unit","GPU Hours: Total" +"Biological Sciences",506.9128 +"Computer and Information Science and Engineering",0.0000 +Engineering,0.0000 +Geosciences,0.0000 +Humanities/Arts,0.0000 +"Mathematical and Physical Sciences",0.0000 +"Social, Behavioral, and Economic Sciences",0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nsfdirectorate/total_gpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nsfdirectorate/total_gpu_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..1798446b91 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nsfdirectorate/total_gpu_hours/aggregate-Month-reference.csv @@ -0,0 +1,16 @@ +title +"GPU Hours: Total: by Decanal Unit" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Decanal Unit","GPU Hours: Total" +"Biological Sciences",506.9128 +"Computer and Information Science and Engineering",0.0000 +Engineering,0.0000 +Geosciences,0.0000 +Humanities/Arts,0.0000 +"Mathematical and Physical Sciences",0.0000 +"Social, Behavioral, and Economic Sciences",0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nsfdirectorate/total_gpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nsfdirectorate/total_gpu_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..1798446b91 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nsfdirectorate/total_gpu_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,16 @@ +title +"GPU Hours: Total: by Decanal Unit" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Decanal Unit","GPU Hours: Total" +"Biological Sciences",506.9128 +"Computer and Information Science and Engineering",0.0000 +Engineering,0.0000 +Geosciences,0.0000 +Humanities/Arts,0.0000 +"Mathematical and Physical Sciences",0.0000 +"Social, Behavioral, and Economic Sciences",0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nsfdirectorate/total_gpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nsfdirectorate/total_gpu_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..1798446b91 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nsfdirectorate/total_gpu_hours/aggregate-Year-reference.csv @@ -0,0 +1,16 @@ +title +"GPU Hours: Total: by Decanal Unit" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Decanal Unit","GPU Hours: Total" +"Biological Sciences",506.9128 +"Computer and Information Science and Engineering",0.0000 +Engineering,0.0000 +Geosciences,0.0000 +Humanities/Arts,0.0000 +"Mathematical and Physical Sciences",0.0000 +"Social, Behavioral, and Economic Sciences",0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nsfdirectorate/total_gpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nsfdirectorate/total_gpu_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..9a13c6ba8d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nsfdirectorate/total_gpu_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"GPU Hours: Total: by Decanal Unit" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[Biological Sciences] GPU Hours: Total","[Computer and Information Science and Engineering] GPU Hours: Total","[Engineering] GPU Hours: Total","[Geosciences] GPU Hours: Total","[Humanities/Arts] GPU Hours: Total","[Mathematical and Physical Sciences] GPU Hours: Total","[Social, Behavioral, and Economic Sciences] GPU Hours: Total" +2016-12-22,33.4928,0,0,0,0,0.0000,0 +2016-12-23,48.0000,0,0,0,0,0.0000,0 +2016-12-24,48.0000,0,0,0,0,0.0000,0 +2016-12-25,48.0000,0,0,0,0,0.0000,0 +2016-12-26,48.0000,0,0,0,0,0.0000,0 +2016-12-27,48.0000,0,0.0000,0,0,0.0000,0.0000 +2016-12-28,48.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000 +2016-12-29,48.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2016-12-30,48.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2016-12-31,48.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2017-01-01,41.4200,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nsfdirectorate/total_gpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nsfdirectorate/total_gpu_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..1cd4a6e071 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nsfdirectorate/total_gpu_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Total: by Decanal Unit" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[Biological Sciences] GPU Hours: Total","[Computer and Information Science and Engineering] GPU Hours: Total","[Engineering] GPU Hours: Total","[Geosciences] GPU Hours: Total","[Humanities/Arts] GPU Hours: Total","[Mathematical and Physical Sciences] GPU Hours: Total","[Social, Behavioral, and Economic Sciences] GPU Hours: Total" +2016-12,465.4928,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2017-01,41.4200,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nsfdirectorate/total_gpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nsfdirectorate/total_gpu_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..90a465292e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nsfdirectorate/total_gpu_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Total: by Decanal Unit" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[Biological Sciences] GPU Hours: Total","[Computer and Information Science and Engineering] GPU Hours: Total","[Engineering] GPU Hours: Total","[Geosciences] GPU Hours: Total","[Humanities/Arts] GPU Hours: Total","[Mathematical and Physical Sciences] GPU Hours: Total","[Social, Behavioral, and Economic Sciences] GPU Hours: Total" +"2016 Q4",465.4928,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +"2017 Q1",41.4200,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nsfdirectorate/total_gpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nsfdirectorate/total_gpu_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..9c88a5b018 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/nsfdirectorate/total_gpu_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Total: by Decanal Unit" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[Biological Sciences] GPU Hours: Total","[Computer and Information Science and Engineering] GPU Hours: Total","[Engineering] GPU Hours: Total","[Geosciences] GPU Hours: Total","[Humanities/Arts] GPU Hours: Total","[Mathematical and Physical Sciences] GPU Hours: Total","[Social, Behavioral, and Economic Sciences] GPU Hours: Total" +2016,465.4928,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2017,41.4200,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/parentscience/avg_gpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/parentscience/avg_gpu_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..1f11e82745 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/parentscience/avg_gpu_hours/aggregate-Day-reference.csv @@ -0,0 +1,27 @@ +title +"GPU Hours: Per Job: by Department" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Department,"GPU Hours: Per Job" +"Molecular Biosciences",4.29587100 +Arts,0.00000000 +"Astronomical Sciences",0.00000000 +"Atmospheric Sciences",0.00000000 +"Chemical, Thermal Systems",0.00000000 +Chemistry,0.00000000 +"Computer and Computation Research",0.00000000 +"Design and Manufacturing Systems",0.00000000 +"Earth Sciences",0.00000000 +"Electrical and Communication Systems",0.00000000 +"Environmental Biology",0.00000000 +"Materials Research",0.00000000 +"Mathematical Sciences",0.00000000 +"Mechanical and Structural Systems",0.00000000 +"Microelectronic Information Processing Systems",0.00000000 +Physics,0.00000000 +"Polar Programs",0.00000000 +"Social and Economic Science",0.00000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/parentscience/avg_gpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/parentscience/avg_gpu_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..1f11e82745 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/parentscience/avg_gpu_hours/aggregate-Month-reference.csv @@ -0,0 +1,27 @@ +title +"GPU Hours: Per Job: by Department" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Department,"GPU Hours: Per Job" +"Molecular Biosciences",4.29587100 +Arts,0.00000000 +"Astronomical Sciences",0.00000000 +"Atmospheric Sciences",0.00000000 +"Chemical, Thermal Systems",0.00000000 +Chemistry,0.00000000 +"Computer and Computation Research",0.00000000 +"Design and Manufacturing Systems",0.00000000 +"Earth Sciences",0.00000000 +"Electrical and Communication Systems",0.00000000 +"Environmental Biology",0.00000000 +"Materials Research",0.00000000 +"Mathematical Sciences",0.00000000 +"Mechanical and Structural Systems",0.00000000 +"Microelectronic Information Processing Systems",0.00000000 +Physics,0.00000000 +"Polar Programs",0.00000000 +"Social and Economic Science",0.00000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/parentscience/avg_gpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/parentscience/avg_gpu_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..1f11e82745 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/parentscience/avg_gpu_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,27 @@ +title +"GPU Hours: Per Job: by Department" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Department,"GPU Hours: Per Job" +"Molecular Biosciences",4.29587100 +Arts,0.00000000 +"Astronomical Sciences",0.00000000 +"Atmospheric Sciences",0.00000000 +"Chemical, Thermal Systems",0.00000000 +Chemistry,0.00000000 +"Computer and Computation Research",0.00000000 +"Design and Manufacturing Systems",0.00000000 +"Earth Sciences",0.00000000 +"Electrical and Communication Systems",0.00000000 +"Environmental Biology",0.00000000 +"Materials Research",0.00000000 +"Mathematical Sciences",0.00000000 +"Mechanical and Structural Systems",0.00000000 +"Microelectronic Information Processing Systems",0.00000000 +Physics,0.00000000 +"Polar Programs",0.00000000 +"Social and Economic Science",0.00000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/parentscience/avg_gpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/parentscience/avg_gpu_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..1f11e82745 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/parentscience/avg_gpu_hours/aggregate-Year-reference.csv @@ -0,0 +1,27 @@ +title +"GPU Hours: Per Job: by Department" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Department,"GPU Hours: Per Job" +"Molecular Biosciences",4.29587100 +Arts,0.00000000 +"Astronomical Sciences",0.00000000 +"Atmospheric Sciences",0.00000000 +"Chemical, Thermal Systems",0.00000000 +Chemistry,0.00000000 +"Computer and Computation Research",0.00000000 +"Design and Manufacturing Systems",0.00000000 +"Earth Sciences",0.00000000 +"Electrical and Communication Systems",0.00000000 +"Environmental Biology",0.00000000 +"Materials Research",0.00000000 +"Mathematical Sciences",0.00000000 +"Mechanical and Structural Systems",0.00000000 +"Microelectronic Information Processing Systems",0.00000000 +Physics,0.00000000 +"Polar Programs",0.00000000 +"Social and Economic Science",0.00000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/parentscience/avg_gpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/parentscience/avg_gpu_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..9b76c8902b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/parentscience/avg_gpu_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"GPU Hours: Per Job: by Department" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[Molecular Biosciences] GPU Hours: Per Job","[Arts] GPU Hours: Per Job","[Astronomical Sciences] GPU Hours: Per Job","[Atmospheric Sciences] GPU Hours: Per Job","[Chemical, Thermal Systems] GPU Hours: Per Job","[Chemistry] GPU Hours: Per Job","[Computer and Computation Research] GPU Hours: Per Job","[Design and Manufacturing Systems] GPU Hours: Per Job","[Earth Sciences] GPU Hours: Per Job","[Electrical and Communication Systems] GPU Hours: Per Job","[Environmental Biology] GPU Hours: Per Job","[Materials Research] GPU Hours: Per Job","[Mathematical Sciences] GPU Hours: Per Job","[Mechanical and Structural Systems] GPU Hours: Per Job","[Microelectronic Information Processing Systems] GPU Hours: Per Job","[Physics] GPU Hours: Per Job","[Polar Programs] GPU Hours: Per Job","[Social and Economic Science] GPU Hours: Per Job" +2016-12-22,33.49277778,0,0,0,0,0.00000000,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-23,48.00000000,0,0.00000000,0,0,0.00000000,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-24,48.00000000,0,0.00000000,0,0,0.00000000,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-25,48.00000000,0,0.00000000,0,0,0.00000000,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-26,48.00000000,0,0.00000000,0,0,0.00000000,0,0,0,0,0,0,0.00000000,0,0,0,0,0 +2016-12-27,6.00000000,0,0.00000000,0,0,0.00000000,0,0,0,0.00000000,0,0.00000000,0.00000000,0,0,0,0,0.00000000 +2016-12-28,3.69230769,0,0.00000000,0,0,0.00000000,0,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0,0.00000000,0.00000000,0,0.00000000 +2016-12-29,0.73846154,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000 +2016-12-30,0.56470588,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000 +2016-12-31,2.18181818,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000 +2017-01-01,1.21823529,0.00000000,0.00000000,0.00000000,0,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/parentscience/avg_gpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/parentscience/avg_gpu_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..3aa4290c0f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/parentscience/avg_gpu_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Per Job: by Department" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[Molecular Biosciences] GPU Hours: Per Job","[Arts] GPU Hours: Per Job","[Astronomical Sciences] GPU Hours: Per Job","[Atmospheric Sciences] GPU Hours: Per Job","[Chemical, Thermal Systems] GPU Hours: Per Job","[Chemistry] GPU Hours: Per Job","[Computer and Computation Research] GPU Hours: Per Job","[Design and Manufacturing Systems] GPU Hours: Per Job","[Earth Sciences] GPU Hours: Per Job","[Electrical and Communication Systems] GPU Hours: Per Job","[Environmental Biology] GPU Hours: Per Job","[Materials Research] GPU Hours: Per Job","[Mathematical Sciences] GPU Hours: Per Job","[Mechanical and Structural Systems] GPU Hours: Per Job","[Microelectronic Information Processing Systems] GPU Hours: Per Job","[Physics] GPU Hours: Per Job","[Polar Programs] GPU Hours: Per Job","[Social and Economic Science] GPU Hours: Per Job" +2016-12,5.00529869,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000 +2017-01,1.21823529,0.00000000,0.00000000,0.00000000,0,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/parentscience/avg_gpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/parentscience/avg_gpu_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..74c9a62d72 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/parentscience/avg_gpu_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Per Job: by Department" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[Molecular Biosciences] GPU Hours: Per Job","[Arts] GPU Hours: Per Job","[Astronomical Sciences] GPU Hours: Per Job","[Atmospheric Sciences] GPU Hours: Per Job","[Chemical, Thermal Systems] GPU Hours: Per Job","[Chemistry] GPU Hours: Per Job","[Computer and Computation Research] GPU Hours: Per Job","[Design and Manufacturing Systems] GPU Hours: Per Job","[Earth Sciences] GPU Hours: Per Job","[Electrical and Communication Systems] GPU Hours: Per Job","[Environmental Biology] GPU Hours: Per Job","[Materials Research] GPU Hours: Per Job","[Mathematical Sciences] GPU Hours: Per Job","[Mechanical and Structural Systems] GPU Hours: Per Job","[Microelectronic Information Processing Systems] GPU Hours: Per Job","[Physics] GPU Hours: Per Job","[Polar Programs] GPU Hours: Per Job","[Social and Economic Science] GPU Hours: Per Job" +"2016 Q4",5.00529869,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000 +"2017 Q1",1.21823529,0.00000000,0.00000000,0.00000000,0,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/parentscience/avg_gpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/parentscience/avg_gpu_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..3ced5c691c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/parentscience/avg_gpu_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Per Job: by Department" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[Molecular Biosciences] GPU Hours: Per Job","[Arts] GPU Hours: Per Job","[Astronomical Sciences] GPU Hours: Per Job","[Atmospheric Sciences] GPU Hours: Per Job","[Chemical, Thermal Systems] GPU Hours: Per Job","[Chemistry] GPU Hours: Per Job","[Computer and Computation Research] GPU Hours: Per Job","[Design and Manufacturing Systems] GPU Hours: Per Job","[Earth Sciences] GPU Hours: Per Job","[Electrical and Communication Systems] GPU Hours: Per Job","[Environmental Biology] GPU Hours: Per Job","[Materials Research] GPU Hours: Per Job","[Mathematical Sciences] GPU Hours: Per Job","[Mechanical and Structural Systems] GPU Hours: Per Job","[Microelectronic Information Processing Systems] GPU Hours: Per Job","[Physics] GPU Hours: Per Job","[Polar Programs] GPU Hours: Per Job","[Social and Economic Science] GPU Hours: Per Job" +2016,5.00529869,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000 +2017,1.21823529,0.00000000,0.00000000,0.00000000,0,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/parentscience/avg_gpus/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/parentscience/avg_gpus/aggregate-Day-reference.csv new file mode 100644 index 0000000000..848a858eef --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/parentscience/avg_gpus/aggregate-Day-reference.csv @@ -0,0 +1,27 @@ +title +"GPU Count: Per Job: by Department" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Department,"GPU Count: Per Job","Std Dev: GPU Count: Per Job" +"Molecular Biosciences",0.0339,0.023765720058417587 +Arts,0.0000,0 +"Astronomical Sciences",0.0000,0 +"Atmospheric Sciences",0.0000,0 +"Chemical, Thermal Systems",0.0000,0 +Chemistry,0.0000,0 +"Computer and Computation Research",0.0000,0 +"Design and Manufacturing Systems",0.0000,0 +"Earth Sciences",0.0000,0 +"Electrical and Communication Systems",0.0000,0 +"Environmental Biology",0.0000,0 +"Materials Research",0.0000,0 +"Mathematical Sciences",0.0000,0 +"Mechanical and Structural Systems",0.0000,0 +"Microelectronic Information Processing Systems",0.0000,0 +Physics,0.0000,0 +"Polar Programs",0.0000,0 +"Social and Economic Science",0.0000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/parentscience/avg_gpus/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/parentscience/avg_gpus/aggregate-Month-reference.csv new file mode 100644 index 0000000000..848a858eef --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/parentscience/avg_gpus/aggregate-Month-reference.csv @@ -0,0 +1,27 @@ +title +"GPU Count: Per Job: by Department" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Department,"GPU Count: Per Job","Std Dev: GPU Count: Per Job" +"Molecular Biosciences",0.0339,0.023765720058417587 +Arts,0.0000,0 +"Astronomical Sciences",0.0000,0 +"Atmospheric Sciences",0.0000,0 +"Chemical, Thermal Systems",0.0000,0 +Chemistry,0.0000,0 +"Computer and Computation Research",0.0000,0 +"Design and Manufacturing Systems",0.0000,0 +"Earth Sciences",0.0000,0 +"Electrical and Communication Systems",0.0000,0 +"Environmental Biology",0.0000,0 +"Materials Research",0.0000,0 +"Mathematical Sciences",0.0000,0 +"Mechanical and Structural Systems",0.0000,0 +"Microelectronic Information Processing Systems",0.0000,0 +Physics,0.0000,0 +"Polar Programs",0.0000,0 +"Social and Economic Science",0.0000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/parentscience/avg_gpus/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/parentscience/avg_gpus/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..848a858eef --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/parentscience/avg_gpus/aggregate-Quarter-reference.csv @@ -0,0 +1,27 @@ +title +"GPU Count: Per Job: by Department" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Department,"GPU Count: Per Job","Std Dev: GPU Count: Per Job" +"Molecular Biosciences",0.0339,0.023765720058417587 +Arts,0.0000,0 +"Astronomical Sciences",0.0000,0 +"Atmospheric Sciences",0.0000,0 +"Chemical, Thermal Systems",0.0000,0 +Chemistry,0.0000,0 +"Computer and Computation Research",0.0000,0 +"Design and Manufacturing Systems",0.0000,0 +"Earth Sciences",0.0000,0 +"Electrical and Communication Systems",0.0000,0 +"Environmental Biology",0.0000,0 +"Materials Research",0.0000,0 +"Mathematical Sciences",0.0000,0 +"Mechanical and Structural Systems",0.0000,0 +"Microelectronic Information Processing Systems",0.0000,0 +Physics,0.0000,0 +"Polar Programs",0.0000,0 +"Social and Economic Science",0.0000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/parentscience/avg_gpus/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/parentscience/avg_gpus/aggregate-Year-reference.csv new file mode 100644 index 0000000000..848a858eef --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/parentscience/avg_gpus/aggregate-Year-reference.csv @@ -0,0 +1,27 @@ +title +"GPU Count: Per Job: by Department" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Department,"GPU Count: Per Job","Std Dev: GPU Count: Per Job" +"Molecular Biosciences",0.0339,0.023765720058417587 +Arts,0.0000,0 +"Astronomical Sciences",0.0000,0 +"Atmospheric Sciences",0.0000,0 +"Chemical, Thermal Systems",0.0000,0 +Chemistry,0.0000,0 +"Computer and Computation Research",0.0000,0 +"Design and Manufacturing Systems",0.0000,0 +"Earth Sciences",0.0000,0 +"Electrical and Communication Systems",0.0000,0 +"Environmental Biology",0.0000,0 +"Materials Research",0.0000,0 +"Mathematical Sciences",0.0000,0 +"Mechanical and Structural Systems",0.0000,0 +"Microelectronic Information Processing Systems",0.0000,0 +Physics,0.0000,0 +"Polar Programs",0.0000,0 +"Social and Economic Science",0.0000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/parentscience/avg_gpus/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/parentscience/avg_gpus/timeseries-Day-reference.csv new file mode 100644 index 0000000000..c857a095b0 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/parentscience/avg_gpus/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"GPU Count: Per Job: by Department" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[Molecular Biosciences] GPU Count: Per Job","[Arts] GPU Count: Per Job","[Astronomical Sciences] GPU Count: Per Job","[Atmospheric Sciences] GPU Count: Per Job","[Chemical, Thermal Systems] GPU Count: Per Job","[Chemistry] GPU Count: Per Job","[Computer and Computation Research] GPU Count: Per Job","[Design and Manufacturing Systems] GPU Count: Per Job","[Earth Sciences] GPU Count: Per Job","[Electrical and Communication Systems] GPU Count: Per Job","[Environmental Biology] GPU Count: Per Job","[Materials Research] GPU Count: Per Job","[Mathematical Sciences] GPU Count: Per Job","[Mechanical and Structural Systems] GPU Count: Per Job","[Microelectronic Information Processing Systems] GPU Count: Per Job","[Physics] GPU Count: Per Job","[Polar Programs] GPU Count: Per Job","[Social and Economic Science] GPU Count: Per Job" +2016-12-22,2.0000,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-23,2.0000,0,0.0000,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-24,2.0000,0,0.0000,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-25,2.0000,0,0.0000,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-26,2.0000,0,0.0000,0,0,0.0000,0,0,0,0,0,0,0.0000,0,0,0,0,0 +2016-12-27,0.2500,0,0.0000,0,0,0.0000,0,0,0,0.0000,0,0.0000,0.0000,0,0,0,0,0.0000 +2016-12-28,0.1538,0,0.0000,0,0,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0.0000,0.0000,0,0.0000 +2016-12-29,0.0308,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2016-12-30,0.0235,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2016-12-31,0.0909,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000 +2017-01-01,0.1176,0.0000,0.0000,0.0000,0,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/parentscience/avg_gpus/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/parentscience/avg_gpus/timeseries-Month-reference.csv new file mode 100644 index 0000000000..e77c58952e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/parentscience/avg_gpus/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Count: Per Job: by Department" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[Molecular Biosciences] GPU Count: Per Job","[Arts] GPU Count: Per Job","[Astronomical Sciences] GPU Count: Per Job","[Atmospheric Sciences] GPU Count: Per Job","[Chemical, Thermal Systems] GPU Count: Per Job","[Chemistry] GPU Count: Per Job","[Computer and Computation Research] GPU Count: Per Job","[Design and Manufacturing Systems] GPU Count: Per Job","[Earth Sciences] GPU Count: Per Job","[Electrical and Communication Systems] GPU Count: Per Job","[Environmental Biology] GPU Count: Per Job","[Materials Research] GPU Count: Per Job","[Mathematical Sciences] GPU Count: Per Job","[Mechanical and Structural Systems] GPU Count: Per Job","[Microelectronic Information Processing Systems] GPU Count: Per Job","[Physics] GPU Count: Per Job","[Polar Programs] GPU Count: Per Job","[Social and Economic Science] GPU Count: Per Job" +2016-12,0.0215,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2017-01,0.1176,0.0000,0.0000,0.0000,0,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/parentscience/avg_gpus/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/parentscience/avg_gpus/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..52ce68583a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/parentscience/avg_gpus/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Count: Per Job: by Department" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[Molecular Biosciences] GPU Count: Per Job","[Arts] GPU Count: Per Job","[Astronomical Sciences] GPU Count: Per Job","[Atmospheric Sciences] GPU Count: Per Job","[Chemical, Thermal Systems] GPU Count: Per Job","[Chemistry] GPU Count: Per Job","[Computer and Computation Research] GPU Count: Per Job","[Design and Manufacturing Systems] GPU Count: Per Job","[Earth Sciences] GPU Count: Per Job","[Electrical and Communication Systems] GPU Count: Per Job","[Environmental Biology] GPU Count: Per Job","[Materials Research] GPU Count: Per Job","[Mathematical Sciences] GPU Count: Per Job","[Mechanical and Structural Systems] GPU Count: Per Job","[Microelectronic Information Processing Systems] GPU Count: Per Job","[Physics] GPU Count: Per Job","[Polar Programs] GPU Count: Per Job","[Social and Economic Science] GPU Count: Per Job" +"2016 Q4",0.0215,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +"2017 Q1",0.1176,0.0000,0.0000,0.0000,0,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/parentscience/avg_gpus/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/parentscience/avg_gpus/timeseries-Year-reference.csv new file mode 100644 index 0000000000..0a73cb0dc5 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/parentscience/avg_gpus/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Count: Per Job: by Department" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[Molecular Biosciences] GPU Count: Per Job","[Arts] GPU Count: Per Job","[Astronomical Sciences] GPU Count: Per Job","[Atmospheric Sciences] GPU Count: Per Job","[Chemical, Thermal Systems] GPU Count: Per Job","[Chemistry] GPU Count: Per Job","[Computer and Computation Research] GPU Count: Per Job","[Design and Manufacturing Systems] GPU Count: Per Job","[Earth Sciences] GPU Count: Per Job","[Electrical and Communication Systems] GPU Count: Per Job","[Environmental Biology] GPU Count: Per Job","[Materials Research] GPU Count: Per Job","[Mathematical Sciences] GPU Count: Per Job","[Mechanical and Structural Systems] GPU Count: Per Job","[Microelectronic Information Processing Systems] GPU Count: Per Job","[Physics] GPU Count: Per Job","[Polar Programs] GPU Count: Per Job","[Social and Economic Science] GPU Count: Per Job" +2016,0.0215,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2017,0.1176,0.0000,0.0000,0.0000,0,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/parentscience/avg_job_size_weighted_by_gpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/parentscience/avg_job_size_weighted_by_gpu_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..e02c6167cf --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/parentscience/avg_job_size_weighted_by_gpu_hours/aggregate-Day-reference.csv @@ -0,0 +1,27 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by Department" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Department,"Job Size: Weighted By GPU Hours (GPU Count)" +"Molecular Biosciences",12.0000 +Arts,0.0000 +"Astronomical Sciences",0.0000 +"Atmospheric Sciences",0.0000 +"Chemical, Thermal Systems",0.0000 +Chemistry,0.0000 +"Computer and Computation Research",0.0000 +"Design and Manufacturing Systems",0.0000 +"Earth Sciences",0.0000 +"Electrical and Communication Systems",0.0000 +"Environmental Biology",0.0000 +"Materials Research",0.0000 +"Mathematical Sciences",0.0000 +"Mechanical and Structural Systems",0.0000 +"Microelectronic Information Processing Systems",0.0000 +Physics,0.0000 +"Polar Programs",0.0000 +"Social and Economic Science",0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/parentscience/avg_job_size_weighted_by_gpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/parentscience/avg_job_size_weighted_by_gpu_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..e02c6167cf --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/parentscience/avg_job_size_weighted_by_gpu_hours/aggregate-Month-reference.csv @@ -0,0 +1,27 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by Department" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Department,"Job Size: Weighted By GPU Hours (GPU Count)" +"Molecular Biosciences",12.0000 +Arts,0.0000 +"Astronomical Sciences",0.0000 +"Atmospheric Sciences",0.0000 +"Chemical, Thermal Systems",0.0000 +Chemistry,0.0000 +"Computer and Computation Research",0.0000 +"Design and Manufacturing Systems",0.0000 +"Earth Sciences",0.0000 +"Electrical and Communication Systems",0.0000 +"Environmental Biology",0.0000 +"Materials Research",0.0000 +"Mathematical Sciences",0.0000 +"Mechanical and Structural Systems",0.0000 +"Microelectronic Information Processing Systems",0.0000 +Physics,0.0000 +"Polar Programs",0.0000 +"Social and Economic Science",0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/parentscience/avg_job_size_weighted_by_gpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/parentscience/avg_job_size_weighted_by_gpu_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..e02c6167cf --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/parentscience/avg_job_size_weighted_by_gpu_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,27 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by Department" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Department,"Job Size: Weighted By GPU Hours (GPU Count)" +"Molecular Biosciences",12.0000 +Arts,0.0000 +"Astronomical Sciences",0.0000 +"Atmospheric Sciences",0.0000 +"Chemical, Thermal Systems",0.0000 +Chemistry,0.0000 +"Computer and Computation Research",0.0000 +"Design and Manufacturing Systems",0.0000 +"Earth Sciences",0.0000 +"Electrical and Communication Systems",0.0000 +"Environmental Biology",0.0000 +"Materials Research",0.0000 +"Mathematical Sciences",0.0000 +"Mechanical and Structural Systems",0.0000 +"Microelectronic Information Processing Systems",0.0000 +Physics,0.0000 +"Polar Programs",0.0000 +"Social and Economic Science",0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/parentscience/avg_job_size_weighted_by_gpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/parentscience/avg_job_size_weighted_by_gpu_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..e02c6167cf --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/parentscience/avg_job_size_weighted_by_gpu_hours/aggregate-Year-reference.csv @@ -0,0 +1,27 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by Department" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Department,"Job Size: Weighted By GPU Hours (GPU Count)" +"Molecular Biosciences",12.0000 +Arts,0.0000 +"Astronomical Sciences",0.0000 +"Atmospheric Sciences",0.0000 +"Chemical, Thermal Systems",0.0000 +Chemistry,0.0000 +"Computer and Computation Research",0.0000 +"Design and Manufacturing Systems",0.0000 +"Earth Sciences",0.0000 +"Electrical and Communication Systems",0.0000 +"Environmental Biology",0.0000 +"Materials Research",0.0000 +"Mathematical Sciences",0.0000 +"Mechanical and Structural Systems",0.0000 +"Microelectronic Information Processing Systems",0.0000 +Physics,0.0000 +"Polar Programs",0.0000 +"Social and Economic Science",0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/parentscience/avg_job_size_weighted_by_gpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/parentscience/avg_job_size_weighted_by_gpu_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..91d6b102b4 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/parentscience/avg_job_size_weighted_by_gpu_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by Department" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[Molecular Biosciences] Job Size: Weighted By GPU Hours (GPU Count)","[Arts] Job Size: Weighted By GPU Hours (GPU Count)","[Astronomical Sciences] Job Size: Weighted By GPU Hours (GPU Count)","[Atmospheric Sciences] Job Size: Weighted By GPU Hours (GPU Count)","[Chemical, Thermal Systems] Job Size: Weighted By GPU Hours (GPU Count)","[Chemistry] Job Size: Weighted By GPU Hours (GPU Count)","[Computer and Computation Research] Job Size: Weighted By GPU Hours (GPU Count)","[Design and Manufacturing Systems] Job Size: Weighted By GPU Hours (GPU Count)","[Earth Sciences] Job Size: Weighted By GPU Hours (GPU Count)","[Electrical and Communication Systems] Job Size: Weighted By GPU Hours (GPU Count)","[Environmental Biology] Job Size: Weighted By GPU Hours (GPU Count)","[Materials Research] Job Size: Weighted By GPU Hours (GPU Count)","[Mathematical Sciences] Job Size: Weighted By GPU Hours (GPU Count)","[Mechanical and Structural Systems] Job Size: Weighted By GPU Hours (GPU Count)","[Microelectronic Information Processing Systems] Job Size: Weighted By GPU Hours (GPU Count)","[Physics] Job Size: Weighted By GPU Hours (GPU Count)","[Polar Programs] Job Size: Weighted By GPU Hours (GPU Count)","[Social and Economic Science] Job Size: Weighted By GPU Hours (GPU Count)" +2016-12-22,12.0000,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-23,12.0000,0,0.0000,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-24,12.0000,0,0.0000,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-25,12.0000,0,0.0000,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-26,12.0000,0,0.0000,0,0,0.0000,0,0,0,0,0,0,0.0000,0,0,0,0,0 +2016-12-27,12.0000,0,0.0000,0,0,0.0000,0,0,0,0.0000,0,0.0000,0.0000,0,0,0,0,0.0000 +2016-12-28,12.0000,0,0.0000,0,0,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0.0000,0.0000,0,0.0000 +2016-12-29,12.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2016-12-30,12.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2016-12-31,12.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000 +2017-01-01,12.0000,0.0000,0.0000,0.0000,0,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/parentscience/avg_job_size_weighted_by_gpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/parentscience/avg_job_size_weighted_by_gpu_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..fe408b10ce --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/parentscience/avg_job_size_weighted_by_gpu_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by Department" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[Molecular Biosciences] Job Size: Weighted By GPU Hours (GPU Count)","[Arts] Job Size: Weighted By GPU Hours (GPU Count)","[Astronomical Sciences] Job Size: Weighted By GPU Hours (GPU Count)","[Atmospheric Sciences] Job Size: Weighted By GPU Hours (GPU Count)","[Chemical, Thermal Systems] Job Size: Weighted By GPU Hours (GPU Count)","[Chemistry] Job Size: Weighted By GPU Hours (GPU Count)","[Computer and Computation Research] Job Size: Weighted By GPU Hours (GPU Count)","[Design and Manufacturing Systems] Job Size: Weighted By GPU Hours (GPU Count)","[Earth Sciences] Job Size: Weighted By GPU Hours (GPU Count)","[Electrical and Communication Systems] Job Size: Weighted By GPU Hours (GPU Count)","[Environmental Biology] Job Size: Weighted By GPU Hours (GPU Count)","[Materials Research] Job Size: Weighted By GPU Hours (GPU Count)","[Mathematical Sciences] Job Size: Weighted By GPU Hours (GPU Count)","[Mechanical and Structural Systems] Job Size: Weighted By GPU Hours (GPU Count)","[Microelectronic Information Processing Systems] Job Size: Weighted By GPU Hours (GPU Count)","[Physics] Job Size: Weighted By GPU Hours (GPU Count)","[Polar Programs] Job Size: Weighted By GPU Hours (GPU Count)","[Social and Economic Science] Job Size: Weighted By GPU Hours (GPU Count)" +2016-12,12.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2017-01,12.0000,0.0000,0.0000,0.0000,0,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/parentscience/avg_job_size_weighted_by_gpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/parentscience/avg_job_size_weighted_by_gpu_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..74da5e79d2 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/parentscience/avg_job_size_weighted_by_gpu_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by Department" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[Molecular Biosciences] Job Size: Weighted By GPU Hours (GPU Count)","[Arts] Job Size: Weighted By GPU Hours (GPU Count)","[Astronomical Sciences] Job Size: Weighted By GPU Hours (GPU Count)","[Atmospheric Sciences] Job Size: Weighted By GPU Hours (GPU Count)","[Chemical, Thermal Systems] Job Size: Weighted By GPU Hours (GPU Count)","[Chemistry] Job Size: Weighted By GPU Hours (GPU Count)","[Computer and Computation Research] Job Size: Weighted By GPU Hours (GPU Count)","[Design and Manufacturing Systems] Job Size: Weighted By GPU Hours (GPU Count)","[Earth Sciences] Job Size: Weighted By GPU Hours (GPU Count)","[Electrical and Communication Systems] Job Size: Weighted By GPU Hours (GPU Count)","[Environmental Biology] Job Size: Weighted By GPU Hours (GPU Count)","[Materials Research] Job Size: Weighted By GPU Hours (GPU Count)","[Mathematical Sciences] Job Size: Weighted By GPU Hours (GPU Count)","[Mechanical and Structural Systems] Job Size: Weighted By GPU Hours (GPU Count)","[Microelectronic Information Processing Systems] Job Size: Weighted By GPU Hours (GPU Count)","[Physics] Job Size: Weighted By GPU Hours (GPU Count)","[Polar Programs] Job Size: Weighted By GPU Hours (GPU Count)","[Social and Economic Science] Job Size: Weighted By GPU Hours (GPU Count)" +"2016 Q4",12.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +"2017 Q1",12.0000,0.0000,0.0000,0.0000,0,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/parentscience/avg_job_size_weighted_by_gpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/parentscience/avg_job_size_weighted_by_gpu_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..83c979fb0b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/parentscience/avg_job_size_weighted_by_gpu_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by Department" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[Molecular Biosciences] Job Size: Weighted By GPU Hours (GPU Count)","[Arts] Job Size: Weighted By GPU Hours (GPU Count)","[Astronomical Sciences] Job Size: Weighted By GPU Hours (GPU Count)","[Atmospheric Sciences] Job Size: Weighted By GPU Hours (GPU Count)","[Chemical, Thermal Systems] Job Size: Weighted By GPU Hours (GPU Count)","[Chemistry] Job Size: Weighted By GPU Hours (GPU Count)","[Computer and Computation Research] Job Size: Weighted By GPU Hours (GPU Count)","[Design and Manufacturing Systems] Job Size: Weighted By GPU Hours (GPU Count)","[Earth Sciences] Job Size: Weighted By GPU Hours (GPU Count)","[Electrical and Communication Systems] Job Size: Weighted By GPU Hours (GPU Count)","[Environmental Biology] Job Size: Weighted By GPU Hours (GPU Count)","[Materials Research] Job Size: Weighted By GPU Hours (GPU Count)","[Mathematical Sciences] Job Size: Weighted By GPU Hours (GPU Count)","[Mechanical and Structural Systems] Job Size: Weighted By GPU Hours (GPU Count)","[Microelectronic Information Processing Systems] Job Size: Weighted By GPU Hours (GPU Count)","[Physics] Job Size: Weighted By GPU Hours (GPU Count)","[Polar Programs] Job Size: Weighted By GPU Hours (GPU Count)","[Social and Economic Science] Job Size: Weighted By GPU Hours (GPU Count)" +2016,12.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2017,12.0000,0.0000,0.0000,0.0000,0,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/parentscience/total_gpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/parentscience/total_gpu_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..8d316ab7a6 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/parentscience/total_gpu_hours/aggregate-Day-reference.csv @@ -0,0 +1,27 @@ +title +"GPU Hours: Total: by Department" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Department,"GPU Hours: Total" +"Molecular Biosciences",506.9128 +Arts,0.0000 +"Astronomical Sciences",0.0000 +"Atmospheric Sciences",0.0000 +"Chemical, Thermal Systems",0.0000 +Chemistry,0.0000 +"Computer and Computation Research",0.0000 +"Design and Manufacturing Systems",0.0000 +"Earth Sciences",0.0000 +"Electrical and Communication Systems",0.0000 +"Environmental Biology",0.0000 +"Materials Research",0.0000 +"Mathematical Sciences",0.0000 +"Mechanical and Structural Systems",0.0000 +"Microelectronic Information Processing Systems",0.0000 +Physics,0.0000 +"Polar Programs",0.0000 +"Social and Economic Science",0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/parentscience/total_gpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/parentscience/total_gpu_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..8d316ab7a6 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/parentscience/total_gpu_hours/aggregate-Month-reference.csv @@ -0,0 +1,27 @@ +title +"GPU Hours: Total: by Department" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Department,"GPU Hours: Total" +"Molecular Biosciences",506.9128 +Arts,0.0000 +"Astronomical Sciences",0.0000 +"Atmospheric Sciences",0.0000 +"Chemical, Thermal Systems",0.0000 +Chemistry,0.0000 +"Computer and Computation Research",0.0000 +"Design and Manufacturing Systems",0.0000 +"Earth Sciences",0.0000 +"Electrical and Communication Systems",0.0000 +"Environmental Biology",0.0000 +"Materials Research",0.0000 +"Mathematical Sciences",0.0000 +"Mechanical and Structural Systems",0.0000 +"Microelectronic Information Processing Systems",0.0000 +Physics,0.0000 +"Polar Programs",0.0000 +"Social and Economic Science",0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/parentscience/total_gpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/parentscience/total_gpu_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..8d316ab7a6 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/parentscience/total_gpu_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,27 @@ +title +"GPU Hours: Total: by Department" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Department,"GPU Hours: Total" +"Molecular Biosciences",506.9128 +Arts,0.0000 +"Astronomical Sciences",0.0000 +"Atmospheric Sciences",0.0000 +"Chemical, Thermal Systems",0.0000 +Chemistry,0.0000 +"Computer and Computation Research",0.0000 +"Design and Manufacturing Systems",0.0000 +"Earth Sciences",0.0000 +"Electrical and Communication Systems",0.0000 +"Environmental Biology",0.0000 +"Materials Research",0.0000 +"Mathematical Sciences",0.0000 +"Mechanical and Structural Systems",0.0000 +"Microelectronic Information Processing Systems",0.0000 +Physics,0.0000 +"Polar Programs",0.0000 +"Social and Economic Science",0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/parentscience/total_gpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/parentscience/total_gpu_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..8d316ab7a6 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/parentscience/total_gpu_hours/aggregate-Year-reference.csv @@ -0,0 +1,27 @@ +title +"GPU Hours: Total: by Department" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Department,"GPU Hours: Total" +"Molecular Biosciences",506.9128 +Arts,0.0000 +"Astronomical Sciences",0.0000 +"Atmospheric Sciences",0.0000 +"Chemical, Thermal Systems",0.0000 +Chemistry,0.0000 +"Computer and Computation Research",0.0000 +"Design and Manufacturing Systems",0.0000 +"Earth Sciences",0.0000 +"Electrical and Communication Systems",0.0000 +"Environmental Biology",0.0000 +"Materials Research",0.0000 +"Mathematical Sciences",0.0000 +"Mechanical and Structural Systems",0.0000 +"Microelectronic Information Processing Systems",0.0000 +Physics,0.0000 +"Polar Programs",0.0000 +"Social and Economic Science",0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/parentscience/total_gpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/parentscience/total_gpu_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..7bca8f21ad --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/parentscience/total_gpu_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"GPU Hours: Total: by Department" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[Molecular Biosciences] GPU Hours: Total","[Arts] GPU Hours: Total","[Astronomical Sciences] GPU Hours: Total","[Atmospheric Sciences] GPU Hours: Total","[Chemical, Thermal Systems] GPU Hours: Total","[Chemistry] GPU Hours: Total","[Computer and Computation Research] GPU Hours: Total","[Design and Manufacturing Systems] GPU Hours: Total","[Earth Sciences] GPU Hours: Total","[Electrical and Communication Systems] GPU Hours: Total","[Environmental Biology] GPU Hours: Total","[Materials Research] GPU Hours: Total","[Mathematical Sciences] GPU Hours: Total","[Mechanical and Structural Systems] GPU Hours: Total","[Microelectronic Information Processing Systems] GPU Hours: Total","[Physics] GPU Hours: Total","[Polar Programs] GPU Hours: Total","[Social and Economic Science] GPU Hours: Total" +2016-12-22,33.4928,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-23,48.0000,0,0.0000,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-24,48.0000,0,0.0000,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-25,48.0000,0,0.0000,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-26,48.0000,0,0.0000,0,0,0.0000,0,0,0,0,0,0,0.0000,0,0,0,0,0 +2016-12-27,48.0000,0,0.0000,0,0,0.0000,0,0,0,0.0000,0,0.0000,0.0000,0,0,0,0,0.0000 +2016-12-28,48.0000,0,0.0000,0,0,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0.0000,0.0000,0,0.0000 +2016-12-29,48.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2016-12-30,48.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2016-12-31,48.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000 +2017-01-01,41.4200,0.0000,0.0000,0.0000,0,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/parentscience/total_gpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/parentscience/total_gpu_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..5178b00241 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/parentscience/total_gpu_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Total: by Department" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[Molecular Biosciences] GPU Hours: Total","[Arts] GPU Hours: Total","[Astronomical Sciences] GPU Hours: Total","[Atmospheric Sciences] GPU Hours: Total","[Chemical, Thermal Systems] GPU Hours: Total","[Chemistry] GPU Hours: Total","[Computer and Computation Research] GPU Hours: Total","[Design and Manufacturing Systems] GPU Hours: Total","[Earth Sciences] GPU Hours: Total","[Electrical and Communication Systems] GPU Hours: Total","[Environmental Biology] GPU Hours: Total","[Materials Research] GPU Hours: Total","[Mathematical Sciences] GPU Hours: Total","[Mechanical and Structural Systems] GPU Hours: Total","[Microelectronic Information Processing Systems] GPU Hours: Total","[Physics] GPU Hours: Total","[Polar Programs] GPU Hours: Total","[Social and Economic Science] GPU Hours: Total" +2016-12,465.4928,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2017-01,41.4200,0.0000,0.0000,0.0000,0,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/parentscience/total_gpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/parentscience/total_gpu_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..26b34dbc6c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/parentscience/total_gpu_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Total: by Department" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[Molecular Biosciences] GPU Hours: Total","[Arts] GPU Hours: Total","[Astronomical Sciences] GPU Hours: Total","[Atmospheric Sciences] GPU Hours: Total","[Chemical, Thermal Systems] GPU Hours: Total","[Chemistry] GPU Hours: Total","[Computer and Computation Research] GPU Hours: Total","[Design and Manufacturing Systems] GPU Hours: Total","[Earth Sciences] GPU Hours: Total","[Electrical and Communication Systems] GPU Hours: Total","[Environmental Biology] GPU Hours: Total","[Materials Research] GPU Hours: Total","[Mathematical Sciences] GPU Hours: Total","[Mechanical and Structural Systems] GPU Hours: Total","[Microelectronic Information Processing Systems] GPU Hours: Total","[Physics] GPU Hours: Total","[Polar Programs] GPU Hours: Total","[Social and Economic Science] GPU Hours: Total" +"2016 Q4",465.4928,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +"2017 Q1",41.4200,0.0000,0.0000,0.0000,0,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/parentscience/total_gpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/parentscience/total_gpu_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..333811d0e0 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/parentscience/total_gpu_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Total: by Department" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[Molecular Biosciences] GPU Hours: Total","[Arts] GPU Hours: Total","[Astronomical Sciences] GPU Hours: Total","[Atmospheric Sciences] GPU Hours: Total","[Chemical, Thermal Systems] GPU Hours: Total","[Chemistry] GPU Hours: Total","[Computer and Computation Research] GPU Hours: Total","[Design and Manufacturing Systems] GPU Hours: Total","[Earth Sciences] GPU Hours: Total","[Electrical and Communication Systems] GPU Hours: Total","[Environmental Biology] GPU Hours: Total","[Materials Research] GPU Hours: Total","[Mathematical Sciences] GPU Hours: Total","[Mechanical and Structural Systems] GPU Hours: Total","[Microelectronic Information Processing Systems] GPU Hours: Total","[Physics] GPU Hours: Total","[Polar Programs] GPU Hours: Total","[Social and Economic Science] GPU Hours: Total" +2016,465.4928,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2017,41.4200,0.0000,0.0000,0.0000,0,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/person/avg_gpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/person/avg_gpu_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..fde886ddc5 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/person/avg_gpu_hours/aggregate-Day-reference.csv @@ -0,0 +1,75 @@ +title +"GPU Hours: Per Job: by User" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +User,"GPU Hours: Per Job" +"Oriole, Baltimore",16.89709259 +"Auk, Little",0.00000000 +"Bunting, Black-headed",0.00000000 +"Bunting, Reed",0.00000000 +"Bunting, Yellow-breasted",0.00000000 +"Bunting, Yellow-browed",0.00000000 +Chaffinch,0.00000000 +Coot,0.00000000 +Crane,0.00000000 +"Crane, Sandhill",0.00000000 +"Dove, Turtle",0.00000000 +"Duck, Ferruginous",0.00000000 +Dunlin,0.00000000 +"Egret, Cattle",0.00000000 +Fieldfare,0.00000000 +"Gallinule, Allen's",0.00000000 +"Goose, Egyptian",0.00000000 +"Grebe, Pied-billed",0.00000000 +"Grey, Great",0.00000000 +"Grey, Lesser",0.00000000 +"Grey, Southern",0.00000000 +"Grosbeak, Evening",0.00000000 +"Gull, Ring-billed",0.00000000 +"Harrier, Hen",0.00000000 +Honey-buzzard,0.00000000 +"Ibis, Glossy",0.00000000 +Jackdaw,0.00000000 +Lapwing,0.00000000 +"Martin, Crag",0.00000000 +"Martin, Purple",0.00000000 +Moorhen,0.00000000 +Ovenbird,0.00000000 +"Partridge, Red-legged",0.00000000 +Peregrine,0.00000000 +"Pipit, Meadow",0.00000000 +"Plover, Caspian",0.00000000 +"Plover, White-tailed",0.00000000 +"Redpoll, Lesser",0.00000000 +Roller,0.00000000 +"Sandpiper, Spotted",0.00000000 +"Sapsucker, Yellow-bellied",0.00000000 +"Scaup, Lesser",0.00000000 +"Scoter, Velvet",0.00000000 +Shag,0.00000000 +"Shearwater, Cory's",0.00000000 +"Shrike, Long-tailed",0.00000000 +Siskin,0.00000000 +Smew,0.00000000 +"Sparrow, Savannah",0.00000000 +"Sparrow, White-throated",0.00000000 +"Stint, Little",0.00000000 +"Swift, Alpine",0.00000000 +"Tern, Sandwich",0.00000000 +"Thrush, Grey-cheeked",0.00000000 +"Thrush, Mistle",0.00000000 +"Thrush, Swainson's",0.00000000 +"Treecreeper, Short-toed",0.00000000 +"Warbler, Booted",0.00000000 +"Warbler, Dusky",0.00000000 +"Warbler, Garden",0.00000000 +"Warbler, Golden-winged",0.00000000 +"Warbler, Hooded",0.00000000 +"Warbler, Moltoni's",0.00000000 +"Warbler, Sardinian",0.00000000 +"Warbler, Yellow-browed",0.00000000 +Whimbrel,0.00000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/person/avg_gpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/person/avg_gpu_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..fde886ddc5 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/person/avg_gpu_hours/aggregate-Month-reference.csv @@ -0,0 +1,75 @@ +title +"GPU Hours: Per Job: by User" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +User,"GPU Hours: Per Job" +"Oriole, Baltimore",16.89709259 +"Auk, Little",0.00000000 +"Bunting, Black-headed",0.00000000 +"Bunting, Reed",0.00000000 +"Bunting, Yellow-breasted",0.00000000 +"Bunting, Yellow-browed",0.00000000 +Chaffinch,0.00000000 +Coot,0.00000000 +Crane,0.00000000 +"Crane, Sandhill",0.00000000 +"Dove, Turtle",0.00000000 +"Duck, Ferruginous",0.00000000 +Dunlin,0.00000000 +"Egret, Cattle",0.00000000 +Fieldfare,0.00000000 +"Gallinule, Allen's",0.00000000 +"Goose, Egyptian",0.00000000 +"Grebe, Pied-billed",0.00000000 +"Grey, Great",0.00000000 +"Grey, Lesser",0.00000000 +"Grey, Southern",0.00000000 +"Grosbeak, Evening",0.00000000 +"Gull, Ring-billed",0.00000000 +"Harrier, Hen",0.00000000 +Honey-buzzard,0.00000000 +"Ibis, Glossy",0.00000000 +Jackdaw,0.00000000 +Lapwing,0.00000000 +"Martin, Crag",0.00000000 +"Martin, Purple",0.00000000 +Moorhen,0.00000000 +Ovenbird,0.00000000 +"Partridge, Red-legged",0.00000000 +Peregrine,0.00000000 +"Pipit, Meadow",0.00000000 +"Plover, Caspian",0.00000000 +"Plover, White-tailed",0.00000000 +"Redpoll, Lesser",0.00000000 +Roller,0.00000000 +"Sandpiper, Spotted",0.00000000 +"Sapsucker, Yellow-bellied",0.00000000 +"Scaup, Lesser",0.00000000 +"Scoter, Velvet",0.00000000 +Shag,0.00000000 +"Shearwater, Cory's",0.00000000 +"Shrike, Long-tailed",0.00000000 +Siskin,0.00000000 +Smew,0.00000000 +"Sparrow, Savannah",0.00000000 +"Sparrow, White-throated",0.00000000 +"Stint, Little",0.00000000 +"Swift, Alpine",0.00000000 +"Tern, Sandwich",0.00000000 +"Thrush, Grey-cheeked",0.00000000 +"Thrush, Mistle",0.00000000 +"Thrush, Swainson's",0.00000000 +"Treecreeper, Short-toed",0.00000000 +"Warbler, Booted",0.00000000 +"Warbler, Dusky",0.00000000 +"Warbler, Garden",0.00000000 +"Warbler, Golden-winged",0.00000000 +"Warbler, Hooded",0.00000000 +"Warbler, Moltoni's",0.00000000 +"Warbler, Sardinian",0.00000000 +"Warbler, Yellow-browed",0.00000000 +Whimbrel,0.00000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/person/avg_gpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/person/avg_gpu_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..fde886ddc5 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/person/avg_gpu_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,75 @@ +title +"GPU Hours: Per Job: by User" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +User,"GPU Hours: Per Job" +"Oriole, Baltimore",16.89709259 +"Auk, Little",0.00000000 +"Bunting, Black-headed",0.00000000 +"Bunting, Reed",0.00000000 +"Bunting, Yellow-breasted",0.00000000 +"Bunting, Yellow-browed",0.00000000 +Chaffinch,0.00000000 +Coot,0.00000000 +Crane,0.00000000 +"Crane, Sandhill",0.00000000 +"Dove, Turtle",0.00000000 +"Duck, Ferruginous",0.00000000 +Dunlin,0.00000000 +"Egret, Cattle",0.00000000 +Fieldfare,0.00000000 +"Gallinule, Allen's",0.00000000 +"Goose, Egyptian",0.00000000 +"Grebe, Pied-billed",0.00000000 +"Grey, Great",0.00000000 +"Grey, Lesser",0.00000000 +"Grey, Southern",0.00000000 +"Grosbeak, Evening",0.00000000 +"Gull, Ring-billed",0.00000000 +"Harrier, Hen",0.00000000 +Honey-buzzard,0.00000000 +"Ibis, Glossy",0.00000000 +Jackdaw,0.00000000 +Lapwing,0.00000000 +"Martin, Crag",0.00000000 +"Martin, Purple",0.00000000 +Moorhen,0.00000000 +Ovenbird,0.00000000 +"Partridge, Red-legged",0.00000000 +Peregrine,0.00000000 +"Pipit, Meadow",0.00000000 +"Plover, Caspian",0.00000000 +"Plover, White-tailed",0.00000000 +"Redpoll, Lesser",0.00000000 +Roller,0.00000000 +"Sandpiper, Spotted",0.00000000 +"Sapsucker, Yellow-bellied",0.00000000 +"Scaup, Lesser",0.00000000 +"Scoter, Velvet",0.00000000 +Shag,0.00000000 +"Shearwater, Cory's",0.00000000 +"Shrike, Long-tailed",0.00000000 +Siskin,0.00000000 +Smew,0.00000000 +"Sparrow, Savannah",0.00000000 +"Sparrow, White-throated",0.00000000 +"Stint, Little",0.00000000 +"Swift, Alpine",0.00000000 +"Tern, Sandwich",0.00000000 +"Thrush, Grey-cheeked",0.00000000 +"Thrush, Mistle",0.00000000 +"Thrush, Swainson's",0.00000000 +"Treecreeper, Short-toed",0.00000000 +"Warbler, Booted",0.00000000 +"Warbler, Dusky",0.00000000 +"Warbler, Garden",0.00000000 +"Warbler, Golden-winged",0.00000000 +"Warbler, Hooded",0.00000000 +"Warbler, Moltoni's",0.00000000 +"Warbler, Sardinian",0.00000000 +"Warbler, Yellow-browed",0.00000000 +Whimbrel,0.00000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/person/avg_gpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/person/avg_gpu_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..fde886ddc5 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/person/avg_gpu_hours/aggregate-Year-reference.csv @@ -0,0 +1,75 @@ +title +"GPU Hours: Per Job: by User" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +User,"GPU Hours: Per Job" +"Oriole, Baltimore",16.89709259 +"Auk, Little",0.00000000 +"Bunting, Black-headed",0.00000000 +"Bunting, Reed",0.00000000 +"Bunting, Yellow-breasted",0.00000000 +"Bunting, Yellow-browed",0.00000000 +Chaffinch,0.00000000 +Coot,0.00000000 +Crane,0.00000000 +"Crane, Sandhill",0.00000000 +"Dove, Turtle",0.00000000 +"Duck, Ferruginous",0.00000000 +Dunlin,0.00000000 +"Egret, Cattle",0.00000000 +Fieldfare,0.00000000 +"Gallinule, Allen's",0.00000000 +"Goose, Egyptian",0.00000000 +"Grebe, Pied-billed",0.00000000 +"Grey, Great",0.00000000 +"Grey, Lesser",0.00000000 +"Grey, Southern",0.00000000 +"Grosbeak, Evening",0.00000000 +"Gull, Ring-billed",0.00000000 +"Harrier, Hen",0.00000000 +Honey-buzzard,0.00000000 +"Ibis, Glossy",0.00000000 +Jackdaw,0.00000000 +Lapwing,0.00000000 +"Martin, Crag",0.00000000 +"Martin, Purple",0.00000000 +Moorhen,0.00000000 +Ovenbird,0.00000000 +"Partridge, Red-legged",0.00000000 +Peregrine,0.00000000 +"Pipit, Meadow",0.00000000 +"Plover, Caspian",0.00000000 +"Plover, White-tailed",0.00000000 +"Redpoll, Lesser",0.00000000 +Roller,0.00000000 +"Sandpiper, Spotted",0.00000000 +"Sapsucker, Yellow-bellied",0.00000000 +"Scaup, Lesser",0.00000000 +"Scoter, Velvet",0.00000000 +Shag,0.00000000 +"Shearwater, Cory's",0.00000000 +"Shrike, Long-tailed",0.00000000 +Siskin,0.00000000 +Smew,0.00000000 +"Sparrow, Savannah",0.00000000 +"Sparrow, White-throated",0.00000000 +"Stint, Little",0.00000000 +"Swift, Alpine",0.00000000 +"Tern, Sandwich",0.00000000 +"Thrush, Grey-cheeked",0.00000000 +"Thrush, Mistle",0.00000000 +"Thrush, Swainson's",0.00000000 +"Treecreeper, Short-toed",0.00000000 +"Warbler, Booted",0.00000000 +"Warbler, Dusky",0.00000000 +"Warbler, Garden",0.00000000 +"Warbler, Golden-winged",0.00000000 +"Warbler, Hooded",0.00000000 +"Warbler, Moltoni's",0.00000000 +"Warbler, Sardinian",0.00000000 +"Warbler, Yellow-browed",0.00000000 +Whimbrel,0.00000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/person/avg_gpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/person/avg_gpu_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..dec7ab4864 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/person/avg_gpu_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"GPU Hours: Per Job: by User" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[Oriole, Baltimore] GPU Hours: Per Job","[Auk, Little] GPU Hours: Per Job","[Bunting, Black-headed] GPU Hours: Per Job","[Bunting, Reed] GPU Hours: Per Job","[Bunting, Yellow-breasted] GPU Hours: Per Job","[Bunting, Yellow-browed] GPU Hours: Per Job","[Chaffinch] GPU Hours: Per Job","[Coot] GPU Hours: Per Job","[Crane] GPU Hours: Per Job","[Crane, Sandhill] GPU Hours: Per Job","[Dove, Turtle] GPU Hours: Per Job","[Duck, Ferruginous] GPU Hours: Per Job","[Dunlin] GPU Hours: Per Job","[Egret, Cattle] GPU Hours: Per Job","[Fieldfare] GPU Hours: Per Job","[Gallinule, Allen's] GPU Hours: Per Job","[Goose, Egyptian] GPU Hours: Per Job","[Grebe, Pied-billed] GPU Hours: Per Job","[Grey, Great] GPU Hours: Per Job","[Grey, Lesser] GPU Hours: Per Job","[Grey, Southern] GPU Hours: Per Job","[Grosbeak, Evening] GPU Hours: Per Job","[Gull, Ring-billed] GPU Hours: Per Job","[Harrier, Hen] GPU Hours: Per Job","[Honey-buzzard] GPU Hours: Per Job","[Ibis, Glossy] GPU Hours: Per Job","[Jackdaw] GPU Hours: Per Job","[Lapwing] GPU Hours: Per Job","[Martin, Crag] GPU Hours: Per Job","[Martin, Purple] GPU Hours: Per Job","[Moorhen] GPU Hours: Per Job","[Ovenbird] GPU Hours: Per Job","[Partridge, Red-legged] GPU Hours: Per Job","[Peregrine] GPU Hours: Per Job","[Pipit, Meadow] GPU Hours: Per Job","[Plover, Caspian] GPU Hours: Per Job","[Plover, White-tailed] GPU Hours: Per Job","[Redpoll, Lesser] GPU Hours: Per Job","[Roller] GPU Hours: Per Job","[Sandpiper, Spotted] GPU Hours: Per Job","[Sapsucker, Yellow-bellied] GPU Hours: Per Job","[Scaup, Lesser] GPU Hours: Per Job","[Scoter, Velvet] GPU Hours: Per Job","[Shag] GPU Hours: Per Job","[Shearwater, Cory's] GPU Hours: Per Job","[Shrike, Long-tailed] GPU Hours: Per Job","[Siskin] GPU Hours: Per Job","[Smew] GPU Hours: Per Job","[Sparrow, Savannah] GPU Hours: Per Job","[Sparrow, White-throated] GPU Hours: Per Job","[Stint, Little] GPU Hours: Per Job","[Swift, Alpine] GPU Hours: Per Job","[Tern, Sandwich] GPU Hours: Per Job","[Thrush, Grey-cheeked] GPU Hours: Per Job","[Thrush, Mistle] GPU Hours: Per Job","[Thrush, Swainson's] GPU Hours: Per Job","[Treecreeper, Short-toed] GPU Hours: Per Job","[Warbler, Booted] GPU Hours: Per Job","[Warbler, Dusky] GPU Hours: Per Job","[Warbler, Garden] GPU Hours: Per Job","[Warbler, Golden-winged] GPU Hours: Per Job","[Warbler, Hooded] GPU Hours: Per Job","[Warbler, Moltoni's] GPU Hours: Per Job","[Warbler, Sardinian] GPU Hours: Per Job","[Warbler, Yellow-browed] GPU Hours: Per Job","[Whimbrel] GPU Hours: Per Job" +2016-12-22,33.49277778,0,0,0,0,0,0,0,0,0,0.00000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-23,48.00000000,0,0,0,0,0,0,0,0,0,0.00000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00000000,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-24,48.00000000,0,0,0,0,0,0,0,0,0,0.00000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00000000,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-25,48.00000000,0,0,0.00000000,0,0,0,0,0,0,0.00000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00000000,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-26,48.00000000,0,0,0.00000000,0,0,0,0,0,0,0.00000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00000000,0,0,0,0,0,0,0.00000000,0,0,0,0,0,0 +2016-12-27,48.00000000,0,0,0.00000000,0.00000000,0,0.00000000,0,0,0.00000000,0.00000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00000000,0,0,0,0,0,0,0.00000000,0,0,0.00000000,0,0,0,0,0,0,0,0.00000000,0,0,0,0.00000000,0,0,0,0,0,0.00000000,0,0,0,0.00000000,0.00000000,0,0.00000000,0,0,0.00000000,0,0,0 +2016-12-28,48.00000000,0,0,0.00000000,0.00000000,0,0.00000000,0,0,0.00000000,0.00000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00000000,0.00000000,0,0.00000000,0,0,0.00000000,0.00000000,0,0,0.00000000,0,0.00000000,0,0,0,0,0.00000000,0.00000000,0.00000000,0,0,0.00000000,0,0,0,0,0,0.00000000,0,0.00000000,0,0.00000000,0.00000000,0,0.00000000,0,0.00000000,0.00000000,0.00000000,0,0 +2016-12-29,48.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0,0,0,0,0.00000000,0.00000000,0,0,0,0.00000000,0,0.00000000,0.00000000,0.00000000,0,0.00000000,0,0,0.00000000,0.00000000,0,0.00000000,0.00000000,0,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0,0,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0 +2016-12-30,48.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000 +2016-12-31,9.60000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0,0.00000000 +2017-01-01,1.59307692,0.00000000,0,0.00000000,0,0,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0,0,0,0,0.00000000,0,0,0,0.00000000,0,0,0.00000000,0,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0,0,0.00000000,0.00000000,0.00000000,0,0,0.00000000,0.00000000,0,0.00000000,0,0.00000000,0.00000000,0,0.00000000,0,0,0.00000000,0.00000000,0,0,0.00000000,0.00000000,0.00000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/person/avg_gpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/person/avg_gpu_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..ced4fdb804 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/person/avg_gpu_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Per Job: by User" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[Oriole, Baltimore] GPU Hours: Per Job","[Auk, Little] GPU Hours: Per Job","[Bunting, Black-headed] GPU Hours: Per Job","[Bunting, Reed] GPU Hours: Per Job","[Bunting, Yellow-breasted] GPU Hours: Per Job","[Bunting, Yellow-browed] GPU Hours: Per Job","[Chaffinch] GPU Hours: Per Job","[Coot] GPU Hours: Per Job","[Crane] GPU Hours: Per Job","[Crane, Sandhill] GPU Hours: Per Job","[Dove, Turtle] GPU Hours: Per Job","[Duck, Ferruginous] GPU Hours: Per Job","[Dunlin] GPU Hours: Per Job","[Egret, Cattle] GPU Hours: Per Job","[Fieldfare] GPU Hours: Per Job","[Gallinule, Allen's] GPU Hours: Per Job","[Goose, Egyptian] GPU Hours: Per Job","[Grebe, Pied-billed] GPU Hours: Per Job","[Grey, Great] GPU Hours: Per Job","[Grey, Lesser] GPU Hours: Per Job","[Grey, Southern] GPU Hours: Per Job","[Grosbeak, Evening] GPU Hours: Per Job","[Gull, Ring-billed] GPU Hours: Per Job","[Harrier, Hen] GPU Hours: Per Job","[Honey-buzzard] GPU Hours: Per Job","[Ibis, Glossy] GPU Hours: Per Job","[Jackdaw] GPU Hours: Per Job","[Lapwing] GPU Hours: Per Job","[Martin, Crag] GPU Hours: Per Job","[Martin, Purple] GPU Hours: Per Job","[Moorhen] GPU Hours: Per Job","[Ovenbird] GPU Hours: Per Job","[Partridge, Red-legged] GPU Hours: Per Job","[Peregrine] GPU Hours: Per Job","[Pipit, Meadow] GPU Hours: Per Job","[Plover, Caspian] GPU Hours: Per Job","[Plover, White-tailed] GPU Hours: Per Job","[Redpoll, Lesser] GPU Hours: Per Job","[Roller] GPU Hours: Per Job","[Sandpiper, Spotted] GPU Hours: Per Job","[Sapsucker, Yellow-bellied] GPU Hours: Per Job","[Scaup, Lesser] GPU Hours: Per Job","[Scoter, Velvet] GPU Hours: Per Job","[Shag] GPU Hours: Per Job","[Shearwater, Cory's] GPU Hours: Per Job","[Shrike, Long-tailed] GPU Hours: Per Job","[Siskin] GPU Hours: Per Job","[Smew] GPU Hours: Per Job","[Sparrow, Savannah] GPU Hours: Per Job","[Sparrow, White-throated] GPU Hours: Per Job","[Stint, Little] GPU Hours: Per Job","[Swift, Alpine] GPU Hours: Per Job","[Tern, Sandwich] GPU Hours: Per Job","[Thrush, Grey-cheeked] GPU Hours: Per Job","[Thrush, Mistle] GPU Hours: Per Job","[Thrush, Swainson's] GPU Hours: Per Job","[Treecreeper, Short-toed] GPU Hours: Per Job","[Warbler, Booted] GPU Hours: Per Job","[Warbler, Dusky] GPU Hours: Per Job","[Warbler, Garden] GPU Hours: Per Job","[Warbler, Golden-winged] GPU Hours: Per Job","[Warbler, Hooded] GPU Hours: Per Job","[Warbler, Moltoni's] GPU Hours: Per Job","[Warbler, Sardinian] GPU Hours: Per Job","[Warbler, Yellow-browed] GPU Hours: Per Job","[Whimbrel] GPU Hours: Per Job" +2016-12,93.09855556,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000 +2017-01,1.59307692,0.00000000,0,0.00000000,0,0,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0,0,0,0,0.00000000,0,0,0,0.00000000,0,0,0.00000000,0,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0,0,0.00000000,0.00000000,0.00000000,0,0,0.00000000,0.00000000,0,0.00000000,0,0.00000000,0.00000000,0,0.00000000,0,0,0.00000000,0.00000000,0,0,0.00000000,0.00000000,0.00000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/person/avg_gpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/person/avg_gpu_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..dd49037a3c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/person/avg_gpu_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Per Job: by User" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[Oriole, Baltimore] GPU Hours: Per Job","[Auk, Little] GPU Hours: Per Job","[Bunting, Black-headed] GPU Hours: Per Job","[Bunting, Reed] GPU Hours: Per Job","[Bunting, Yellow-breasted] GPU Hours: Per Job","[Bunting, Yellow-browed] GPU Hours: Per Job","[Chaffinch] GPU Hours: Per Job","[Coot] GPU Hours: Per Job","[Crane] GPU Hours: Per Job","[Crane, Sandhill] GPU Hours: Per Job","[Dove, Turtle] GPU Hours: Per Job","[Duck, Ferruginous] GPU Hours: Per Job","[Dunlin] GPU Hours: Per Job","[Egret, Cattle] GPU Hours: Per Job","[Fieldfare] GPU Hours: Per Job","[Gallinule, Allen's] GPU Hours: Per Job","[Goose, Egyptian] GPU Hours: Per Job","[Grebe, Pied-billed] GPU Hours: Per Job","[Grey, Great] GPU Hours: Per Job","[Grey, Lesser] GPU Hours: Per Job","[Grey, Southern] GPU Hours: Per Job","[Grosbeak, Evening] GPU Hours: Per Job","[Gull, Ring-billed] GPU Hours: Per Job","[Harrier, Hen] GPU Hours: Per Job","[Honey-buzzard] GPU Hours: Per Job","[Ibis, Glossy] GPU Hours: Per Job","[Jackdaw] GPU Hours: Per Job","[Lapwing] GPU Hours: Per Job","[Martin, Crag] GPU Hours: Per Job","[Martin, Purple] GPU Hours: Per Job","[Moorhen] GPU Hours: Per Job","[Ovenbird] GPU Hours: Per Job","[Partridge, Red-legged] GPU Hours: Per Job","[Peregrine] GPU Hours: Per Job","[Pipit, Meadow] GPU Hours: Per Job","[Plover, Caspian] GPU Hours: Per Job","[Plover, White-tailed] GPU Hours: Per Job","[Redpoll, Lesser] GPU Hours: Per Job","[Roller] GPU Hours: Per Job","[Sandpiper, Spotted] GPU Hours: Per Job","[Sapsucker, Yellow-bellied] GPU Hours: Per Job","[Scaup, Lesser] GPU Hours: Per Job","[Scoter, Velvet] GPU Hours: Per Job","[Shag] GPU Hours: Per Job","[Shearwater, Cory's] GPU Hours: Per Job","[Shrike, Long-tailed] GPU Hours: Per Job","[Siskin] GPU Hours: Per Job","[Smew] GPU Hours: Per Job","[Sparrow, Savannah] GPU Hours: Per Job","[Sparrow, White-throated] GPU Hours: Per Job","[Stint, Little] GPU Hours: Per Job","[Swift, Alpine] GPU Hours: Per Job","[Tern, Sandwich] GPU Hours: Per Job","[Thrush, Grey-cheeked] GPU Hours: Per Job","[Thrush, Mistle] GPU Hours: Per Job","[Thrush, Swainson's] GPU Hours: Per Job","[Treecreeper, Short-toed] GPU Hours: Per Job","[Warbler, Booted] GPU Hours: Per Job","[Warbler, Dusky] GPU Hours: Per Job","[Warbler, Garden] GPU Hours: Per Job","[Warbler, Golden-winged] GPU Hours: Per Job","[Warbler, Hooded] GPU Hours: Per Job","[Warbler, Moltoni's] GPU Hours: Per Job","[Warbler, Sardinian] GPU Hours: Per Job","[Warbler, Yellow-browed] GPU Hours: Per Job","[Whimbrel] GPU Hours: Per Job" +"2016 Q4",93.09855556,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000 +"2017 Q1",1.59307692,0.00000000,0,0.00000000,0,0,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0,0,0,0,0.00000000,0,0,0,0.00000000,0,0,0.00000000,0,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0,0,0.00000000,0.00000000,0.00000000,0,0,0.00000000,0.00000000,0,0.00000000,0,0.00000000,0.00000000,0,0.00000000,0,0,0.00000000,0.00000000,0,0,0.00000000,0.00000000,0.00000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/person/avg_gpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/person/avg_gpu_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..b4f55273ab --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/person/avg_gpu_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Per Job: by User" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[Oriole, Baltimore] GPU Hours: Per Job","[Auk, Little] GPU Hours: Per Job","[Bunting, Black-headed] GPU Hours: Per Job","[Bunting, Reed] GPU Hours: Per Job","[Bunting, Yellow-breasted] GPU Hours: Per Job","[Bunting, Yellow-browed] GPU Hours: Per Job","[Chaffinch] GPU Hours: Per Job","[Coot] GPU Hours: Per Job","[Crane] GPU Hours: Per Job","[Crane, Sandhill] GPU Hours: Per Job","[Dove, Turtle] GPU Hours: Per Job","[Duck, Ferruginous] GPU Hours: Per Job","[Dunlin] GPU Hours: Per Job","[Egret, Cattle] GPU Hours: Per Job","[Fieldfare] GPU Hours: Per Job","[Gallinule, Allen's] GPU Hours: Per Job","[Goose, Egyptian] GPU Hours: Per Job","[Grebe, Pied-billed] GPU Hours: Per Job","[Grey, Great] GPU Hours: Per Job","[Grey, Lesser] GPU Hours: Per Job","[Grey, Southern] GPU Hours: Per Job","[Grosbeak, Evening] GPU Hours: Per Job","[Gull, Ring-billed] GPU Hours: Per Job","[Harrier, Hen] GPU Hours: Per Job","[Honey-buzzard] GPU Hours: Per Job","[Ibis, Glossy] GPU Hours: Per Job","[Jackdaw] GPU Hours: Per Job","[Lapwing] GPU Hours: Per Job","[Martin, Crag] GPU Hours: Per Job","[Martin, Purple] GPU Hours: Per Job","[Moorhen] GPU Hours: Per Job","[Ovenbird] GPU Hours: Per Job","[Partridge, Red-legged] GPU Hours: Per Job","[Peregrine] GPU Hours: Per Job","[Pipit, Meadow] GPU Hours: Per Job","[Plover, Caspian] GPU Hours: Per Job","[Plover, White-tailed] GPU Hours: Per Job","[Redpoll, Lesser] GPU Hours: Per Job","[Roller] GPU Hours: Per Job","[Sandpiper, Spotted] GPU Hours: Per Job","[Sapsucker, Yellow-bellied] GPU Hours: Per Job","[Scaup, Lesser] GPU Hours: Per Job","[Scoter, Velvet] GPU Hours: Per Job","[Shag] GPU Hours: Per Job","[Shearwater, Cory's] GPU Hours: Per Job","[Shrike, Long-tailed] GPU Hours: Per Job","[Siskin] GPU Hours: Per Job","[Smew] GPU Hours: Per Job","[Sparrow, Savannah] GPU Hours: Per Job","[Sparrow, White-throated] GPU Hours: Per Job","[Stint, Little] GPU Hours: Per Job","[Swift, Alpine] GPU Hours: Per Job","[Tern, Sandwich] GPU Hours: Per Job","[Thrush, Grey-cheeked] GPU Hours: Per Job","[Thrush, Mistle] GPU Hours: Per Job","[Thrush, Swainson's] GPU Hours: Per Job","[Treecreeper, Short-toed] GPU Hours: Per Job","[Warbler, Booted] GPU Hours: Per Job","[Warbler, Dusky] GPU Hours: Per Job","[Warbler, Garden] GPU Hours: Per Job","[Warbler, Golden-winged] GPU Hours: Per Job","[Warbler, Hooded] GPU Hours: Per Job","[Warbler, Moltoni's] GPU Hours: Per Job","[Warbler, Sardinian] GPU Hours: Per Job","[Warbler, Yellow-browed] GPU Hours: Per Job","[Whimbrel] GPU Hours: Per Job" +2016,93.09855556,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000 +2017,1.59307692,0.00000000,0,0.00000000,0,0,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0,0,0,0,0.00000000,0,0,0,0.00000000,0,0,0.00000000,0,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0,0,0.00000000,0.00000000,0.00000000,0,0,0.00000000,0.00000000,0,0.00000000,0,0.00000000,0.00000000,0,0.00000000,0,0,0.00000000,0.00000000,0,0,0.00000000,0.00000000,0.00000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/person/avg_gpus/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/person/avg_gpus/aggregate-Day-reference.csv new file mode 100644 index 0000000000..50b9435dea --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/person/avg_gpus/aggregate-Day-reference.csv @@ -0,0 +1,75 @@ +title +"GPU Count: Per Job: by User" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +User,"GPU Count: Per Job","Std Dev: GPU Count: Per Job" +"Oriole, Baltimore",0.1333,0.09108400682479477 +"Auk, Little",0.0000,0 +"Bunting, Black-headed",0.0000,0 +"Bunting, Reed",0.0000,0 +"Bunting, Yellow-breasted",0.0000,0 +"Bunting, Yellow-browed",0.0000,0 +Chaffinch,0.0000,0 +Coot,0.0000,0 +Crane,0.0000,0 +"Crane, Sandhill",0.0000,0 +"Dove, Turtle",0.0000,0 +"Duck, Ferruginous",0.0000,0 +Dunlin,0.0000,0 +"Egret, Cattle",0.0000,0 +Fieldfare,0.0000,0 +"Gallinule, Allen's",0.0000,0 +"Goose, Egyptian",0.0000,0 +"Grebe, Pied-billed",0.0000,0 +"Grey, Great",0.0000,0 +"Grey, Lesser",0.0000,0 +"Grey, Southern",0.0000,0 +"Grosbeak, Evening",0.0000,0 +"Gull, Ring-billed",0.0000,0 +"Harrier, Hen",0.0000,0 +Honey-buzzard,0.0000,0 +"Ibis, Glossy",0.0000,0 +Jackdaw,0.0000,0 +Lapwing,0.0000,0 +"Martin, Crag",0.0000,0 +"Martin, Purple",0.0000,0 +Moorhen,0.0000,0 +Ovenbird,0.0000,0 +"Partridge, Red-legged",0.0000,0 +Peregrine,0.0000,0 +"Pipit, Meadow",0.0000,0 +"Plover, Caspian",0.0000,0 +"Plover, White-tailed",0.0000,0 +"Redpoll, Lesser",0.0000,0 +Roller,0.0000,0 +"Sandpiper, Spotted",0.0000,0 +"Sapsucker, Yellow-bellied",0.0000,0 +"Scaup, Lesser",0.0000,0 +"Scoter, Velvet",0.0000,0 +Shag,0.0000,0 +"Shearwater, Cory's",0.0000,0 +"Shrike, Long-tailed",0.0000,0 +Siskin,0.0000,0 +Smew,0.0000,0 +"Sparrow, Savannah",0.0000,0 +"Sparrow, White-throated",0.0000,0 +"Stint, Little",0.0000,0 +"Swift, Alpine",0.0000,0 +"Tern, Sandwich",0.0000,0 +"Thrush, Grey-cheeked",0.0000,0 +"Thrush, Mistle",0.0000,0 +"Thrush, Swainson's",0.0000,0 +"Treecreeper, Short-toed",0.0000,0 +"Warbler, Booted",0.0000,0 +"Warbler, Dusky",0.0000,0 +"Warbler, Garden",0.0000,0 +"Warbler, Golden-winged",0.0000,0 +"Warbler, Hooded",0.0000,0 +"Warbler, Moltoni's",0.0000,0 +"Warbler, Sardinian",0.0000,0 +"Warbler, Yellow-browed",0.0000,0 +Whimbrel,0.0000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/person/avg_gpus/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/person/avg_gpus/aggregate-Month-reference.csv new file mode 100644 index 0000000000..50b9435dea --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/person/avg_gpus/aggregate-Month-reference.csv @@ -0,0 +1,75 @@ +title +"GPU Count: Per Job: by User" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +User,"GPU Count: Per Job","Std Dev: GPU Count: Per Job" +"Oriole, Baltimore",0.1333,0.09108400682479477 +"Auk, Little",0.0000,0 +"Bunting, Black-headed",0.0000,0 +"Bunting, Reed",0.0000,0 +"Bunting, Yellow-breasted",0.0000,0 +"Bunting, Yellow-browed",0.0000,0 +Chaffinch,0.0000,0 +Coot,0.0000,0 +Crane,0.0000,0 +"Crane, Sandhill",0.0000,0 +"Dove, Turtle",0.0000,0 +"Duck, Ferruginous",0.0000,0 +Dunlin,0.0000,0 +"Egret, Cattle",0.0000,0 +Fieldfare,0.0000,0 +"Gallinule, Allen's",0.0000,0 +"Goose, Egyptian",0.0000,0 +"Grebe, Pied-billed",0.0000,0 +"Grey, Great",0.0000,0 +"Grey, Lesser",0.0000,0 +"Grey, Southern",0.0000,0 +"Grosbeak, Evening",0.0000,0 +"Gull, Ring-billed",0.0000,0 +"Harrier, Hen",0.0000,0 +Honey-buzzard,0.0000,0 +"Ibis, Glossy",0.0000,0 +Jackdaw,0.0000,0 +Lapwing,0.0000,0 +"Martin, Crag",0.0000,0 +"Martin, Purple",0.0000,0 +Moorhen,0.0000,0 +Ovenbird,0.0000,0 +"Partridge, Red-legged",0.0000,0 +Peregrine,0.0000,0 +"Pipit, Meadow",0.0000,0 +"Plover, Caspian",0.0000,0 +"Plover, White-tailed",0.0000,0 +"Redpoll, Lesser",0.0000,0 +Roller,0.0000,0 +"Sandpiper, Spotted",0.0000,0 +"Sapsucker, Yellow-bellied",0.0000,0 +"Scaup, Lesser",0.0000,0 +"Scoter, Velvet",0.0000,0 +Shag,0.0000,0 +"Shearwater, Cory's",0.0000,0 +"Shrike, Long-tailed",0.0000,0 +Siskin,0.0000,0 +Smew,0.0000,0 +"Sparrow, Savannah",0.0000,0 +"Sparrow, White-throated",0.0000,0 +"Stint, Little",0.0000,0 +"Swift, Alpine",0.0000,0 +"Tern, Sandwich",0.0000,0 +"Thrush, Grey-cheeked",0.0000,0 +"Thrush, Mistle",0.0000,0 +"Thrush, Swainson's",0.0000,0 +"Treecreeper, Short-toed",0.0000,0 +"Warbler, Booted",0.0000,0 +"Warbler, Dusky",0.0000,0 +"Warbler, Garden",0.0000,0 +"Warbler, Golden-winged",0.0000,0 +"Warbler, Hooded",0.0000,0 +"Warbler, Moltoni's",0.0000,0 +"Warbler, Sardinian",0.0000,0 +"Warbler, Yellow-browed",0.0000,0 +Whimbrel,0.0000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/person/avg_gpus/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/person/avg_gpus/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..50b9435dea --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/person/avg_gpus/aggregate-Quarter-reference.csv @@ -0,0 +1,75 @@ +title +"GPU Count: Per Job: by User" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +User,"GPU Count: Per Job","Std Dev: GPU Count: Per Job" +"Oriole, Baltimore",0.1333,0.09108400682479477 +"Auk, Little",0.0000,0 +"Bunting, Black-headed",0.0000,0 +"Bunting, Reed",0.0000,0 +"Bunting, Yellow-breasted",0.0000,0 +"Bunting, Yellow-browed",0.0000,0 +Chaffinch,0.0000,0 +Coot,0.0000,0 +Crane,0.0000,0 +"Crane, Sandhill",0.0000,0 +"Dove, Turtle",0.0000,0 +"Duck, Ferruginous",0.0000,0 +Dunlin,0.0000,0 +"Egret, Cattle",0.0000,0 +Fieldfare,0.0000,0 +"Gallinule, Allen's",0.0000,0 +"Goose, Egyptian",0.0000,0 +"Grebe, Pied-billed",0.0000,0 +"Grey, Great",0.0000,0 +"Grey, Lesser",0.0000,0 +"Grey, Southern",0.0000,0 +"Grosbeak, Evening",0.0000,0 +"Gull, Ring-billed",0.0000,0 +"Harrier, Hen",0.0000,0 +Honey-buzzard,0.0000,0 +"Ibis, Glossy",0.0000,0 +Jackdaw,0.0000,0 +Lapwing,0.0000,0 +"Martin, Crag",0.0000,0 +"Martin, Purple",0.0000,0 +Moorhen,0.0000,0 +Ovenbird,0.0000,0 +"Partridge, Red-legged",0.0000,0 +Peregrine,0.0000,0 +"Pipit, Meadow",0.0000,0 +"Plover, Caspian",0.0000,0 +"Plover, White-tailed",0.0000,0 +"Redpoll, Lesser",0.0000,0 +Roller,0.0000,0 +"Sandpiper, Spotted",0.0000,0 +"Sapsucker, Yellow-bellied",0.0000,0 +"Scaup, Lesser",0.0000,0 +"Scoter, Velvet",0.0000,0 +Shag,0.0000,0 +"Shearwater, Cory's",0.0000,0 +"Shrike, Long-tailed",0.0000,0 +Siskin,0.0000,0 +Smew,0.0000,0 +"Sparrow, Savannah",0.0000,0 +"Sparrow, White-throated",0.0000,0 +"Stint, Little",0.0000,0 +"Swift, Alpine",0.0000,0 +"Tern, Sandwich",0.0000,0 +"Thrush, Grey-cheeked",0.0000,0 +"Thrush, Mistle",0.0000,0 +"Thrush, Swainson's",0.0000,0 +"Treecreeper, Short-toed",0.0000,0 +"Warbler, Booted",0.0000,0 +"Warbler, Dusky",0.0000,0 +"Warbler, Garden",0.0000,0 +"Warbler, Golden-winged",0.0000,0 +"Warbler, Hooded",0.0000,0 +"Warbler, Moltoni's",0.0000,0 +"Warbler, Sardinian",0.0000,0 +"Warbler, Yellow-browed",0.0000,0 +Whimbrel,0.0000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/person/avg_gpus/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/person/avg_gpus/aggregate-Year-reference.csv new file mode 100644 index 0000000000..50b9435dea --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/person/avg_gpus/aggregate-Year-reference.csv @@ -0,0 +1,75 @@ +title +"GPU Count: Per Job: by User" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +User,"GPU Count: Per Job","Std Dev: GPU Count: Per Job" +"Oriole, Baltimore",0.1333,0.09108400682479477 +"Auk, Little",0.0000,0 +"Bunting, Black-headed",0.0000,0 +"Bunting, Reed",0.0000,0 +"Bunting, Yellow-breasted",0.0000,0 +"Bunting, Yellow-browed",0.0000,0 +Chaffinch,0.0000,0 +Coot,0.0000,0 +Crane,0.0000,0 +"Crane, Sandhill",0.0000,0 +"Dove, Turtle",0.0000,0 +"Duck, Ferruginous",0.0000,0 +Dunlin,0.0000,0 +"Egret, Cattle",0.0000,0 +Fieldfare,0.0000,0 +"Gallinule, Allen's",0.0000,0 +"Goose, Egyptian",0.0000,0 +"Grebe, Pied-billed",0.0000,0 +"Grey, Great",0.0000,0 +"Grey, Lesser",0.0000,0 +"Grey, Southern",0.0000,0 +"Grosbeak, Evening",0.0000,0 +"Gull, Ring-billed",0.0000,0 +"Harrier, Hen",0.0000,0 +Honey-buzzard,0.0000,0 +"Ibis, Glossy",0.0000,0 +Jackdaw,0.0000,0 +Lapwing,0.0000,0 +"Martin, Crag",0.0000,0 +"Martin, Purple",0.0000,0 +Moorhen,0.0000,0 +Ovenbird,0.0000,0 +"Partridge, Red-legged",0.0000,0 +Peregrine,0.0000,0 +"Pipit, Meadow",0.0000,0 +"Plover, Caspian",0.0000,0 +"Plover, White-tailed",0.0000,0 +"Redpoll, Lesser",0.0000,0 +Roller,0.0000,0 +"Sandpiper, Spotted",0.0000,0 +"Sapsucker, Yellow-bellied",0.0000,0 +"Scaup, Lesser",0.0000,0 +"Scoter, Velvet",0.0000,0 +Shag,0.0000,0 +"Shearwater, Cory's",0.0000,0 +"Shrike, Long-tailed",0.0000,0 +Siskin,0.0000,0 +Smew,0.0000,0 +"Sparrow, Savannah",0.0000,0 +"Sparrow, White-throated",0.0000,0 +"Stint, Little",0.0000,0 +"Swift, Alpine",0.0000,0 +"Tern, Sandwich",0.0000,0 +"Thrush, Grey-cheeked",0.0000,0 +"Thrush, Mistle",0.0000,0 +"Thrush, Swainson's",0.0000,0 +"Treecreeper, Short-toed",0.0000,0 +"Warbler, Booted",0.0000,0 +"Warbler, Dusky",0.0000,0 +"Warbler, Garden",0.0000,0 +"Warbler, Golden-winged",0.0000,0 +"Warbler, Hooded",0.0000,0 +"Warbler, Moltoni's",0.0000,0 +"Warbler, Sardinian",0.0000,0 +"Warbler, Yellow-browed",0.0000,0 +Whimbrel,0.0000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/person/avg_gpus/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/person/avg_gpus/timeseries-Day-reference.csv new file mode 100644 index 0000000000..905ec08d0f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/person/avg_gpus/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"GPU Count: Per Job: by User" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[Oriole, Baltimore] GPU Count: Per Job","[Auk, Little] GPU Count: Per Job","[Bunting, Black-headed] GPU Count: Per Job","[Bunting, Reed] GPU Count: Per Job","[Bunting, Yellow-breasted] GPU Count: Per Job","[Bunting, Yellow-browed] GPU Count: Per Job","[Chaffinch] GPU Count: Per Job","[Coot] GPU Count: Per Job","[Crane] GPU Count: Per Job","[Crane, Sandhill] GPU Count: Per Job","[Dove, Turtle] GPU Count: Per Job","[Duck, Ferruginous] GPU Count: Per Job","[Dunlin] GPU Count: Per Job","[Egret, Cattle] GPU Count: Per Job","[Fieldfare] GPU Count: Per Job","[Gallinule, Allen's] GPU Count: Per Job","[Goose, Egyptian] GPU Count: Per Job","[Grebe, Pied-billed] GPU Count: Per Job","[Grey, Great] GPU Count: Per Job","[Grey, Lesser] GPU Count: Per Job","[Grey, Southern] GPU Count: Per Job","[Grosbeak, Evening] GPU Count: Per Job","[Gull, Ring-billed] GPU Count: Per Job","[Harrier, Hen] GPU Count: Per Job","[Honey-buzzard] GPU Count: Per Job","[Ibis, Glossy] GPU Count: Per Job","[Jackdaw] GPU Count: Per Job","[Lapwing] GPU Count: Per Job","[Martin, Crag] GPU Count: Per Job","[Martin, Purple] GPU Count: Per Job","[Moorhen] GPU Count: Per Job","[Ovenbird] GPU Count: Per Job","[Partridge, Red-legged] GPU Count: Per Job","[Peregrine] GPU Count: Per Job","[Pipit, Meadow] GPU Count: Per Job","[Plover, Caspian] GPU Count: Per Job","[Plover, White-tailed] GPU Count: Per Job","[Redpoll, Lesser] GPU Count: Per Job","[Roller] GPU Count: Per Job","[Sandpiper, Spotted] GPU Count: Per Job","[Sapsucker, Yellow-bellied] GPU Count: Per Job","[Scaup, Lesser] GPU Count: Per Job","[Scoter, Velvet] GPU Count: Per Job","[Shag] GPU Count: Per Job","[Shearwater, Cory's] GPU Count: Per Job","[Shrike, Long-tailed] GPU Count: Per Job","[Siskin] GPU Count: Per Job","[Smew] GPU Count: Per Job","[Sparrow, Savannah] GPU Count: Per Job","[Sparrow, White-throated] GPU Count: Per Job","[Stint, Little] GPU Count: Per Job","[Swift, Alpine] GPU Count: Per Job","[Tern, Sandwich] GPU Count: Per Job","[Thrush, Grey-cheeked] GPU Count: Per Job","[Thrush, Mistle] GPU Count: Per Job","[Thrush, Swainson's] GPU Count: Per Job","[Treecreeper, Short-toed] GPU Count: Per Job","[Warbler, Booted] GPU Count: Per Job","[Warbler, Dusky] GPU Count: Per Job","[Warbler, Garden] GPU Count: Per Job","[Warbler, Golden-winged] GPU Count: Per Job","[Warbler, Hooded] GPU Count: Per Job","[Warbler, Moltoni's] GPU Count: Per Job","[Warbler, Sardinian] GPU Count: Per Job","[Warbler, Yellow-browed] GPU Count: Per Job","[Whimbrel] GPU Count: Per Job" +2016-12-22,2.0000,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-23,2.0000,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-24,2.0000,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-25,2.0000,0,0,0.0000,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-26,2.0000,0,0,0.0000,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0.0000,0,0,0,0,0,0 +2016-12-27,2.0000,0,0,0.0000,0.0000,0,0.0000,0,0,0.0000,0.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0.0000,0,0,0.0000,0,0,0,0,0,0,0,0.0000,0,0,0,0.0000,0,0,0,0,0,0.0000,0,0,0,0.0000,0.0000,0,0.0000,0,0,0.0000,0,0,0 +2016-12-28,2.0000,0,0,0.0000,0.0000,0,0.0000,0,0,0.0000,0.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0.0000,0,0.0000,0,0,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,0.0000,0.0000,0.0000,0,0,0.0000,0,0,0,0,0,0.0000,0,0.0000,0,0.0000,0.0000,0,0.0000,0,0.0000,0.0000,0.0000,0,0 +2016-12-29,2.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0,0,0,0.0000,0.0000,0,0,0,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0,0,0.0000,0.0000,0,0.0000,0.0000,0,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0,0,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0,0.0000,0.0000,0.0000,0.0000,0 +2016-12-30,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2016-12-31,0.4000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0,0.0000 +2017-01-01,0.1538,0.0000,0,0.0000,0,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0,0,0,0,0.0000,0,0,0,0.0000,0,0,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0,0.0000,0.0000,0.0000,0,0,0.0000,0.0000,0,0.0000,0,0.0000,0.0000,0,0.0000,0,0,0.0000,0.0000,0,0,0.0000,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/person/avg_gpus/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/person/avg_gpus/timeseries-Month-reference.csv new file mode 100644 index 0000000000..dca72b91de --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/person/avg_gpus/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Count: Per Job: by User" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[Oriole, Baltimore] GPU Count: Per Job","[Auk, Little] GPU Count: Per Job","[Bunting, Black-headed] GPU Count: Per Job","[Bunting, Reed] GPU Count: Per Job","[Bunting, Yellow-breasted] GPU Count: Per Job","[Bunting, Yellow-browed] GPU Count: Per Job","[Chaffinch] GPU Count: Per Job","[Coot] GPU Count: Per Job","[Crane] GPU Count: Per Job","[Crane, Sandhill] GPU Count: Per Job","[Dove, Turtle] GPU Count: Per Job","[Duck, Ferruginous] GPU Count: Per Job","[Dunlin] GPU Count: Per Job","[Egret, Cattle] GPU Count: Per Job","[Fieldfare] GPU Count: Per Job","[Gallinule, Allen's] GPU Count: Per Job","[Goose, Egyptian] GPU Count: Per Job","[Grebe, Pied-billed] GPU Count: Per Job","[Grey, Great] GPU Count: Per Job","[Grey, Lesser] GPU Count: Per Job","[Grey, Southern] GPU Count: Per Job","[Grosbeak, Evening] GPU Count: Per Job","[Gull, Ring-billed] GPU Count: Per Job","[Harrier, Hen] GPU Count: Per Job","[Honey-buzzard] GPU Count: Per Job","[Ibis, Glossy] GPU Count: Per Job","[Jackdaw] GPU Count: Per Job","[Lapwing] GPU Count: Per Job","[Martin, Crag] GPU Count: Per Job","[Martin, Purple] GPU Count: Per Job","[Moorhen] GPU Count: Per Job","[Ovenbird] GPU Count: Per Job","[Partridge, Red-legged] GPU Count: Per Job","[Peregrine] GPU Count: Per Job","[Pipit, Meadow] GPU Count: Per Job","[Plover, Caspian] GPU Count: Per Job","[Plover, White-tailed] GPU Count: Per Job","[Redpoll, Lesser] GPU Count: Per Job","[Roller] GPU Count: Per Job","[Sandpiper, Spotted] GPU Count: Per Job","[Sapsucker, Yellow-bellied] GPU Count: Per Job","[Scaup, Lesser] GPU Count: Per Job","[Scoter, Velvet] GPU Count: Per Job","[Shag] GPU Count: Per Job","[Shearwater, Cory's] GPU Count: Per Job","[Shrike, Long-tailed] GPU Count: Per Job","[Siskin] GPU Count: Per Job","[Smew] GPU Count: Per Job","[Sparrow, Savannah] GPU Count: Per Job","[Sparrow, White-throated] GPU Count: Per Job","[Stint, Little] GPU Count: Per Job","[Swift, Alpine] GPU Count: Per Job","[Tern, Sandwich] GPU Count: Per Job","[Thrush, Grey-cheeked] GPU Count: Per Job","[Thrush, Mistle] GPU Count: Per Job","[Thrush, Swainson's] GPU Count: Per Job","[Treecreeper, Short-toed] GPU Count: Per Job","[Warbler, Booted] GPU Count: Per Job","[Warbler, Dusky] GPU Count: Per Job","[Warbler, Garden] GPU Count: Per Job","[Warbler, Golden-winged] GPU Count: Per Job","[Warbler, Hooded] GPU Count: Per Job","[Warbler, Moltoni's] GPU Count: Per Job","[Warbler, Sardinian] GPU Count: Per Job","[Warbler, Yellow-browed] GPU Count: Per Job","[Whimbrel] GPU Count: Per Job" +2016-12,0.4000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2017-01,0.1538,0.0000,0,0.0000,0,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0,0,0,0,0.0000,0,0,0,0.0000,0,0,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0,0.0000,0.0000,0.0000,0,0,0.0000,0.0000,0,0.0000,0,0.0000,0.0000,0,0.0000,0,0,0.0000,0.0000,0,0,0.0000,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/person/avg_gpus/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/person/avg_gpus/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..ee68b1b058 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/person/avg_gpus/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Count: Per Job: by User" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[Oriole, Baltimore] GPU Count: Per Job","[Auk, Little] GPU Count: Per Job","[Bunting, Black-headed] GPU Count: Per Job","[Bunting, Reed] GPU Count: Per Job","[Bunting, Yellow-breasted] GPU Count: Per Job","[Bunting, Yellow-browed] GPU Count: Per Job","[Chaffinch] GPU Count: Per Job","[Coot] GPU Count: Per Job","[Crane] GPU Count: Per Job","[Crane, Sandhill] GPU Count: Per Job","[Dove, Turtle] GPU Count: Per Job","[Duck, Ferruginous] GPU Count: Per Job","[Dunlin] GPU Count: Per Job","[Egret, Cattle] GPU Count: Per Job","[Fieldfare] GPU Count: Per Job","[Gallinule, Allen's] GPU Count: Per Job","[Goose, Egyptian] GPU Count: Per Job","[Grebe, Pied-billed] GPU Count: Per Job","[Grey, Great] GPU Count: Per Job","[Grey, Lesser] GPU Count: Per Job","[Grey, Southern] GPU Count: Per Job","[Grosbeak, Evening] GPU Count: Per Job","[Gull, Ring-billed] GPU Count: Per Job","[Harrier, Hen] GPU Count: Per Job","[Honey-buzzard] GPU Count: Per Job","[Ibis, Glossy] GPU Count: Per Job","[Jackdaw] GPU Count: Per Job","[Lapwing] GPU Count: Per Job","[Martin, Crag] GPU Count: Per Job","[Martin, Purple] GPU Count: Per Job","[Moorhen] GPU Count: Per Job","[Ovenbird] GPU Count: Per Job","[Partridge, Red-legged] GPU Count: Per Job","[Peregrine] GPU Count: Per Job","[Pipit, Meadow] GPU Count: Per Job","[Plover, Caspian] GPU Count: Per Job","[Plover, White-tailed] GPU Count: Per Job","[Redpoll, Lesser] GPU Count: Per Job","[Roller] GPU Count: Per Job","[Sandpiper, Spotted] GPU Count: Per Job","[Sapsucker, Yellow-bellied] GPU Count: Per Job","[Scaup, Lesser] GPU Count: Per Job","[Scoter, Velvet] GPU Count: Per Job","[Shag] GPU Count: Per Job","[Shearwater, Cory's] GPU Count: Per Job","[Shrike, Long-tailed] GPU Count: Per Job","[Siskin] GPU Count: Per Job","[Smew] GPU Count: Per Job","[Sparrow, Savannah] GPU Count: Per Job","[Sparrow, White-throated] GPU Count: Per Job","[Stint, Little] GPU Count: Per Job","[Swift, Alpine] GPU Count: Per Job","[Tern, Sandwich] GPU Count: Per Job","[Thrush, Grey-cheeked] GPU Count: Per Job","[Thrush, Mistle] GPU Count: Per Job","[Thrush, Swainson's] GPU Count: Per Job","[Treecreeper, Short-toed] GPU Count: Per Job","[Warbler, Booted] GPU Count: Per Job","[Warbler, Dusky] GPU Count: Per Job","[Warbler, Garden] GPU Count: Per Job","[Warbler, Golden-winged] GPU Count: Per Job","[Warbler, Hooded] GPU Count: Per Job","[Warbler, Moltoni's] GPU Count: Per Job","[Warbler, Sardinian] GPU Count: Per Job","[Warbler, Yellow-browed] GPU Count: Per Job","[Whimbrel] GPU Count: Per Job" +"2016 Q4",0.4000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +"2017 Q1",0.1538,0.0000,0,0.0000,0,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0,0,0,0,0.0000,0,0,0,0.0000,0,0,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0,0.0000,0.0000,0.0000,0,0,0.0000,0.0000,0,0.0000,0,0.0000,0.0000,0,0.0000,0,0,0.0000,0.0000,0,0,0.0000,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/person/avg_gpus/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/person/avg_gpus/timeseries-Year-reference.csv new file mode 100644 index 0000000000..1dbe848624 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/person/avg_gpus/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Count: Per Job: by User" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[Oriole, Baltimore] GPU Count: Per Job","[Auk, Little] GPU Count: Per Job","[Bunting, Black-headed] GPU Count: Per Job","[Bunting, Reed] GPU Count: Per Job","[Bunting, Yellow-breasted] GPU Count: Per Job","[Bunting, Yellow-browed] GPU Count: Per Job","[Chaffinch] GPU Count: Per Job","[Coot] GPU Count: Per Job","[Crane] GPU Count: Per Job","[Crane, Sandhill] GPU Count: Per Job","[Dove, Turtle] GPU Count: Per Job","[Duck, Ferruginous] GPU Count: Per Job","[Dunlin] GPU Count: Per Job","[Egret, Cattle] GPU Count: Per Job","[Fieldfare] GPU Count: Per Job","[Gallinule, Allen's] GPU Count: Per Job","[Goose, Egyptian] GPU Count: Per Job","[Grebe, Pied-billed] GPU Count: Per Job","[Grey, Great] GPU Count: Per Job","[Grey, Lesser] GPU Count: Per Job","[Grey, Southern] GPU Count: Per Job","[Grosbeak, Evening] GPU Count: Per Job","[Gull, Ring-billed] GPU Count: Per Job","[Harrier, Hen] GPU Count: Per Job","[Honey-buzzard] GPU Count: Per Job","[Ibis, Glossy] GPU Count: Per Job","[Jackdaw] GPU Count: Per Job","[Lapwing] GPU Count: Per Job","[Martin, Crag] GPU Count: Per Job","[Martin, Purple] GPU Count: Per Job","[Moorhen] GPU Count: Per Job","[Ovenbird] GPU Count: Per Job","[Partridge, Red-legged] GPU Count: Per Job","[Peregrine] GPU Count: Per Job","[Pipit, Meadow] GPU Count: Per Job","[Plover, Caspian] GPU Count: Per Job","[Plover, White-tailed] GPU Count: Per Job","[Redpoll, Lesser] GPU Count: Per Job","[Roller] GPU Count: Per Job","[Sandpiper, Spotted] GPU Count: Per Job","[Sapsucker, Yellow-bellied] GPU Count: Per Job","[Scaup, Lesser] GPU Count: Per Job","[Scoter, Velvet] GPU Count: Per Job","[Shag] GPU Count: Per Job","[Shearwater, Cory's] GPU Count: Per Job","[Shrike, Long-tailed] GPU Count: Per Job","[Siskin] GPU Count: Per Job","[Smew] GPU Count: Per Job","[Sparrow, Savannah] GPU Count: Per Job","[Sparrow, White-throated] GPU Count: Per Job","[Stint, Little] GPU Count: Per Job","[Swift, Alpine] GPU Count: Per Job","[Tern, Sandwich] GPU Count: Per Job","[Thrush, Grey-cheeked] GPU Count: Per Job","[Thrush, Mistle] GPU Count: Per Job","[Thrush, Swainson's] GPU Count: Per Job","[Treecreeper, Short-toed] GPU Count: Per Job","[Warbler, Booted] GPU Count: Per Job","[Warbler, Dusky] GPU Count: Per Job","[Warbler, Garden] GPU Count: Per Job","[Warbler, Golden-winged] GPU Count: Per Job","[Warbler, Hooded] GPU Count: Per Job","[Warbler, Moltoni's] GPU Count: Per Job","[Warbler, Sardinian] GPU Count: Per Job","[Warbler, Yellow-browed] GPU Count: Per Job","[Whimbrel] GPU Count: Per Job" +2016,0.4000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2017,0.1538,0.0000,0,0.0000,0,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0,0,0,0,0.0000,0,0,0,0.0000,0,0,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0,0.0000,0.0000,0.0000,0,0,0.0000,0.0000,0,0.0000,0,0.0000,0.0000,0,0.0000,0,0,0.0000,0.0000,0,0,0.0000,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/person/avg_job_size_weighted_by_gpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/person/avg_job_size_weighted_by_gpu_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..466f1763f8 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/person/avg_job_size_weighted_by_gpu_hours/aggregate-Day-reference.csv @@ -0,0 +1,75 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by User" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +User,"Job Size: Weighted By GPU Hours (GPU Count)" +"Oriole, Baltimore",12.0000 +"Auk, Little",0.0000 +"Bunting, Black-headed",0.0000 +"Bunting, Reed",0.0000 +"Bunting, Yellow-breasted",0.0000 +"Bunting, Yellow-browed",0.0000 +Chaffinch,0.0000 +Coot,0.0000 +Crane,0.0000 +"Crane, Sandhill",0.0000 +"Dove, Turtle",0.0000 +"Duck, Ferruginous",0.0000 +Dunlin,0.0000 +"Egret, Cattle",0.0000 +Fieldfare,0.0000 +"Gallinule, Allen's",0.0000 +"Goose, Egyptian",0.0000 +"Grebe, Pied-billed",0.0000 +"Grey, Great",0.0000 +"Grey, Lesser",0.0000 +"Grey, Southern",0.0000 +"Grosbeak, Evening",0.0000 +"Gull, Ring-billed",0.0000 +"Harrier, Hen",0.0000 +Honey-buzzard,0.0000 +"Ibis, Glossy",0.0000 +Jackdaw,0.0000 +Lapwing,0.0000 +"Martin, Crag",0.0000 +"Martin, Purple",0.0000 +Moorhen,0.0000 +Ovenbird,0.0000 +"Partridge, Red-legged",0.0000 +Peregrine,0.0000 +"Pipit, Meadow",0.0000 +"Plover, Caspian",0.0000 +"Plover, White-tailed",0.0000 +"Redpoll, Lesser",0.0000 +Roller,0.0000 +"Sandpiper, Spotted",0.0000 +"Sapsucker, Yellow-bellied",0.0000 +"Scaup, Lesser",0.0000 +"Scoter, Velvet",0.0000 +Shag,0.0000 +"Shearwater, Cory's",0.0000 +"Shrike, Long-tailed",0.0000 +Siskin,0.0000 +Smew,0.0000 +"Sparrow, Savannah",0.0000 +"Sparrow, White-throated",0.0000 +"Stint, Little",0.0000 +"Swift, Alpine",0.0000 +"Tern, Sandwich",0.0000 +"Thrush, Grey-cheeked",0.0000 +"Thrush, Mistle",0.0000 +"Thrush, Swainson's",0.0000 +"Treecreeper, Short-toed",0.0000 +"Warbler, Booted",0.0000 +"Warbler, Dusky",0.0000 +"Warbler, Garden",0.0000 +"Warbler, Golden-winged",0.0000 +"Warbler, Hooded",0.0000 +"Warbler, Moltoni's",0.0000 +"Warbler, Sardinian",0.0000 +"Warbler, Yellow-browed",0.0000 +Whimbrel,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/person/avg_job_size_weighted_by_gpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/person/avg_job_size_weighted_by_gpu_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..466f1763f8 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/person/avg_job_size_weighted_by_gpu_hours/aggregate-Month-reference.csv @@ -0,0 +1,75 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by User" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +User,"Job Size: Weighted By GPU Hours (GPU Count)" +"Oriole, Baltimore",12.0000 +"Auk, Little",0.0000 +"Bunting, Black-headed",0.0000 +"Bunting, Reed",0.0000 +"Bunting, Yellow-breasted",0.0000 +"Bunting, Yellow-browed",0.0000 +Chaffinch,0.0000 +Coot,0.0000 +Crane,0.0000 +"Crane, Sandhill",0.0000 +"Dove, Turtle",0.0000 +"Duck, Ferruginous",0.0000 +Dunlin,0.0000 +"Egret, Cattle",0.0000 +Fieldfare,0.0000 +"Gallinule, Allen's",0.0000 +"Goose, Egyptian",0.0000 +"Grebe, Pied-billed",0.0000 +"Grey, Great",0.0000 +"Grey, Lesser",0.0000 +"Grey, Southern",0.0000 +"Grosbeak, Evening",0.0000 +"Gull, Ring-billed",0.0000 +"Harrier, Hen",0.0000 +Honey-buzzard,0.0000 +"Ibis, Glossy",0.0000 +Jackdaw,0.0000 +Lapwing,0.0000 +"Martin, Crag",0.0000 +"Martin, Purple",0.0000 +Moorhen,0.0000 +Ovenbird,0.0000 +"Partridge, Red-legged",0.0000 +Peregrine,0.0000 +"Pipit, Meadow",0.0000 +"Plover, Caspian",0.0000 +"Plover, White-tailed",0.0000 +"Redpoll, Lesser",0.0000 +Roller,0.0000 +"Sandpiper, Spotted",0.0000 +"Sapsucker, Yellow-bellied",0.0000 +"Scaup, Lesser",0.0000 +"Scoter, Velvet",0.0000 +Shag,0.0000 +"Shearwater, Cory's",0.0000 +"Shrike, Long-tailed",0.0000 +Siskin,0.0000 +Smew,0.0000 +"Sparrow, Savannah",0.0000 +"Sparrow, White-throated",0.0000 +"Stint, Little",0.0000 +"Swift, Alpine",0.0000 +"Tern, Sandwich",0.0000 +"Thrush, Grey-cheeked",0.0000 +"Thrush, Mistle",0.0000 +"Thrush, Swainson's",0.0000 +"Treecreeper, Short-toed",0.0000 +"Warbler, Booted",0.0000 +"Warbler, Dusky",0.0000 +"Warbler, Garden",0.0000 +"Warbler, Golden-winged",0.0000 +"Warbler, Hooded",0.0000 +"Warbler, Moltoni's",0.0000 +"Warbler, Sardinian",0.0000 +"Warbler, Yellow-browed",0.0000 +Whimbrel,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/person/avg_job_size_weighted_by_gpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/person/avg_job_size_weighted_by_gpu_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..466f1763f8 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/person/avg_job_size_weighted_by_gpu_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,75 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by User" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +User,"Job Size: Weighted By GPU Hours (GPU Count)" +"Oriole, Baltimore",12.0000 +"Auk, Little",0.0000 +"Bunting, Black-headed",0.0000 +"Bunting, Reed",0.0000 +"Bunting, Yellow-breasted",0.0000 +"Bunting, Yellow-browed",0.0000 +Chaffinch,0.0000 +Coot,0.0000 +Crane,0.0000 +"Crane, Sandhill",0.0000 +"Dove, Turtle",0.0000 +"Duck, Ferruginous",0.0000 +Dunlin,0.0000 +"Egret, Cattle",0.0000 +Fieldfare,0.0000 +"Gallinule, Allen's",0.0000 +"Goose, Egyptian",0.0000 +"Grebe, Pied-billed",0.0000 +"Grey, Great",0.0000 +"Grey, Lesser",0.0000 +"Grey, Southern",0.0000 +"Grosbeak, Evening",0.0000 +"Gull, Ring-billed",0.0000 +"Harrier, Hen",0.0000 +Honey-buzzard,0.0000 +"Ibis, Glossy",0.0000 +Jackdaw,0.0000 +Lapwing,0.0000 +"Martin, Crag",0.0000 +"Martin, Purple",0.0000 +Moorhen,0.0000 +Ovenbird,0.0000 +"Partridge, Red-legged",0.0000 +Peregrine,0.0000 +"Pipit, Meadow",0.0000 +"Plover, Caspian",0.0000 +"Plover, White-tailed",0.0000 +"Redpoll, Lesser",0.0000 +Roller,0.0000 +"Sandpiper, Spotted",0.0000 +"Sapsucker, Yellow-bellied",0.0000 +"Scaup, Lesser",0.0000 +"Scoter, Velvet",0.0000 +Shag,0.0000 +"Shearwater, Cory's",0.0000 +"Shrike, Long-tailed",0.0000 +Siskin,0.0000 +Smew,0.0000 +"Sparrow, Savannah",0.0000 +"Sparrow, White-throated",0.0000 +"Stint, Little",0.0000 +"Swift, Alpine",0.0000 +"Tern, Sandwich",0.0000 +"Thrush, Grey-cheeked",0.0000 +"Thrush, Mistle",0.0000 +"Thrush, Swainson's",0.0000 +"Treecreeper, Short-toed",0.0000 +"Warbler, Booted",0.0000 +"Warbler, Dusky",0.0000 +"Warbler, Garden",0.0000 +"Warbler, Golden-winged",0.0000 +"Warbler, Hooded",0.0000 +"Warbler, Moltoni's",0.0000 +"Warbler, Sardinian",0.0000 +"Warbler, Yellow-browed",0.0000 +Whimbrel,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/person/avg_job_size_weighted_by_gpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/person/avg_job_size_weighted_by_gpu_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..466f1763f8 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/person/avg_job_size_weighted_by_gpu_hours/aggregate-Year-reference.csv @@ -0,0 +1,75 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by User" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +User,"Job Size: Weighted By GPU Hours (GPU Count)" +"Oriole, Baltimore",12.0000 +"Auk, Little",0.0000 +"Bunting, Black-headed",0.0000 +"Bunting, Reed",0.0000 +"Bunting, Yellow-breasted",0.0000 +"Bunting, Yellow-browed",0.0000 +Chaffinch,0.0000 +Coot,0.0000 +Crane,0.0000 +"Crane, Sandhill",0.0000 +"Dove, Turtle",0.0000 +"Duck, Ferruginous",0.0000 +Dunlin,0.0000 +"Egret, Cattle",0.0000 +Fieldfare,0.0000 +"Gallinule, Allen's",0.0000 +"Goose, Egyptian",0.0000 +"Grebe, Pied-billed",0.0000 +"Grey, Great",0.0000 +"Grey, Lesser",0.0000 +"Grey, Southern",0.0000 +"Grosbeak, Evening",0.0000 +"Gull, Ring-billed",0.0000 +"Harrier, Hen",0.0000 +Honey-buzzard,0.0000 +"Ibis, Glossy",0.0000 +Jackdaw,0.0000 +Lapwing,0.0000 +"Martin, Crag",0.0000 +"Martin, Purple",0.0000 +Moorhen,0.0000 +Ovenbird,0.0000 +"Partridge, Red-legged",0.0000 +Peregrine,0.0000 +"Pipit, Meadow",0.0000 +"Plover, Caspian",0.0000 +"Plover, White-tailed",0.0000 +"Redpoll, Lesser",0.0000 +Roller,0.0000 +"Sandpiper, Spotted",0.0000 +"Sapsucker, Yellow-bellied",0.0000 +"Scaup, Lesser",0.0000 +"Scoter, Velvet",0.0000 +Shag,0.0000 +"Shearwater, Cory's",0.0000 +"Shrike, Long-tailed",0.0000 +Siskin,0.0000 +Smew,0.0000 +"Sparrow, Savannah",0.0000 +"Sparrow, White-throated",0.0000 +"Stint, Little",0.0000 +"Swift, Alpine",0.0000 +"Tern, Sandwich",0.0000 +"Thrush, Grey-cheeked",0.0000 +"Thrush, Mistle",0.0000 +"Thrush, Swainson's",0.0000 +"Treecreeper, Short-toed",0.0000 +"Warbler, Booted",0.0000 +"Warbler, Dusky",0.0000 +"Warbler, Garden",0.0000 +"Warbler, Golden-winged",0.0000 +"Warbler, Hooded",0.0000 +"Warbler, Moltoni's",0.0000 +"Warbler, Sardinian",0.0000 +"Warbler, Yellow-browed",0.0000 +Whimbrel,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/person/avg_job_size_weighted_by_gpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/person/avg_job_size_weighted_by_gpu_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..094330012b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/person/avg_job_size_weighted_by_gpu_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by User" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[Oriole, Baltimore] Job Size: Weighted By GPU Hours (GPU Count)","[Auk, Little] Job Size: Weighted By GPU Hours (GPU Count)","[Bunting, Black-headed] Job Size: Weighted By GPU Hours (GPU Count)","[Bunting, Reed] Job Size: Weighted By GPU Hours (GPU Count)","[Bunting, Yellow-breasted] Job Size: Weighted By GPU Hours (GPU Count)","[Bunting, Yellow-browed] Job Size: Weighted By GPU Hours (GPU Count)","[Chaffinch] Job Size: Weighted By GPU Hours (GPU Count)","[Coot] Job Size: Weighted By GPU Hours (GPU Count)","[Crane] Job Size: Weighted By GPU Hours (GPU Count)","[Crane, Sandhill] Job Size: Weighted By GPU Hours (GPU Count)","[Dove, Turtle] Job Size: Weighted By GPU Hours (GPU Count)","[Duck, Ferruginous] Job Size: Weighted By GPU Hours (GPU Count)","[Dunlin] Job Size: Weighted By GPU Hours (GPU Count)","[Egret, Cattle] Job Size: Weighted By GPU Hours (GPU Count)","[Fieldfare] Job Size: Weighted By GPU Hours (GPU Count)","[Gallinule, Allen's] Job Size: Weighted By GPU Hours (GPU Count)","[Goose, Egyptian] Job Size: Weighted By GPU Hours (GPU Count)","[Grebe, Pied-billed] Job Size: Weighted By GPU Hours (GPU Count)","[Grey, Great] Job Size: Weighted By GPU Hours (GPU Count)","[Grey, Lesser] Job Size: Weighted By GPU Hours (GPU Count)","[Grey, Southern] Job Size: Weighted By GPU Hours (GPU Count)","[Grosbeak, Evening] Job Size: Weighted By GPU Hours (GPU Count)","[Gull, Ring-billed] Job Size: Weighted By GPU Hours (GPU Count)","[Harrier, Hen] Job Size: Weighted By GPU Hours (GPU Count)","[Honey-buzzard] Job Size: Weighted By GPU Hours (GPU Count)","[Ibis, Glossy] Job Size: Weighted By GPU Hours (GPU Count)","[Jackdaw] Job Size: Weighted By GPU Hours (GPU Count)","[Lapwing] Job Size: Weighted By GPU Hours (GPU Count)","[Martin, Crag] Job Size: Weighted By GPU Hours (GPU Count)","[Martin, Purple] Job Size: Weighted By GPU Hours (GPU Count)","[Moorhen] Job Size: Weighted By GPU Hours (GPU Count)","[Ovenbird] Job Size: Weighted By GPU Hours (GPU Count)","[Partridge, Red-legged] Job Size: Weighted By GPU Hours (GPU Count)","[Peregrine] Job Size: Weighted By GPU Hours (GPU Count)","[Pipit, Meadow] Job Size: Weighted By GPU Hours (GPU Count)","[Plover, Caspian] Job Size: Weighted By GPU Hours (GPU Count)","[Plover, White-tailed] Job Size: Weighted By GPU Hours (GPU Count)","[Redpoll, Lesser] Job Size: Weighted By GPU Hours (GPU Count)","[Roller] Job Size: Weighted By GPU Hours (GPU Count)","[Sandpiper, Spotted] Job Size: Weighted By GPU Hours (GPU Count)","[Sapsucker, Yellow-bellied] Job Size: Weighted By GPU Hours (GPU Count)","[Scaup, Lesser] Job Size: Weighted By GPU Hours (GPU Count)","[Scoter, Velvet] Job Size: Weighted By GPU Hours (GPU Count)","[Shag] Job Size: Weighted By GPU Hours (GPU Count)","[Shearwater, Cory's] Job Size: Weighted By GPU Hours (GPU Count)","[Shrike, Long-tailed] Job Size: Weighted By GPU Hours (GPU Count)","[Siskin] Job Size: Weighted By GPU Hours (GPU Count)","[Smew] Job Size: Weighted By GPU Hours (GPU Count)","[Sparrow, Savannah] Job Size: Weighted By GPU Hours (GPU Count)","[Sparrow, White-throated] Job Size: Weighted By GPU Hours (GPU Count)","[Stint, Little] Job Size: Weighted By GPU Hours (GPU Count)","[Swift, Alpine] Job Size: Weighted By GPU Hours (GPU Count)","[Tern, Sandwich] Job Size: Weighted By GPU Hours (GPU Count)","[Thrush, Grey-cheeked] Job Size: Weighted By GPU Hours (GPU Count)","[Thrush, Mistle] Job Size: Weighted By GPU Hours (GPU Count)","[Thrush, Swainson's] Job Size: Weighted By GPU Hours (GPU Count)","[Treecreeper, Short-toed] Job Size: Weighted By GPU Hours (GPU Count)","[Warbler, Booted] Job Size: Weighted By GPU Hours (GPU Count)","[Warbler, Dusky] Job Size: Weighted By GPU Hours (GPU Count)","[Warbler, Garden] Job Size: Weighted By GPU Hours (GPU Count)","[Warbler, Golden-winged] Job Size: Weighted By GPU Hours (GPU Count)","[Warbler, Hooded] Job Size: Weighted By GPU Hours (GPU Count)","[Warbler, Moltoni's] Job Size: Weighted By GPU Hours (GPU Count)","[Warbler, Sardinian] Job Size: Weighted By GPU Hours (GPU Count)","[Warbler, Yellow-browed] Job Size: Weighted By GPU Hours (GPU Count)","[Whimbrel] Job Size: Weighted By GPU Hours (GPU Count)" +2016-12-22,12.0000,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-23,12.0000,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-24,12.0000,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-25,12.0000,0,0,0.0000,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-26,12.0000,0,0,0.0000,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0.0000,0,0,0,0,0,0 +2016-12-27,12.0000,0,0,0.0000,0.0000,0,0.0000,0,0,0.0000,0.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0.0000,0,0,0.0000,0,0,0,0,0,0,0,0.0000,0,0,0,0.0000,0,0,0,0,0,0.0000,0,0,0,0.0000,0.0000,0,0.0000,0,0,0.0000,0,0,0 +2016-12-28,12.0000,0,0,0.0000,0.0000,0,0.0000,0,0,0.0000,0.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0.0000,0,0.0000,0,0,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,0.0000,0.0000,0.0000,0,0,0.0000,0,0,0,0,0,0.0000,0,0.0000,0,0.0000,0.0000,0,0.0000,0,0.0000,0.0000,0.0000,0,0 +2016-12-29,12.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0,0,0,0.0000,0.0000,0,0,0,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0,0,0.0000,0.0000,0,0.0000,0.0000,0,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0,0,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0,0.0000,0.0000,0.0000,0.0000,0 +2016-12-30,12.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2016-12-31,12.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0,0.0000 +2017-01-01,12.0000,0.0000,0,0.0000,0,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0,0,0,0,0.0000,0,0,0,0.0000,0,0,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0,0.0000,0.0000,0.0000,0,0,0.0000,0.0000,0,0.0000,0,0.0000,0.0000,0,0.0000,0,0,0.0000,0.0000,0,0,0.0000,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/person/avg_job_size_weighted_by_gpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/person/avg_job_size_weighted_by_gpu_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..0cd1eb6c4b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/person/avg_job_size_weighted_by_gpu_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by User" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[Oriole, Baltimore] Job Size: Weighted By GPU Hours (GPU Count)","[Auk, Little] Job Size: Weighted By GPU Hours (GPU Count)","[Bunting, Black-headed] Job Size: Weighted By GPU Hours (GPU Count)","[Bunting, Reed] Job Size: Weighted By GPU Hours (GPU Count)","[Bunting, Yellow-breasted] Job Size: Weighted By GPU Hours (GPU Count)","[Bunting, Yellow-browed] Job Size: Weighted By GPU Hours (GPU Count)","[Chaffinch] Job Size: Weighted By GPU Hours (GPU Count)","[Coot] Job Size: Weighted By GPU Hours (GPU Count)","[Crane] Job Size: Weighted By GPU Hours (GPU Count)","[Crane, Sandhill] Job Size: Weighted By GPU Hours (GPU Count)","[Dove, Turtle] Job Size: Weighted By GPU Hours (GPU Count)","[Duck, Ferruginous] Job Size: Weighted By GPU Hours (GPU Count)","[Dunlin] Job Size: Weighted By GPU Hours (GPU Count)","[Egret, Cattle] Job Size: Weighted By GPU Hours (GPU Count)","[Fieldfare] Job Size: Weighted By GPU Hours (GPU Count)","[Gallinule, Allen's] Job Size: Weighted By GPU Hours (GPU Count)","[Goose, Egyptian] Job Size: Weighted By GPU Hours (GPU Count)","[Grebe, Pied-billed] Job Size: Weighted By GPU Hours (GPU Count)","[Grey, Great] Job Size: Weighted By GPU Hours (GPU Count)","[Grey, Lesser] Job Size: Weighted By GPU Hours (GPU Count)","[Grey, Southern] Job Size: Weighted By GPU Hours (GPU Count)","[Grosbeak, Evening] Job Size: Weighted By GPU Hours (GPU Count)","[Gull, Ring-billed] Job Size: Weighted By GPU Hours (GPU Count)","[Harrier, Hen] Job Size: Weighted By GPU Hours (GPU Count)","[Honey-buzzard] Job Size: Weighted By GPU Hours (GPU Count)","[Ibis, Glossy] Job Size: Weighted By GPU Hours (GPU Count)","[Jackdaw] Job Size: Weighted By GPU Hours (GPU Count)","[Lapwing] Job Size: Weighted By GPU Hours (GPU Count)","[Martin, Crag] Job Size: Weighted By GPU Hours (GPU Count)","[Martin, Purple] Job Size: Weighted By GPU Hours (GPU Count)","[Moorhen] Job Size: Weighted By GPU Hours (GPU Count)","[Ovenbird] Job Size: Weighted By GPU Hours (GPU Count)","[Partridge, Red-legged] Job Size: Weighted By GPU Hours (GPU Count)","[Peregrine] Job Size: Weighted By GPU Hours (GPU Count)","[Pipit, Meadow] Job Size: Weighted By GPU Hours (GPU Count)","[Plover, Caspian] Job Size: Weighted By GPU Hours (GPU Count)","[Plover, White-tailed] Job Size: Weighted By GPU Hours (GPU Count)","[Redpoll, Lesser] Job Size: Weighted By GPU Hours (GPU Count)","[Roller] Job Size: Weighted By GPU Hours (GPU Count)","[Sandpiper, Spotted] Job Size: Weighted By GPU Hours (GPU Count)","[Sapsucker, Yellow-bellied] Job Size: Weighted By GPU Hours (GPU Count)","[Scaup, Lesser] Job Size: Weighted By GPU Hours (GPU Count)","[Scoter, Velvet] Job Size: Weighted By GPU Hours (GPU Count)","[Shag] Job Size: Weighted By GPU Hours (GPU Count)","[Shearwater, Cory's] Job Size: Weighted By GPU Hours (GPU Count)","[Shrike, Long-tailed] Job Size: Weighted By GPU Hours (GPU Count)","[Siskin] Job Size: Weighted By GPU Hours (GPU Count)","[Smew] Job Size: Weighted By GPU Hours (GPU Count)","[Sparrow, Savannah] Job Size: Weighted By GPU Hours (GPU Count)","[Sparrow, White-throated] Job Size: Weighted By GPU Hours (GPU Count)","[Stint, Little] Job Size: Weighted By GPU Hours (GPU Count)","[Swift, Alpine] Job Size: Weighted By GPU Hours (GPU Count)","[Tern, Sandwich] Job Size: Weighted By GPU Hours (GPU Count)","[Thrush, Grey-cheeked] Job Size: Weighted By GPU Hours (GPU Count)","[Thrush, Mistle] Job Size: Weighted By GPU Hours (GPU Count)","[Thrush, Swainson's] Job Size: Weighted By GPU Hours (GPU Count)","[Treecreeper, Short-toed] Job Size: Weighted By GPU Hours (GPU Count)","[Warbler, Booted] Job Size: Weighted By GPU Hours (GPU Count)","[Warbler, Dusky] Job Size: Weighted By GPU Hours (GPU Count)","[Warbler, Garden] Job Size: Weighted By GPU Hours (GPU Count)","[Warbler, Golden-winged] Job Size: Weighted By GPU Hours (GPU Count)","[Warbler, Hooded] Job Size: Weighted By GPU Hours (GPU Count)","[Warbler, Moltoni's] Job Size: Weighted By GPU Hours (GPU Count)","[Warbler, Sardinian] Job Size: Weighted By GPU Hours (GPU Count)","[Warbler, Yellow-browed] Job Size: Weighted By GPU Hours (GPU Count)","[Whimbrel] Job Size: Weighted By GPU Hours (GPU Count)" +2016-12,12.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2017-01,12.0000,0.0000,0,0.0000,0,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0,0,0,0,0.0000,0,0,0,0.0000,0,0,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0,0.0000,0.0000,0.0000,0,0,0.0000,0.0000,0,0.0000,0,0.0000,0.0000,0,0.0000,0,0,0.0000,0.0000,0,0,0.0000,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/person/avg_job_size_weighted_by_gpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/person/avg_job_size_weighted_by_gpu_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..74a6604c2b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/person/avg_job_size_weighted_by_gpu_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by User" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[Oriole, Baltimore] Job Size: Weighted By GPU Hours (GPU Count)","[Auk, Little] Job Size: Weighted By GPU Hours (GPU Count)","[Bunting, Black-headed] Job Size: Weighted By GPU Hours (GPU Count)","[Bunting, Reed] Job Size: Weighted By GPU Hours (GPU Count)","[Bunting, Yellow-breasted] Job Size: Weighted By GPU Hours (GPU Count)","[Bunting, Yellow-browed] Job Size: Weighted By GPU Hours (GPU Count)","[Chaffinch] Job Size: Weighted By GPU Hours (GPU Count)","[Coot] Job Size: Weighted By GPU Hours (GPU Count)","[Crane] Job Size: Weighted By GPU Hours (GPU Count)","[Crane, Sandhill] Job Size: Weighted By GPU Hours (GPU Count)","[Dove, Turtle] Job Size: Weighted By GPU Hours (GPU Count)","[Duck, Ferruginous] Job Size: Weighted By GPU Hours (GPU Count)","[Dunlin] Job Size: Weighted By GPU Hours (GPU Count)","[Egret, Cattle] Job Size: Weighted By GPU Hours (GPU Count)","[Fieldfare] Job Size: Weighted By GPU Hours (GPU Count)","[Gallinule, Allen's] Job Size: Weighted By GPU Hours (GPU Count)","[Goose, Egyptian] Job Size: Weighted By GPU Hours (GPU Count)","[Grebe, Pied-billed] Job Size: Weighted By GPU Hours (GPU Count)","[Grey, Great] Job Size: Weighted By GPU Hours (GPU Count)","[Grey, Lesser] Job Size: Weighted By GPU Hours (GPU Count)","[Grey, Southern] Job Size: Weighted By GPU Hours (GPU Count)","[Grosbeak, Evening] Job Size: Weighted By GPU Hours (GPU Count)","[Gull, Ring-billed] Job Size: Weighted By GPU Hours (GPU Count)","[Harrier, Hen] Job Size: Weighted By GPU Hours (GPU Count)","[Honey-buzzard] Job Size: Weighted By GPU Hours (GPU Count)","[Ibis, Glossy] Job Size: Weighted By GPU Hours (GPU Count)","[Jackdaw] Job Size: Weighted By GPU Hours (GPU Count)","[Lapwing] Job Size: Weighted By GPU Hours (GPU Count)","[Martin, Crag] Job Size: Weighted By GPU Hours (GPU Count)","[Martin, Purple] Job Size: Weighted By GPU Hours (GPU Count)","[Moorhen] Job Size: Weighted By GPU Hours (GPU Count)","[Ovenbird] Job Size: Weighted By GPU Hours (GPU Count)","[Partridge, Red-legged] Job Size: Weighted By GPU Hours (GPU Count)","[Peregrine] Job Size: Weighted By GPU Hours (GPU Count)","[Pipit, Meadow] Job Size: Weighted By GPU Hours (GPU Count)","[Plover, Caspian] Job Size: Weighted By GPU Hours (GPU Count)","[Plover, White-tailed] Job Size: Weighted By GPU Hours (GPU Count)","[Redpoll, Lesser] Job Size: Weighted By GPU Hours (GPU Count)","[Roller] Job Size: Weighted By GPU Hours (GPU Count)","[Sandpiper, Spotted] Job Size: Weighted By GPU Hours (GPU Count)","[Sapsucker, Yellow-bellied] Job Size: Weighted By GPU Hours (GPU Count)","[Scaup, Lesser] Job Size: Weighted By GPU Hours (GPU Count)","[Scoter, Velvet] Job Size: Weighted By GPU Hours (GPU Count)","[Shag] Job Size: Weighted By GPU Hours (GPU Count)","[Shearwater, Cory's] Job Size: Weighted By GPU Hours (GPU Count)","[Shrike, Long-tailed] Job Size: Weighted By GPU Hours (GPU Count)","[Siskin] Job Size: Weighted By GPU Hours (GPU Count)","[Smew] Job Size: Weighted By GPU Hours (GPU Count)","[Sparrow, Savannah] Job Size: Weighted By GPU Hours (GPU Count)","[Sparrow, White-throated] Job Size: Weighted By GPU Hours (GPU Count)","[Stint, Little] Job Size: Weighted By GPU Hours (GPU Count)","[Swift, Alpine] Job Size: Weighted By GPU Hours (GPU Count)","[Tern, Sandwich] Job Size: Weighted By GPU Hours (GPU Count)","[Thrush, Grey-cheeked] Job Size: Weighted By GPU Hours (GPU Count)","[Thrush, Mistle] Job Size: Weighted By GPU Hours (GPU Count)","[Thrush, Swainson's] Job Size: Weighted By GPU Hours (GPU Count)","[Treecreeper, Short-toed] Job Size: Weighted By GPU Hours (GPU Count)","[Warbler, Booted] Job Size: Weighted By GPU Hours (GPU Count)","[Warbler, Dusky] Job Size: Weighted By GPU Hours (GPU Count)","[Warbler, Garden] Job Size: Weighted By GPU Hours (GPU Count)","[Warbler, Golden-winged] Job Size: Weighted By GPU Hours (GPU Count)","[Warbler, Hooded] Job Size: Weighted By GPU Hours (GPU Count)","[Warbler, Moltoni's] Job Size: Weighted By GPU Hours (GPU Count)","[Warbler, Sardinian] Job Size: Weighted By GPU Hours (GPU Count)","[Warbler, Yellow-browed] Job Size: Weighted By GPU Hours (GPU Count)","[Whimbrel] Job Size: Weighted By GPU Hours (GPU Count)" +"2016 Q4",12.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +"2017 Q1",12.0000,0.0000,0,0.0000,0,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0,0,0,0,0.0000,0,0,0,0.0000,0,0,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0,0.0000,0.0000,0.0000,0,0,0.0000,0.0000,0,0.0000,0,0.0000,0.0000,0,0.0000,0,0,0.0000,0.0000,0,0,0.0000,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/person/avg_job_size_weighted_by_gpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/person/avg_job_size_weighted_by_gpu_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..4a13d2298d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/person/avg_job_size_weighted_by_gpu_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by User" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[Oriole, Baltimore] Job Size: Weighted By GPU Hours (GPU Count)","[Auk, Little] Job Size: Weighted By GPU Hours (GPU Count)","[Bunting, Black-headed] Job Size: Weighted By GPU Hours (GPU Count)","[Bunting, Reed] Job Size: Weighted By GPU Hours (GPU Count)","[Bunting, Yellow-breasted] Job Size: Weighted By GPU Hours (GPU Count)","[Bunting, Yellow-browed] Job Size: Weighted By GPU Hours (GPU Count)","[Chaffinch] Job Size: Weighted By GPU Hours (GPU Count)","[Coot] Job Size: Weighted By GPU Hours (GPU Count)","[Crane] Job Size: Weighted By GPU Hours (GPU Count)","[Crane, Sandhill] Job Size: Weighted By GPU Hours (GPU Count)","[Dove, Turtle] Job Size: Weighted By GPU Hours (GPU Count)","[Duck, Ferruginous] Job Size: Weighted By GPU Hours (GPU Count)","[Dunlin] Job Size: Weighted By GPU Hours (GPU Count)","[Egret, Cattle] Job Size: Weighted By GPU Hours (GPU Count)","[Fieldfare] Job Size: Weighted By GPU Hours (GPU Count)","[Gallinule, Allen's] Job Size: Weighted By GPU Hours (GPU Count)","[Goose, Egyptian] Job Size: Weighted By GPU Hours (GPU Count)","[Grebe, Pied-billed] Job Size: Weighted By GPU Hours (GPU Count)","[Grey, Great] Job Size: Weighted By GPU Hours (GPU Count)","[Grey, Lesser] Job Size: Weighted By GPU Hours (GPU Count)","[Grey, Southern] Job Size: Weighted By GPU Hours (GPU Count)","[Grosbeak, Evening] Job Size: Weighted By GPU Hours (GPU Count)","[Gull, Ring-billed] Job Size: Weighted By GPU Hours (GPU Count)","[Harrier, Hen] Job Size: Weighted By GPU Hours (GPU Count)","[Honey-buzzard] Job Size: Weighted By GPU Hours (GPU Count)","[Ibis, Glossy] Job Size: Weighted By GPU Hours (GPU Count)","[Jackdaw] Job Size: Weighted By GPU Hours (GPU Count)","[Lapwing] Job Size: Weighted By GPU Hours (GPU Count)","[Martin, Crag] Job Size: Weighted By GPU Hours (GPU Count)","[Martin, Purple] Job Size: Weighted By GPU Hours (GPU Count)","[Moorhen] Job Size: Weighted By GPU Hours (GPU Count)","[Ovenbird] Job Size: Weighted By GPU Hours (GPU Count)","[Partridge, Red-legged] Job Size: Weighted By GPU Hours (GPU Count)","[Peregrine] Job Size: Weighted By GPU Hours (GPU Count)","[Pipit, Meadow] Job Size: Weighted By GPU Hours (GPU Count)","[Plover, Caspian] Job Size: Weighted By GPU Hours (GPU Count)","[Plover, White-tailed] Job Size: Weighted By GPU Hours (GPU Count)","[Redpoll, Lesser] Job Size: Weighted By GPU Hours (GPU Count)","[Roller] Job Size: Weighted By GPU Hours (GPU Count)","[Sandpiper, Spotted] Job Size: Weighted By GPU Hours (GPU Count)","[Sapsucker, Yellow-bellied] Job Size: Weighted By GPU Hours (GPU Count)","[Scaup, Lesser] Job Size: Weighted By GPU Hours (GPU Count)","[Scoter, Velvet] Job Size: Weighted By GPU Hours (GPU Count)","[Shag] Job Size: Weighted By GPU Hours (GPU Count)","[Shearwater, Cory's] Job Size: Weighted By GPU Hours (GPU Count)","[Shrike, Long-tailed] Job Size: Weighted By GPU Hours (GPU Count)","[Siskin] Job Size: Weighted By GPU Hours (GPU Count)","[Smew] Job Size: Weighted By GPU Hours (GPU Count)","[Sparrow, Savannah] Job Size: Weighted By GPU Hours (GPU Count)","[Sparrow, White-throated] Job Size: Weighted By GPU Hours (GPU Count)","[Stint, Little] Job Size: Weighted By GPU Hours (GPU Count)","[Swift, Alpine] Job Size: Weighted By GPU Hours (GPU Count)","[Tern, Sandwich] Job Size: Weighted By GPU Hours (GPU Count)","[Thrush, Grey-cheeked] Job Size: Weighted By GPU Hours (GPU Count)","[Thrush, Mistle] Job Size: Weighted By GPU Hours (GPU Count)","[Thrush, Swainson's] Job Size: Weighted By GPU Hours (GPU Count)","[Treecreeper, Short-toed] Job Size: Weighted By GPU Hours (GPU Count)","[Warbler, Booted] Job Size: Weighted By GPU Hours (GPU Count)","[Warbler, Dusky] Job Size: Weighted By GPU Hours (GPU Count)","[Warbler, Garden] Job Size: Weighted By GPU Hours (GPU Count)","[Warbler, Golden-winged] Job Size: Weighted By GPU Hours (GPU Count)","[Warbler, Hooded] Job Size: Weighted By GPU Hours (GPU Count)","[Warbler, Moltoni's] Job Size: Weighted By GPU Hours (GPU Count)","[Warbler, Sardinian] Job Size: Weighted By GPU Hours (GPU Count)","[Warbler, Yellow-browed] Job Size: Weighted By GPU Hours (GPU Count)","[Whimbrel] Job Size: Weighted By GPU Hours (GPU Count)" +2016,12.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2017,12.0000,0.0000,0,0.0000,0,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0,0,0,0,0.0000,0,0,0,0.0000,0,0,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0,0.0000,0.0000,0.0000,0,0,0.0000,0.0000,0,0.0000,0,0.0000,0.0000,0,0.0000,0,0,0.0000,0.0000,0,0,0.0000,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/person/total_gpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/person/total_gpu_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..07be172767 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/person/total_gpu_hours/aggregate-Day-reference.csv @@ -0,0 +1,75 @@ +title +"GPU Hours: Total: by User" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +User,"GPU Hours: Total" +"Oriole, Baltimore",506.9128 +"Auk, Little",0.0000 +"Bunting, Black-headed",0.0000 +"Bunting, Reed",0.0000 +"Bunting, Yellow-breasted",0.0000 +"Bunting, Yellow-browed",0.0000 +Chaffinch,0.0000 +Coot,0.0000 +Crane,0.0000 +"Crane, Sandhill",0.0000 +"Dove, Turtle",0.0000 +"Duck, Ferruginous",0.0000 +Dunlin,0.0000 +"Egret, Cattle",0.0000 +Fieldfare,0.0000 +"Gallinule, Allen's",0.0000 +"Goose, Egyptian",0.0000 +"Grebe, Pied-billed",0.0000 +"Grey, Great",0.0000 +"Grey, Lesser",0.0000 +"Grey, Southern",0.0000 +"Grosbeak, Evening",0.0000 +"Gull, Ring-billed",0.0000 +"Harrier, Hen",0.0000 +Honey-buzzard,0.0000 +"Ibis, Glossy",0.0000 +Jackdaw,0.0000 +Lapwing,0.0000 +"Martin, Crag",0.0000 +"Martin, Purple",0.0000 +Moorhen,0.0000 +Ovenbird,0.0000 +"Partridge, Red-legged",0.0000 +Peregrine,0.0000 +"Pipit, Meadow",0.0000 +"Plover, Caspian",0.0000 +"Plover, White-tailed",0.0000 +"Redpoll, Lesser",0.0000 +Roller,0.0000 +"Sandpiper, Spotted",0.0000 +"Sapsucker, Yellow-bellied",0.0000 +"Scaup, Lesser",0.0000 +"Scoter, Velvet",0.0000 +Shag,0.0000 +"Shearwater, Cory's",0.0000 +"Shrike, Long-tailed",0.0000 +Siskin,0.0000 +Smew,0.0000 +"Sparrow, Savannah",0.0000 +"Sparrow, White-throated",0.0000 +"Stint, Little",0.0000 +"Swift, Alpine",0.0000 +"Tern, Sandwich",0.0000 +"Thrush, Grey-cheeked",0.0000 +"Thrush, Mistle",0.0000 +"Thrush, Swainson's",0.0000 +"Treecreeper, Short-toed",0.0000 +"Warbler, Booted",0.0000 +"Warbler, Dusky",0.0000 +"Warbler, Garden",0.0000 +"Warbler, Golden-winged",0.0000 +"Warbler, Hooded",0.0000 +"Warbler, Moltoni's",0.0000 +"Warbler, Sardinian",0.0000 +"Warbler, Yellow-browed",0.0000 +Whimbrel,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/person/total_gpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/person/total_gpu_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..07be172767 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/person/total_gpu_hours/aggregate-Month-reference.csv @@ -0,0 +1,75 @@ +title +"GPU Hours: Total: by User" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +User,"GPU Hours: Total" +"Oriole, Baltimore",506.9128 +"Auk, Little",0.0000 +"Bunting, Black-headed",0.0000 +"Bunting, Reed",0.0000 +"Bunting, Yellow-breasted",0.0000 +"Bunting, Yellow-browed",0.0000 +Chaffinch,0.0000 +Coot,0.0000 +Crane,0.0000 +"Crane, Sandhill",0.0000 +"Dove, Turtle",0.0000 +"Duck, Ferruginous",0.0000 +Dunlin,0.0000 +"Egret, Cattle",0.0000 +Fieldfare,0.0000 +"Gallinule, Allen's",0.0000 +"Goose, Egyptian",0.0000 +"Grebe, Pied-billed",0.0000 +"Grey, Great",0.0000 +"Grey, Lesser",0.0000 +"Grey, Southern",0.0000 +"Grosbeak, Evening",0.0000 +"Gull, Ring-billed",0.0000 +"Harrier, Hen",0.0000 +Honey-buzzard,0.0000 +"Ibis, Glossy",0.0000 +Jackdaw,0.0000 +Lapwing,0.0000 +"Martin, Crag",0.0000 +"Martin, Purple",0.0000 +Moorhen,0.0000 +Ovenbird,0.0000 +"Partridge, Red-legged",0.0000 +Peregrine,0.0000 +"Pipit, Meadow",0.0000 +"Plover, Caspian",0.0000 +"Plover, White-tailed",0.0000 +"Redpoll, Lesser",0.0000 +Roller,0.0000 +"Sandpiper, Spotted",0.0000 +"Sapsucker, Yellow-bellied",0.0000 +"Scaup, Lesser",0.0000 +"Scoter, Velvet",0.0000 +Shag,0.0000 +"Shearwater, Cory's",0.0000 +"Shrike, Long-tailed",0.0000 +Siskin,0.0000 +Smew,0.0000 +"Sparrow, Savannah",0.0000 +"Sparrow, White-throated",0.0000 +"Stint, Little",0.0000 +"Swift, Alpine",0.0000 +"Tern, Sandwich",0.0000 +"Thrush, Grey-cheeked",0.0000 +"Thrush, Mistle",0.0000 +"Thrush, Swainson's",0.0000 +"Treecreeper, Short-toed",0.0000 +"Warbler, Booted",0.0000 +"Warbler, Dusky",0.0000 +"Warbler, Garden",0.0000 +"Warbler, Golden-winged",0.0000 +"Warbler, Hooded",0.0000 +"Warbler, Moltoni's",0.0000 +"Warbler, Sardinian",0.0000 +"Warbler, Yellow-browed",0.0000 +Whimbrel,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/person/total_gpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/person/total_gpu_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..07be172767 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/person/total_gpu_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,75 @@ +title +"GPU Hours: Total: by User" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +User,"GPU Hours: Total" +"Oriole, Baltimore",506.9128 +"Auk, Little",0.0000 +"Bunting, Black-headed",0.0000 +"Bunting, Reed",0.0000 +"Bunting, Yellow-breasted",0.0000 +"Bunting, Yellow-browed",0.0000 +Chaffinch,0.0000 +Coot,0.0000 +Crane,0.0000 +"Crane, Sandhill",0.0000 +"Dove, Turtle",0.0000 +"Duck, Ferruginous",0.0000 +Dunlin,0.0000 +"Egret, Cattle",0.0000 +Fieldfare,0.0000 +"Gallinule, Allen's",0.0000 +"Goose, Egyptian",0.0000 +"Grebe, Pied-billed",0.0000 +"Grey, Great",0.0000 +"Grey, Lesser",0.0000 +"Grey, Southern",0.0000 +"Grosbeak, Evening",0.0000 +"Gull, Ring-billed",0.0000 +"Harrier, Hen",0.0000 +Honey-buzzard,0.0000 +"Ibis, Glossy",0.0000 +Jackdaw,0.0000 +Lapwing,0.0000 +"Martin, Crag",0.0000 +"Martin, Purple",0.0000 +Moorhen,0.0000 +Ovenbird,0.0000 +"Partridge, Red-legged",0.0000 +Peregrine,0.0000 +"Pipit, Meadow",0.0000 +"Plover, Caspian",0.0000 +"Plover, White-tailed",0.0000 +"Redpoll, Lesser",0.0000 +Roller,0.0000 +"Sandpiper, Spotted",0.0000 +"Sapsucker, Yellow-bellied",0.0000 +"Scaup, Lesser",0.0000 +"Scoter, Velvet",0.0000 +Shag,0.0000 +"Shearwater, Cory's",0.0000 +"Shrike, Long-tailed",0.0000 +Siskin,0.0000 +Smew,0.0000 +"Sparrow, Savannah",0.0000 +"Sparrow, White-throated",0.0000 +"Stint, Little",0.0000 +"Swift, Alpine",0.0000 +"Tern, Sandwich",0.0000 +"Thrush, Grey-cheeked",0.0000 +"Thrush, Mistle",0.0000 +"Thrush, Swainson's",0.0000 +"Treecreeper, Short-toed",0.0000 +"Warbler, Booted",0.0000 +"Warbler, Dusky",0.0000 +"Warbler, Garden",0.0000 +"Warbler, Golden-winged",0.0000 +"Warbler, Hooded",0.0000 +"Warbler, Moltoni's",0.0000 +"Warbler, Sardinian",0.0000 +"Warbler, Yellow-browed",0.0000 +Whimbrel,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/person/total_gpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/person/total_gpu_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..07be172767 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/person/total_gpu_hours/aggregate-Year-reference.csv @@ -0,0 +1,75 @@ +title +"GPU Hours: Total: by User" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +User,"GPU Hours: Total" +"Oriole, Baltimore",506.9128 +"Auk, Little",0.0000 +"Bunting, Black-headed",0.0000 +"Bunting, Reed",0.0000 +"Bunting, Yellow-breasted",0.0000 +"Bunting, Yellow-browed",0.0000 +Chaffinch,0.0000 +Coot,0.0000 +Crane,0.0000 +"Crane, Sandhill",0.0000 +"Dove, Turtle",0.0000 +"Duck, Ferruginous",0.0000 +Dunlin,0.0000 +"Egret, Cattle",0.0000 +Fieldfare,0.0000 +"Gallinule, Allen's",0.0000 +"Goose, Egyptian",0.0000 +"Grebe, Pied-billed",0.0000 +"Grey, Great",0.0000 +"Grey, Lesser",0.0000 +"Grey, Southern",0.0000 +"Grosbeak, Evening",0.0000 +"Gull, Ring-billed",0.0000 +"Harrier, Hen",0.0000 +Honey-buzzard,0.0000 +"Ibis, Glossy",0.0000 +Jackdaw,0.0000 +Lapwing,0.0000 +"Martin, Crag",0.0000 +"Martin, Purple",0.0000 +Moorhen,0.0000 +Ovenbird,0.0000 +"Partridge, Red-legged",0.0000 +Peregrine,0.0000 +"Pipit, Meadow",0.0000 +"Plover, Caspian",0.0000 +"Plover, White-tailed",0.0000 +"Redpoll, Lesser",0.0000 +Roller,0.0000 +"Sandpiper, Spotted",0.0000 +"Sapsucker, Yellow-bellied",0.0000 +"Scaup, Lesser",0.0000 +"Scoter, Velvet",0.0000 +Shag,0.0000 +"Shearwater, Cory's",0.0000 +"Shrike, Long-tailed",0.0000 +Siskin,0.0000 +Smew,0.0000 +"Sparrow, Savannah",0.0000 +"Sparrow, White-throated",0.0000 +"Stint, Little",0.0000 +"Swift, Alpine",0.0000 +"Tern, Sandwich",0.0000 +"Thrush, Grey-cheeked",0.0000 +"Thrush, Mistle",0.0000 +"Thrush, Swainson's",0.0000 +"Treecreeper, Short-toed",0.0000 +"Warbler, Booted",0.0000 +"Warbler, Dusky",0.0000 +"Warbler, Garden",0.0000 +"Warbler, Golden-winged",0.0000 +"Warbler, Hooded",0.0000 +"Warbler, Moltoni's",0.0000 +"Warbler, Sardinian",0.0000 +"Warbler, Yellow-browed",0.0000 +Whimbrel,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/person/total_gpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/person/total_gpu_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..eb3ade498d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/person/total_gpu_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"GPU Hours: Total: by User" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[Oriole, Baltimore] GPU Hours: Total","[Auk, Little] GPU Hours: Total","[Bunting, Black-headed] GPU Hours: Total","[Bunting, Reed] GPU Hours: Total","[Bunting, Yellow-breasted] GPU Hours: Total","[Bunting, Yellow-browed] GPU Hours: Total","[Chaffinch] GPU Hours: Total","[Coot] GPU Hours: Total","[Crane] GPU Hours: Total","[Crane, Sandhill] GPU Hours: Total","[Dove, Turtle] GPU Hours: Total","[Duck, Ferruginous] GPU Hours: Total","[Dunlin] GPU Hours: Total","[Egret, Cattle] GPU Hours: Total","[Fieldfare] GPU Hours: Total","[Gallinule, Allen's] GPU Hours: Total","[Goose, Egyptian] GPU Hours: Total","[Grebe, Pied-billed] GPU Hours: Total","[Grey, Great] GPU Hours: Total","[Grey, Lesser] GPU Hours: Total","[Grey, Southern] GPU Hours: Total","[Grosbeak, Evening] GPU Hours: Total","[Gull, Ring-billed] GPU Hours: Total","[Harrier, Hen] GPU Hours: Total","[Honey-buzzard] GPU Hours: Total","[Ibis, Glossy] GPU Hours: Total","[Jackdaw] GPU Hours: Total","[Lapwing] GPU Hours: Total","[Martin, Crag] GPU Hours: Total","[Martin, Purple] GPU Hours: Total","[Moorhen] GPU Hours: Total","[Ovenbird] GPU Hours: Total","[Partridge, Red-legged] GPU Hours: Total","[Peregrine] GPU Hours: Total","[Pipit, Meadow] GPU Hours: Total","[Plover, Caspian] GPU Hours: Total","[Plover, White-tailed] GPU Hours: Total","[Redpoll, Lesser] GPU Hours: Total","[Roller] GPU Hours: Total","[Sandpiper, Spotted] GPU Hours: Total","[Sapsucker, Yellow-bellied] GPU Hours: Total","[Scaup, Lesser] GPU Hours: Total","[Scoter, Velvet] GPU Hours: Total","[Shag] GPU Hours: Total","[Shearwater, Cory's] GPU Hours: Total","[Shrike, Long-tailed] GPU Hours: Total","[Siskin] GPU Hours: Total","[Smew] GPU Hours: Total","[Sparrow, Savannah] GPU Hours: Total","[Sparrow, White-throated] GPU Hours: Total","[Stint, Little] GPU Hours: Total","[Swift, Alpine] GPU Hours: Total","[Tern, Sandwich] GPU Hours: Total","[Thrush, Grey-cheeked] GPU Hours: Total","[Thrush, Mistle] GPU Hours: Total","[Thrush, Swainson's] GPU Hours: Total","[Treecreeper, Short-toed] GPU Hours: Total","[Warbler, Booted] GPU Hours: Total","[Warbler, Dusky] GPU Hours: Total","[Warbler, Garden] GPU Hours: Total","[Warbler, Golden-winged] GPU Hours: Total","[Warbler, Hooded] GPU Hours: Total","[Warbler, Moltoni's] GPU Hours: Total","[Warbler, Sardinian] GPU Hours: Total","[Warbler, Yellow-browed] GPU Hours: Total","[Whimbrel] GPU Hours: Total" +2016-12-22,33.4928,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-23,48.0000,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-24,48.0000,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-25,48.0000,0,0,0.0000,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-26,48.0000,0,0,0.0000,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0.0000,0,0,0,0,0,0 +2016-12-27,48.0000,0,0,0.0000,0.0000,0,0.0000,0,0,0.0000,0.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0.0000,0,0,0.0000,0,0,0,0,0,0,0,0.0000,0,0,0,0.0000,0,0,0,0,0,0.0000,0,0,0,0.0000,0.0000,0,0.0000,0,0,0.0000,0,0,0 +2016-12-28,48.0000,0,0,0.0000,0.0000,0,0.0000,0,0,0.0000,0.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0.0000,0,0.0000,0,0,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0,0,0.0000,0.0000,0.0000,0,0,0.0000,0,0,0,0,0,0.0000,0,0.0000,0,0.0000,0.0000,0,0.0000,0,0.0000,0.0000,0.0000,0,0 +2016-12-29,48.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0,0,0,0.0000,0.0000,0,0,0,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0,0,0.0000,0.0000,0,0.0000,0.0000,0,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0,0,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0,0.0000,0.0000,0.0000,0.0000,0 +2016-12-30,48.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2016-12-31,48.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0,0.0000 +2017-01-01,41.4200,0.0000,0,0.0000,0,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0,0,0,0,0.0000,0,0,0,0.0000,0,0,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0,0.0000,0.0000,0.0000,0,0,0.0000,0.0000,0,0.0000,0,0.0000,0.0000,0,0.0000,0,0,0.0000,0.0000,0,0,0.0000,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/person/total_gpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/person/total_gpu_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..abc8dc0dd9 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/person/total_gpu_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Total: by User" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[Oriole, Baltimore] GPU Hours: Total","[Auk, Little] GPU Hours: Total","[Bunting, Black-headed] GPU Hours: Total","[Bunting, Reed] GPU Hours: Total","[Bunting, Yellow-breasted] GPU Hours: Total","[Bunting, Yellow-browed] GPU Hours: Total","[Chaffinch] GPU Hours: Total","[Coot] GPU Hours: Total","[Crane] GPU Hours: Total","[Crane, Sandhill] GPU Hours: Total","[Dove, Turtle] GPU Hours: Total","[Duck, Ferruginous] GPU Hours: Total","[Dunlin] GPU Hours: Total","[Egret, Cattle] GPU Hours: Total","[Fieldfare] GPU Hours: Total","[Gallinule, Allen's] GPU Hours: Total","[Goose, Egyptian] GPU Hours: Total","[Grebe, Pied-billed] GPU Hours: Total","[Grey, Great] GPU Hours: Total","[Grey, Lesser] GPU Hours: Total","[Grey, Southern] GPU Hours: Total","[Grosbeak, Evening] GPU Hours: Total","[Gull, Ring-billed] GPU Hours: Total","[Harrier, Hen] GPU Hours: Total","[Honey-buzzard] GPU Hours: Total","[Ibis, Glossy] GPU Hours: Total","[Jackdaw] GPU Hours: Total","[Lapwing] GPU Hours: Total","[Martin, Crag] GPU Hours: Total","[Martin, Purple] GPU Hours: Total","[Moorhen] GPU Hours: Total","[Ovenbird] GPU Hours: Total","[Partridge, Red-legged] GPU Hours: Total","[Peregrine] GPU Hours: Total","[Pipit, Meadow] GPU Hours: Total","[Plover, Caspian] GPU Hours: Total","[Plover, White-tailed] GPU Hours: Total","[Redpoll, Lesser] GPU Hours: Total","[Roller] GPU Hours: Total","[Sandpiper, Spotted] GPU Hours: Total","[Sapsucker, Yellow-bellied] GPU Hours: Total","[Scaup, Lesser] GPU Hours: Total","[Scoter, Velvet] GPU Hours: Total","[Shag] GPU Hours: Total","[Shearwater, Cory's] GPU Hours: Total","[Shrike, Long-tailed] GPU Hours: Total","[Siskin] GPU Hours: Total","[Smew] GPU Hours: Total","[Sparrow, Savannah] GPU Hours: Total","[Sparrow, White-throated] GPU Hours: Total","[Stint, Little] GPU Hours: Total","[Swift, Alpine] GPU Hours: Total","[Tern, Sandwich] GPU Hours: Total","[Thrush, Grey-cheeked] GPU Hours: Total","[Thrush, Mistle] GPU Hours: Total","[Thrush, Swainson's] GPU Hours: Total","[Treecreeper, Short-toed] GPU Hours: Total","[Warbler, Booted] GPU Hours: Total","[Warbler, Dusky] GPU Hours: Total","[Warbler, Garden] GPU Hours: Total","[Warbler, Golden-winged] GPU Hours: Total","[Warbler, Hooded] GPU Hours: Total","[Warbler, Moltoni's] GPU Hours: Total","[Warbler, Sardinian] GPU Hours: Total","[Warbler, Yellow-browed] GPU Hours: Total","[Whimbrel] GPU Hours: Total" +2016-12,465.4928,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2017-01,41.4200,0.0000,0,0.0000,0,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0,0,0,0,0.0000,0,0,0,0.0000,0,0,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0,0.0000,0.0000,0.0000,0,0,0.0000,0.0000,0,0.0000,0,0.0000,0.0000,0,0.0000,0,0,0.0000,0.0000,0,0,0.0000,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/person/total_gpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/person/total_gpu_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..e572b45bf3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/person/total_gpu_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Total: by User" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[Oriole, Baltimore] GPU Hours: Total","[Auk, Little] GPU Hours: Total","[Bunting, Black-headed] GPU Hours: Total","[Bunting, Reed] GPU Hours: Total","[Bunting, Yellow-breasted] GPU Hours: Total","[Bunting, Yellow-browed] GPU Hours: Total","[Chaffinch] GPU Hours: Total","[Coot] GPU Hours: Total","[Crane] GPU Hours: Total","[Crane, Sandhill] GPU Hours: Total","[Dove, Turtle] GPU Hours: Total","[Duck, Ferruginous] GPU Hours: Total","[Dunlin] GPU Hours: Total","[Egret, Cattle] GPU Hours: Total","[Fieldfare] GPU Hours: Total","[Gallinule, Allen's] GPU Hours: Total","[Goose, Egyptian] GPU Hours: Total","[Grebe, Pied-billed] GPU Hours: Total","[Grey, Great] GPU Hours: Total","[Grey, Lesser] GPU Hours: Total","[Grey, Southern] GPU Hours: Total","[Grosbeak, Evening] GPU Hours: Total","[Gull, Ring-billed] GPU Hours: Total","[Harrier, Hen] GPU Hours: Total","[Honey-buzzard] GPU Hours: Total","[Ibis, Glossy] GPU Hours: Total","[Jackdaw] GPU Hours: Total","[Lapwing] GPU Hours: Total","[Martin, Crag] GPU Hours: Total","[Martin, Purple] GPU Hours: Total","[Moorhen] GPU Hours: Total","[Ovenbird] GPU Hours: Total","[Partridge, Red-legged] GPU Hours: Total","[Peregrine] GPU Hours: Total","[Pipit, Meadow] GPU Hours: Total","[Plover, Caspian] GPU Hours: Total","[Plover, White-tailed] GPU Hours: Total","[Redpoll, Lesser] GPU Hours: Total","[Roller] GPU Hours: Total","[Sandpiper, Spotted] GPU Hours: Total","[Sapsucker, Yellow-bellied] GPU Hours: Total","[Scaup, Lesser] GPU Hours: Total","[Scoter, Velvet] GPU Hours: Total","[Shag] GPU Hours: Total","[Shearwater, Cory's] GPU Hours: Total","[Shrike, Long-tailed] GPU Hours: Total","[Siskin] GPU Hours: Total","[Smew] GPU Hours: Total","[Sparrow, Savannah] GPU Hours: Total","[Sparrow, White-throated] GPU Hours: Total","[Stint, Little] GPU Hours: Total","[Swift, Alpine] GPU Hours: Total","[Tern, Sandwich] GPU Hours: Total","[Thrush, Grey-cheeked] GPU Hours: Total","[Thrush, Mistle] GPU Hours: Total","[Thrush, Swainson's] GPU Hours: Total","[Treecreeper, Short-toed] GPU Hours: Total","[Warbler, Booted] GPU Hours: Total","[Warbler, Dusky] GPU Hours: Total","[Warbler, Garden] GPU Hours: Total","[Warbler, Golden-winged] GPU Hours: Total","[Warbler, Hooded] GPU Hours: Total","[Warbler, Moltoni's] GPU Hours: Total","[Warbler, Sardinian] GPU Hours: Total","[Warbler, Yellow-browed] GPU Hours: Total","[Whimbrel] GPU Hours: Total" +"2016 Q4",465.4928,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +"2017 Q1",41.4200,0.0000,0,0.0000,0,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0,0,0,0,0.0000,0,0,0,0.0000,0,0,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0,0.0000,0.0000,0.0000,0,0,0.0000,0.0000,0,0.0000,0,0.0000,0.0000,0,0.0000,0,0,0.0000,0.0000,0,0,0.0000,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/person/total_gpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/person/total_gpu_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..cfa6ba8617 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/person/total_gpu_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Total: by User" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[Oriole, Baltimore] GPU Hours: Total","[Auk, Little] GPU Hours: Total","[Bunting, Black-headed] GPU Hours: Total","[Bunting, Reed] GPU Hours: Total","[Bunting, Yellow-breasted] GPU Hours: Total","[Bunting, Yellow-browed] GPU Hours: Total","[Chaffinch] GPU Hours: Total","[Coot] GPU Hours: Total","[Crane] GPU Hours: Total","[Crane, Sandhill] GPU Hours: Total","[Dove, Turtle] GPU Hours: Total","[Duck, Ferruginous] GPU Hours: Total","[Dunlin] GPU Hours: Total","[Egret, Cattle] GPU Hours: Total","[Fieldfare] GPU Hours: Total","[Gallinule, Allen's] GPU Hours: Total","[Goose, Egyptian] GPU Hours: Total","[Grebe, Pied-billed] GPU Hours: Total","[Grey, Great] GPU Hours: Total","[Grey, Lesser] GPU Hours: Total","[Grey, Southern] GPU Hours: Total","[Grosbeak, Evening] GPU Hours: Total","[Gull, Ring-billed] GPU Hours: Total","[Harrier, Hen] GPU Hours: Total","[Honey-buzzard] GPU Hours: Total","[Ibis, Glossy] GPU Hours: Total","[Jackdaw] GPU Hours: Total","[Lapwing] GPU Hours: Total","[Martin, Crag] GPU Hours: Total","[Martin, Purple] GPU Hours: Total","[Moorhen] GPU Hours: Total","[Ovenbird] GPU Hours: Total","[Partridge, Red-legged] GPU Hours: Total","[Peregrine] GPU Hours: Total","[Pipit, Meadow] GPU Hours: Total","[Plover, Caspian] GPU Hours: Total","[Plover, White-tailed] GPU Hours: Total","[Redpoll, Lesser] GPU Hours: Total","[Roller] GPU Hours: Total","[Sandpiper, Spotted] GPU Hours: Total","[Sapsucker, Yellow-bellied] GPU Hours: Total","[Scaup, Lesser] GPU Hours: Total","[Scoter, Velvet] GPU Hours: Total","[Shag] GPU Hours: Total","[Shearwater, Cory's] GPU Hours: Total","[Shrike, Long-tailed] GPU Hours: Total","[Siskin] GPU Hours: Total","[Smew] GPU Hours: Total","[Sparrow, Savannah] GPU Hours: Total","[Sparrow, White-throated] GPU Hours: Total","[Stint, Little] GPU Hours: Total","[Swift, Alpine] GPU Hours: Total","[Tern, Sandwich] GPU Hours: Total","[Thrush, Grey-cheeked] GPU Hours: Total","[Thrush, Mistle] GPU Hours: Total","[Thrush, Swainson's] GPU Hours: Total","[Treecreeper, Short-toed] GPU Hours: Total","[Warbler, Booted] GPU Hours: Total","[Warbler, Dusky] GPU Hours: Total","[Warbler, Garden] GPU Hours: Total","[Warbler, Golden-winged] GPU Hours: Total","[Warbler, Hooded] GPU Hours: Total","[Warbler, Moltoni's] GPU Hours: Total","[Warbler, Sardinian] GPU Hours: Total","[Warbler, Yellow-browed] GPU Hours: Total","[Whimbrel] GPU Hours: Total" +2016,465.4928,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2017,41.4200,0.0000,0,0.0000,0,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0,0,0,0,0.0000,0,0,0,0.0000,0,0,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0,0.0000,0.0000,0.0000,0,0,0.0000,0.0000,0,0.0000,0,0.0000,0.0000,0,0.0000,0,0,0.0000,0.0000,0,0,0.0000,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/pi/avg_gpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/pi/avg_gpu_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..13ebc96448 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/pi/avg_gpu_hours/aggregate-Day-reference.csv @@ -0,0 +1,50 @@ +title +"GPU Hours: Per Job: by PI" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +PI,"GPU Hours: Per Job" +Chaffinch,16.35202509 +"Accentor, Alpine",0.00000000 +Bittern,0.00000000 +Blackbird,0.00000000 +"Bluetail, Red-flanked",0.00000000 +Bufflehead,0.00000000 +"Bunting, Ortolan",0.00000000 +"Chiffchaff, Iberian",0.00000000 +Dotterel,0.00000000 +"Dowitcher, Short-billed",0.00000000 +Dunlin,0.00000000 +"Egret, Snowy",0.00000000 +Fieldfare,0.00000000 +"Flycatcher, Taiga",0.00000000 +Fulmar,0.00000000 +"Goose, Red-breasted",0.00000000 +"Gull, Glaucous-winged",0.00000000 +"Gull, Yellow-legged",0.00000000 +"Harrier, Hen",0.00000000 +Jackdaw,0.00000000 +"Kestrel, Lesser",0.00000000 +"Lark, Calandra",0.00000000 +"Martin, Sand",0.00000000 +Moorhen,0.00000000 +Nuthatch,0.00000000 +"Petrel, Fea's",0.00000000 +"Scaup, Lesser",0.00000000 +"Shearwater, Balearic",0.00000000 +"Shearwater, Great",0.00000000 +"Shearwater, Macaronesian",0.00000000 +Smew,0.00000000 +"Spotted, Great",0.00000000 +"Swift, Little",0.00000000 +"Tern, Caspian",0.00000000 +"Thrush, Hermit",0.00000000 +"Warbler, Blackpoll",0.00000000 +"Warbler, Cetti's",0.00000000 +"Warbler, Hooded",0.00000000 +"Warbler, Savi's",0.00000000 +"White, Great",0.00000000 +"Yellowthroat, Common",0.00000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/pi/avg_gpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/pi/avg_gpu_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..13ebc96448 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/pi/avg_gpu_hours/aggregate-Month-reference.csv @@ -0,0 +1,50 @@ +title +"GPU Hours: Per Job: by PI" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +PI,"GPU Hours: Per Job" +Chaffinch,16.35202509 +"Accentor, Alpine",0.00000000 +Bittern,0.00000000 +Blackbird,0.00000000 +"Bluetail, Red-flanked",0.00000000 +Bufflehead,0.00000000 +"Bunting, Ortolan",0.00000000 +"Chiffchaff, Iberian",0.00000000 +Dotterel,0.00000000 +"Dowitcher, Short-billed",0.00000000 +Dunlin,0.00000000 +"Egret, Snowy",0.00000000 +Fieldfare,0.00000000 +"Flycatcher, Taiga",0.00000000 +Fulmar,0.00000000 +"Goose, Red-breasted",0.00000000 +"Gull, Glaucous-winged",0.00000000 +"Gull, Yellow-legged",0.00000000 +"Harrier, Hen",0.00000000 +Jackdaw,0.00000000 +"Kestrel, Lesser",0.00000000 +"Lark, Calandra",0.00000000 +"Martin, Sand",0.00000000 +Moorhen,0.00000000 +Nuthatch,0.00000000 +"Petrel, Fea's",0.00000000 +"Scaup, Lesser",0.00000000 +"Shearwater, Balearic",0.00000000 +"Shearwater, Great",0.00000000 +"Shearwater, Macaronesian",0.00000000 +Smew,0.00000000 +"Spotted, Great",0.00000000 +"Swift, Little",0.00000000 +"Tern, Caspian",0.00000000 +"Thrush, Hermit",0.00000000 +"Warbler, Blackpoll",0.00000000 +"Warbler, Cetti's",0.00000000 +"Warbler, Hooded",0.00000000 +"Warbler, Savi's",0.00000000 +"White, Great",0.00000000 +"Yellowthroat, Common",0.00000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/pi/avg_gpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/pi/avg_gpu_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..13ebc96448 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/pi/avg_gpu_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,50 @@ +title +"GPU Hours: Per Job: by PI" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +PI,"GPU Hours: Per Job" +Chaffinch,16.35202509 +"Accentor, Alpine",0.00000000 +Bittern,0.00000000 +Blackbird,0.00000000 +"Bluetail, Red-flanked",0.00000000 +Bufflehead,0.00000000 +"Bunting, Ortolan",0.00000000 +"Chiffchaff, Iberian",0.00000000 +Dotterel,0.00000000 +"Dowitcher, Short-billed",0.00000000 +Dunlin,0.00000000 +"Egret, Snowy",0.00000000 +Fieldfare,0.00000000 +"Flycatcher, Taiga",0.00000000 +Fulmar,0.00000000 +"Goose, Red-breasted",0.00000000 +"Gull, Glaucous-winged",0.00000000 +"Gull, Yellow-legged",0.00000000 +"Harrier, Hen",0.00000000 +Jackdaw,0.00000000 +"Kestrel, Lesser",0.00000000 +"Lark, Calandra",0.00000000 +"Martin, Sand",0.00000000 +Moorhen,0.00000000 +Nuthatch,0.00000000 +"Petrel, Fea's",0.00000000 +"Scaup, Lesser",0.00000000 +"Shearwater, Balearic",0.00000000 +"Shearwater, Great",0.00000000 +"Shearwater, Macaronesian",0.00000000 +Smew,0.00000000 +"Spotted, Great",0.00000000 +"Swift, Little",0.00000000 +"Tern, Caspian",0.00000000 +"Thrush, Hermit",0.00000000 +"Warbler, Blackpoll",0.00000000 +"Warbler, Cetti's",0.00000000 +"Warbler, Hooded",0.00000000 +"Warbler, Savi's",0.00000000 +"White, Great",0.00000000 +"Yellowthroat, Common",0.00000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/pi/avg_gpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/pi/avg_gpu_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..13ebc96448 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/pi/avg_gpu_hours/aggregate-Year-reference.csv @@ -0,0 +1,50 @@ +title +"GPU Hours: Per Job: by PI" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +PI,"GPU Hours: Per Job" +Chaffinch,16.35202509 +"Accentor, Alpine",0.00000000 +Bittern,0.00000000 +Blackbird,0.00000000 +"Bluetail, Red-flanked",0.00000000 +Bufflehead,0.00000000 +"Bunting, Ortolan",0.00000000 +"Chiffchaff, Iberian",0.00000000 +Dotterel,0.00000000 +"Dowitcher, Short-billed",0.00000000 +Dunlin,0.00000000 +"Egret, Snowy",0.00000000 +Fieldfare,0.00000000 +"Flycatcher, Taiga",0.00000000 +Fulmar,0.00000000 +"Goose, Red-breasted",0.00000000 +"Gull, Glaucous-winged",0.00000000 +"Gull, Yellow-legged",0.00000000 +"Harrier, Hen",0.00000000 +Jackdaw,0.00000000 +"Kestrel, Lesser",0.00000000 +"Lark, Calandra",0.00000000 +"Martin, Sand",0.00000000 +Moorhen,0.00000000 +Nuthatch,0.00000000 +"Petrel, Fea's",0.00000000 +"Scaup, Lesser",0.00000000 +"Shearwater, Balearic",0.00000000 +"Shearwater, Great",0.00000000 +"Shearwater, Macaronesian",0.00000000 +Smew,0.00000000 +"Spotted, Great",0.00000000 +"Swift, Little",0.00000000 +"Tern, Caspian",0.00000000 +"Thrush, Hermit",0.00000000 +"Warbler, Blackpoll",0.00000000 +"Warbler, Cetti's",0.00000000 +"Warbler, Hooded",0.00000000 +"Warbler, Savi's",0.00000000 +"White, Great",0.00000000 +"Yellowthroat, Common",0.00000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/pi/avg_gpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/pi/avg_gpu_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..957bf7aa23 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/pi/avg_gpu_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"GPU Hours: Per Job: by PI" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[Chaffinch] GPU Hours: Per Job","[Accentor, Alpine] GPU Hours: Per Job","[Bittern] GPU Hours: Per Job","[Blackbird] GPU Hours: Per Job","[Bluetail, Red-flanked] GPU Hours: Per Job","[Bufflehead] GPU Hours: Per Job","[Bunting, Ortolan] GPU Hours: Per Job","[Chiffchaff, Iberian] GPU Hours: Per Job","[Dotterel] GPU Hours: Per Job","[Dowitcher, Short-billed] GPU Hours: Per Job","[Dunlin] GPU Hours: Per Job","[Egret, Snowy] GPU Hours: Per Job","[Fieldfare] GPU Hours: Per Job","[Flycatcher, Taiga] GPU Hours: Per Job","[Fulmar] GPU Hours: Per Job","[Goose, Red-breasted] GPU Hours: Per Job","[Gull, Glaucous-winged] GPU Hours: Per Job","[Gull, Yellow-legged] GPU Hours: Per Job","[Harrier, Hen] GPU Hours: Per Job","[Jackdaw] GPU Hours: Per Job","[Kestrel, Lesser] GPU Hours: Per Job","[Lark, Calandra] GPU Hours: Per Job","[Martin, Sand] GPU Hours: Per Job","[Moorhen] GPU Hours: Per Job","[Nuthatch] GPU Hours: Per Job","[Petrel, Fea's] GPU Hours: Per Job","[Scaup, Lesser] GPU Hours: Per Job","[Shearwater, Balearic] GPU Hours: Per Job","[Shearwater, Great] GPU Hours: Per Job","[Shearwater, Macaronesian] GPU Hours: Per Job","[Smew] GPU Hours: Per Job","[Spotted, Great] GPU Hours: Per Job","[Swift, Little] GPU Hours: Per Job","[Tern, Caspian] GPU Hours: Per Job","[Thrush, Hermit] GPU Hours: Per Job","[Warbler, Blackpoll] GPU Hours: Per Job","[Warbler, Cetti's] GPU Hours: Per Job","[Warbler, Hooded] GPU Hours: Per Job","[Warbler, Savi's] GPU Hours: Per Job","[White, Great] GPU Hours: Per Job","[Yellowthroat, Common] GPU Hours: Per Job" +2016-12-22,33.49277778,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-23,48.00000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00000000,0,0,0,0,0,0,0,0,0,0,0,0.00000000,0,0,0,0,0,0,0 +2016-12-24,48.00000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00000000,0,0,0,0,0,0,0,0,0,0,0,0.00000000,0,0,0,0,0,0,0 +2016-12-25,48.00000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00000000,0,0,0,0,0,0,0,0,0,0,0,0.00000000,0,0,0,0,0,0,0 +2016-12-26,48.00000000,0,0,0,0.00000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00000000,0,0,0,0,0,0,0,0,0,0,0,0.00000000,0,0,0,0,0,0,0 +2016-12-27,24.00000000,0,0,0,0.00000000,0,0,0,0,0,0,0,0.00000000,0.00000000,0.00000000,0,0,0,0,0,0,0.00000000,0,0,0,0.00000000,0,0.00000000,0.00000000,0,0,0,0,0.00000000,0,0,0,0,0,0.00000000,0 +2016-12-28,24.00000000,0,0,0,0.00000000,0.00000000,0,0,0.00000000,0,0,0,0.00000000,0.00000000,0.00000000,0,0,0,0,0,0.00000000,0.00000000,0,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0,0,0,0,0.00000000,0,0.00000000,0,0.00000000,0,0.00000000,0 +2016-12-29,24.00000000,0,0,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0,0,0.00000000,0.00000000,0.00000000,0,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0,0,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0 +2016-12-30,24.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000 +2016-12-31,8.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0 +2017-01-01,1.53407407,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0,0.00000000,0,0,0,0,0,0.00000000,0.00000000,0,0,0,0.00000000,0,0.00000000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/pi/avg_gpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/pi/avg_gpu_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..5cdf865fd6 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/pi/avg_gpu_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Per Job: by PI" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[Chaffinch] GPU Hours: Per Job","[Accentor, Alpine] GPU Hours: Per Job","[Bittern] GPU Hours: Per Job","[Blackbird] GPU Hours: Per Job","[Bluetail, Red-flanked] GPU Hours: Per Job","[Bufflehead] GPU Hours: Per Job","[Bunting, Ortolan] GPU Hours: Per Job","[Chiffchaff, Iberian] GPU Hours: Per Job","[Dotterel] GPU Hours: Per Job","[Dowitcher, Short-billed] GPU Hours: Per Job","[Dunlin] GPU Hours: Per Job","[Egret, Snowy] GPU Hours: Per Job","[Fieldfare] GPU Hours: Per Job","[Flycatcher, Taiga] GPU Hours: Per Job","[Fulmar] GPU Hours: Per Job","[Goose, Red-breasted] GPU Hours: Per Job","[Gull, Glaucous-winged] GPU Hours: Per Job","[Gull, Yellow-legged] GPU Hours: Per Job","[Harrier, Hen] GPU Hours: Per Job","[Jackdaw] GPU Hours: Per Job","[Kestrel, Lesser] GPU Hours: Per Job","[Lark, Calandra] GPU Hours: Per Job","[Martin, Sand] GPU Hours: Per Job","[Moorhen] GPU Hours: Per Job","[Nuthatch] GPU Hours: Per Job","[Petrel, Fea's] GPU Hours: Per Job","[Scaup, Lesser] GPU Hours: Per Job","[Shearwater, Balearic] GPU Hours: Per Job","[Shearwater, Great] GPU Hours: Per Job","[Shearwater, Macaronesian] GPU Hours: Per Job","[Smew] GPU Hours: Per Job","[Spotted, Great] GPU Hours: Per Job","[Swift, Little] GPU Hours: Per Job","[Tern, Caspian] GPU Hours: Per Job","[Thrush, Hermit] GPU Hours: Per Job","[Warbler, Blackpoll] GPU Hours: Per Job","[Warbler, Cetti's] GPU Hours: Per Job","[Warbler, Hooded] GPU Hours: Per Job","[Warbler, Savi's] GPU Hours: Per Job","[White, Great] GPU Hours: Per Job","[Yellowthroat, Common] GPU Hours: Per Job" +2016-12,77.58212963,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000 +2017-01,1.53407407,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0,0.00000000,0,0,0,0,0,0.00000000,0.00000000,0,0,0,0.00000000,0,0.00000000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/pi/avg_gpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/pi/avg_gpu_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..eb7dda2139 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/pi/avg_gpu_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Per Job: by PI" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[Chaffinch] GPU Hours: Per Job","[Accentor, Alpine] GPU Hours: Per Job","[Bittern] GPU Hours: Per Job","[Blackbird] GPU Hours: Per Job","[Bluetail, Red-flanked] GPU Hours: Per Job","[Bufflehead] GPU Hours: Per Job","[Bunting, Ortolan] GPU Hours: Per Job","[Chiffchaff, Iberian] GPU Hours: Per Job","[Dotterel] GPU Hours: Per Job","[Dowitcher, Short-billed] GPU Hours: Per Job","[Dunlin] GPU Hours: Per Job","[Egret, Snowy] GPU Hours: Per Job","[Fieldfare] GPU Hours: Per Job","[Flycatcher, Taiga] GPU Hours: Per Job","[Fulmar] GPU Hours: Per Job","[Goose, Red-breasted] GPU Hours: Per Job","[Gull, Glaucous-winged] GPU Hours: Per Job","[Gull, Yellow-legged] GPU Hours: Per Job","[Harrier, Hen] GPU Hours: Per Job","[Jackdaw] GPU Hours: Per Job","[Kestrel, Lesser] GPU Hours: Per Job","[Lark, Calandra] GPU Hours: Per Job","[Martin, Sand] GPU Hours: Per Job","[Moorhen] GPU Hours: Per Job","[Nuthatch] GPU Hours: Per Job","[Petrel, Fea's] GPU Hours: Per Job","[Scaup, Lesser] GPU Hours: Per Job","[Shearwater, Balearic] GPU Hours: Per Job","[Shearwater, Great] GPU Hours: Per Job","[Shearwater, Macaronesian] GPU Hours: Per Job","[Smew] GPU Hours: Per Job","[Spotted, Great] GPU Hours: Per Job","[Swift, Little] GPU Hours: Per Job","[Tern, Caspian] GPU Hours: Per Job","[Thrush, Hermit] GPU Hours: Per Job","[Warbler, Blackpoll] GPU Hours: Per Job","[Warbler, Cetti's] GPU Hours: Per Job","[Warbler, Hooded] GPU Hours: Per Job","[Warbler, Savi's] GPU Hours: Per Job","[White, Great] GPU Hours: Per Job","[Yellowthroat, Common] GPU Hours: Per Job" +"2016 Q4",77.58212963,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000 +"2017 Q1",1.53407407,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0,0.00000000,0,0,0,0,0,0.00000000,0.00000000,0,0,0,0.00000000,0,0.00000000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/pi/avg_gpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/pi/avg_gpu_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..a9dcf360a3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/pi/avg_gpu_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Per Job: by PI" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[Chaffinch] GPU Hours: Per Job","[Accentor, Alpine] GPU Hours: Per Job","[Bittern] GPU Hours: Per Job","[Blackbird] GPU Hours: Per Job","[Bluetail, Red-flanked] GPU Hours: Per Job","[Bufflehead] GPU Hours: Per Job","[Bunting, Ortolan] GPU Hours: Per Job","[Chiffchaff, Iberian] GPU Hours: Per Job","[Dotterel] GPU Hours: Per Job","[Dowitcher, Short-billed] GPU Hours: Per Job","[Dunlin] GPU Hours: Per Job","[Egret, Snowy] GPU Hours: Per Job","[Fieldfare] GPU Hours: Per Job","[Flycatcher, Taiga] GPU Hours: Per Job","[Fulmar] GPU Hours: Per Job","[Goose, Red-breasted] GPU Hours: Per Job","[Gull, Glaucous-winged] GPU Hours: Per Job","[Gull, Yellow-legged] GPU Hours: Per Job","[Harrier, Hen] GPU Hours: Per Job","[Jackdaw] GPU Hours: Per Job","[Kestrel, Lesser] GPU Hours: Per Job","[Lark, Calandra] GPU Hours: Per Job","[Martin, Sand] GPU Hours: Per Job","[Moorhen] GPU Hours: Per Job","[Nuthatch] GPU Hours: Per Job","[Petrel, Fea's] GPU Hours: Per Job","[Scaup, Lesser] GPU Hours: Per Job","[Shearwater, Balearic] GPU Hours: Per Job","[Shearwater, Great] GPU Hours: Per Job","[Shearwater, Macaronesian] GPU Hours: Per Job","[Smew] GPU Hours: Per Job","[Spotted, Great] GPU Hours: Per Job","[Swift, Little] GPU Hours: Per Job","[Tern, Caspian] GPU Hours: Per Job","[Thrush, Hermit] GPU Hours: Per Job","[Warbler, Blackpoll] GPU Hours: Per Job","[Warbler, Cetti's] GPU Hours: Per Job","[Warbler, Hooded] GPU Hours: Per Job","[Warbler, Savi's] GPU Hours: Per Job","[White, Great] GPU Hours: Per Job","[Yellowthroat, Common] GPU Hours: Per Job" +2016,77.58212963,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000 +2017,1.53407407,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0,0.00000000,0,0,0,0,0,0.00000000,0.00000000,0,0,0,0.00000000,0,0.00000000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/pi/avg_gpus/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/pi/avg_gpus/aggregate-Day-reference.csv new file mode 100644 index 0000000000..babaa61035 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/pi/avg_gpus/aggregate-Day-reference.csv @@ -0,0 +1,50 @@ +title +"GPU Count: Per Job: by PI" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +PI,"GPU Count: Per Job","Std Dev: GPU Count: Per Job" +Chaffinch,0.1290,0.08824730508988667 +"Accentor, Alpine",0.0000,0 +Bittern,0.0000,0 +Blackbird,0.0000,0 +"Bluetail, Red-flanked",0.0000,0 +Bufflehead,0.0000,0 +"Bunting, Ortolan",0.0000,0 +"Chiffchaff, Iberian",0.0000,0 +Dotterel,0.0000,0 +"Dowitcher, Short-billed",0.0000,0 +Dunlin,0.0000,0 +"Egret, Snowy",0.0000,0 +Fieldfare,0.0000,0 +"Flycatcher, Taiga",0.0000,0 +Fulmar,0.0000,0 +"Goose, Red-breasted",0.0000,0 +"Gull, Glaucous-winged",0.0000,0 +"Gull, Yellow-legged",0.0000,0 +"Harrier, Hen",0.0000,0 +Jackdaw,0.0000,0 +"Kestrel, Lesser",0.0000,0 +"Lark, Calandra",0.0000,0 +"Martin, Sand",0.0000,0 +Moorhen,0.0000,0 +Nuthatch,0.0000,0 +"Petrel, Fea's",0.0000,0 +"Scaup, Lesser",0.0000,0 +"Shearwater, Balearic",0.0000,0 +"Shearwater, Great",0.0000,0 +"Shearwater, Macaronesian",0.0000,0 +Smew,0.0000,0 +"Spotted, Great",0.0000,0 +"Swift, Little",0.0000,0 +"Tern, Caspian",0.0000,0 +"Thrush, Hermit",0.0000,0 +"Warbler, Blackpoll",0.0000,0 +"Warbler, Cetti's",0.0000,0 +"Warbler, Hooded",0.0000,0 +"Warbler, Savi's",0.0000,0 +"White, Great",0.0000,0 +"Yellowthroat, Common",0.0000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/pi/avg_gpus/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/pi/avg_gpus/aggregate-Month-reference.csv new file mode 100644 index 0000000000..babaa61035 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/pi/avg_gpus/aggregate-Month-reference.csv @@ -0,0 +1,50 @@ +title +"GPU Count: Per Job: by PI" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +PI,"GPU Count: Per Job","Std Dev: GPU Count: Per Job" +Chaffinch,0.1290,0.08824730508988667 +"Accentor, Alpine",0.0000,0 +Bittern,0.0000,0 +Blackbird,0.0000,0 +"Bluetail, Red-flanked",0.0000,0 +Bufflehead,0.0000,0 +"Bunting, Ortolan",0.0000,0 +"Chiffchaff, Iberian",0.0000,0 +Dotterel,0.0000,0 +"Dowitcher, Short-billed",0.0000,0 +Dunlin,0.0000,0 +"Egret, Snowy",0.0000,0 +Fieldfare,0.0000,0 +"Flycatcher, Taiga",0.0000,0 +Fulmar,0.0000,0 +"Goose, Red-breasted",0.0000,0 +"Gull, Glaucous-winged",0.0000,0 +"Gull, Yellow-legged",0.0000,0 +"Harrier, Hen",0.0000,0 +Jackdaw,0.0000,0 +"Kestrel, Lesser",0.0000,0 +"Lark, Calandra",0.0000,0 +"Martin, Sand",0.0000,0 +Moorhen,0.0000,0 +Nuthatch,0.0000,0 +"Petrel, Fea's",0.0000,0 +"Scaup, Lesser",0.0000,0 +"Shearwater, Balearic",0.0000,0 +"Shearwater, Great",0.0000,0 +"Shearwater, Macaronesian",0.0000,0 +Smew,0.0000,0 +"Spotted, Great",0.0000,0 +"Swift, Little",0.0000,0 +"Tern, Caspian",0.0000,0 +"Thrush, Hermit",0.0000,0 +"Warbler, Blackpoll",0.0000,0 +"Warbler, Cetti's",0.0000,0 +"Warbler, Hooded",0.0000,0 +"Warbler, Savi's",0.0000,0 +"White, Great",0.0000,0 +"Yellowthroat, Common",0.0000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/pi/avg_gpus/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/pi/avg_gpus/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..babaa61035 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/pi/avg_gpus/aggregate-Quarter-reference.csv @@ -0,0 +1,50 @@ +title +"GPU Count: Per Job: by PI" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +PI,"GPU Count: Per Job","Std Dev: GPU Count: Per Job" +Chaffinch,0.1290,0.08824730508988667 +"Accentor, Alpine",0.0000,0 +Bittern,0.0000,0 +Blackbird,0.0000,0 +"Bluetail, Red-flanked",0.0000,0 +Bufflehead,0.0000,0 +"Bunting, Ortolan",0.0000,0 +"Chiffchaff, Iberian",0.0000,0 +Dotterel,0.0000,0 +"Dowitcher, Short-billed",0.0000,0 +Dunlin,0.0000,0 +"Egret, Snowy",0.0000,0 +Fieldfare,0.0000,0 +"Flycatcher, Taiga",0.0000,0 +Fulmar,0.0000,0 +"Goose, Red-breasted",0.0000,0 +"Gull, Glaucous-winged",0.0000,0 +"Gull, Yellow-legged",0.0000,0 +"Harrier, Hen",0.0000,0 +Jackdaw,0.0000,0 +"Kestrel, Lesser",0.0000,0 +"Lark, Calandra",0.0000,0 +"Martin, Sand",0.0000,0 +Moorhen,0.0000,0 +Nuthatch,0.0000,0 +"Petrel, Fea's",0.0000,0 +"Scaup, Lesser",0.0000,0 +"Shearwater, Balearic",0.0000,0 +"Shearwater, Great",0.0000,0 +"Shearwater, Macaronesian",0.0000,0 +Smew,0.0000,0 +"Spotted, Great",0.0000,0 +"Swift, Little",0.0000,0 +"Tern, Caspian",0.0000,0 +"Thrush, Hermit",0.0000,0 +"Warbler, Blackpoll",0.0000,0 +"Warbler, Cetti's",0.0000,0 +"Warbler, Hooded",0.0000,0 +"Warbler, Savi's",0.0000,0 +"White, Great",0.0000,0 +"Yellowthroat, Common",0.0000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/pi/avg_gpus/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/pi/avg_gpus/aggregate-Year-reference.csv new file mode 100644 index 0000000000..babaa61035 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/pi/avg_gpus/aggregate-Year-reference.csv @@ -0,0 +1,50 @@ +title +"GPU Count: Per Job: by PI" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +PI,"GPU Count: Per Job","Std Dev: GPU Count: Per Job" +Chaffinch,0.1290,0.08824730508988667 +"Accentor, Alpine",0.0000,0 +Bittern,0.0000,0 +Blackbird,0.0000,0 +"Bluetail, Red-flanked",0.0000,0 +Bufflehead,0.0000,0 +"Bunting, Ortolan",0.0000,0 +"Chiffchaff, Iberian",0.0000,0 +Dotterel,0.0000,0 +"Dowitcher, Short-billed",0.0000,0 +Dunlin,0.0000,0 +"Egret, Snowy",0.0000,0 +Fieldfare,0.0000,0 +"Flycatcher, Taiga",0.0000,0 +Fulmar,0.0000,0 +"Goose, Red-breasted",0.0000,0 +"Gull, Glaucous-winged",0.0000,0 +"Gull, Yellow-legged",0.0000,0 +"Harrier, Hen",0.0000,0 +Jackdaw,0.0000,0 +"Kestrel, Lesser",0.0000,0 +"Lark, Calandra",0.0000,0 +"Martin, Sand",0.0000,0 +Moorhen,0.0000,0 +Nuthatch,0.0000,0 +"Petrel, Fea's",0.0000,0 +"Scaup, Lesser",0.0000,0 +"Shearwater, Balearic",0.0000,0 +"Shearwater, Great",0.0000,0 +"Shearwater, Macaronesian",0.0000,0 +Smew,0.0000,0 +"Spotted, Great",0.0000,0 +"Swift, Little",0.0000,0 +"Tern, Caspian",0.0000,0 +"Thrush, Hermit",0.0000,0 +"Warbler, Blackpoll",0.0000,0 +"Warbler, Cetti's",0.0000,0 +"Warbler, Hooded",0.0000,0 +"Warbler, Savi's",0.0000,0 +"White, Great",0.0000,0 +"Yellowthroat, Common",0.0000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/pi/avg_gpus/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/pi/avg_gpus/timeseries-Day-reference.csv new file mode 100644 index 0000000000..fd03339839 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/pi/avg_gpus/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"GPU Count: Per Job: by PI" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[Chaffinch] GPU Count: Per Job","[Accentor, Alpine] GPU Count: Per Job","[Bittern] GPU Count: Per Job","[Blackbird] GPU Count: Per Job","[Bluetail, Red-flanked] GPU Count: Per Job","[Bufflehead] GPU Count: Per Job","[Bunting, Ortolan] GPU Count: Per Job","[Chiffchaff, Iberian] GPU Count: Per Job","[Dotterel] GPU Count: Per Job","[Dowitcher, Short-billed] GPU Count: Per Job","[Dunlin] GPU Count: Per Job","[Egret, Snowy] GPU Count: Per Job","[Fieldfare] GPU Count: Per Job","[Flycatcher, Taiga] GPU Count: Per Job","[Fulmar] GPU Count: Per Job","[Goose, Red-breasted] GPU Count: Per Job","[Gull, Glaucous-winged] GPU Count: Per Job","[Gull, Yellow-legged] GPU Count: Per Job","[Harrier, Hen] GPU Count: Per Job","[Jackdaw] GPU Count: Per Job","[Kestrel, Lesser] GPU Count: Per Job","[Lark, Calandra] GPU Count: Per Job","[Martin, Sand] GPU Count: Per Job","[Moorhen] GPU Count: Per Job","[Nuthatch] GPU Count: Per Job","[Petrel, Fea's] GPU Count: Per Job","[Scaup, Lesser] GPU Count: Per Job","[Shearwater, Balearic] GPU Count: Per Job","[Shearwater, Great] GPU Count: Per Job","[Shearwater, Macaronesian] GPU Count: Per Job","[Smew] GPU Count: Per Job","[Spotted, Great] GPU Count: Per Job","[Swift, Little] GPU Count: Per Job","[Tern, Caspian] GPU Count: Per Job","[Thrush, Hermit] GPU Count: Per Job","[Warbler, Blackpoll] GPU Count: Per Job","[Warbler, Cetti's] GPU Count: Per Job","[Warbler, Hooded] GPU Count: Per Job","[Warbler, Savi's] GPU Count: Per Job","[White, Great] GPU Count: Per Job","[Yellowthroat, Common] GPU Count: Per Job" +2016-12-22,2.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-23,2.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0 +2016-12-24,2.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0 +2016-12-25,2.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0 +2016-12-26,2.0000,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0 +2016-12-27,1.0000,0,0,0,0.0000,0,0,0,0,0,0,0,0.0000,0.0000,0.0000,0,0,0,0,0,0,0.0000,0,0,0,0.0000,0,0.0000,0.0000,0,0,0,0,0.0000,0,0,0,0,0,0.0000,0 +2016-12-28,1.0000,0,0,0,0.0000,0.0000,0,0,0.0000,0,0,0,0.0000,0.0000,0.0000,0,0,0,0,0,0.0000,0.0000,0,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0,0,0,0.0000,0,0.0000,0,0.0000,0,0.0000,0 +2016-12-29,1.0000,0,0,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0,0,0.0000,0.0000,0.0000,0,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0,0,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0 +2016-12-30,1.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2016-12-31,0.3333,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0 +2017-01-01,0.1481,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0,0.0000,0,0,0,0,0,0.0000,0.0000,0,0,0,0.0000,0,0.0000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/pi/avg_gpus/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/pi/avg_gpus/timeseries-Month-reference.csv new file mode 100644 index 0000000000..d8b9a8d88a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/pi/avg_gpus/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Count: Per Job: by PI" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[Chaffinch] GPU Count: Per Job","[Accentor, Alpine] GPU Count: Per Job","[Bittern] GPU Count: Per Job","[Blackbird] GPU Count: Per Job","[Bluetail, Red-flanked] GPU Count: Per Job","[Bufflehead] GPU Count: Per Job","[Bunting, Ortolan] GPU Count: Per Job","[Chiffchaff, Iberian] GPU Count: Per Job","[Dotterel] GPU Count: Per Job","[Dowitcher, Short-billed] GPU Count: Per Job","[Dunlin] GPU Count: Per Job","[Egret, Snowy] GPU Count: Per Job","[Fieldfare] GPU Count: Per Job","[Flycatcher, Taiga] GPU Count: Per Job","[Fulmar] GPU Count: Per Job","[Goose, Red-breasted] GPU Count: Per Job","[Gull, Glaucous-winged] GPU Count: Per Job","[Gull, Yellow-legged] GPU Count: Per Job","[Harrier, Hen] GPU Count: Per Job","[Jackdaw] GPU Count: Per Job","[Kestrel, Lesser] GPU Count: Per Job","[Lark, Calandra] GPU Count: Per Job","[Martin, Sand] GPU Count: Per Job","[Moorhen] GPU Count: Per Job","[Nuthatch] GPU Count: Per Job","[Petrel, Fea's] GPU Count: Per Job","[Scaup, Lesser] GPU Count: Per Job","[Shearwater, Balearic] GPU Count: Per Job","[Shearwater, Great] GPU Count: Per Job","[Shearwater, Macaronesian] GPU Count: Per Job","[Smew] GPU Count: Per Job","[Spotted, Great] GPU Count: Per Job","[Swift, Little] GPU Count: Per Job","[Tern, Caspian] GPU Count: Per Job","[Thrush, Hermit] GPU Count: Per Job","[Warbler, Blackpoll] GPU Count: Per Job","[Warbler, Cetti's] GPU Count: Per Job","[Warbler, Hooded] GPU Count: Per Job","[Warbler, Savi's] GPU Count: Per Job","[White, Great] GPU Count: Per Job","[Yellowthroat, Common] GPU Count: Per Job" +2016-12,0.3333,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2017-01,0.1481,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0,0.0000,0,0,0,0,0,0.0000,0.0000,0,0,0,0.0000,0,0.0000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/pi/avg_gpus/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/pi/avg_gpus/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..9b14168029 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/pi/avg_gpus/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Count: Per Job: by PI" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[Chaffinch] GPU Count: Per Job","[Accentor, Alpine] GPU Count: Per Job","[Bittern] GPU Count: Per Job","[Blackbird] GPU Count: Per Job","[Bluetail, Red-flanked] GPU Count: Per Job","[Bufflehead] GPU Count: Per Job","[Bunting, Ortolan] GPU Count: Per Job","[Chiffchaff, Iberian] GPU Count: Per Job","[Dotterel] GPU Count: Per Job","[Dowitcher, Short-billed] GPU Count: Per Job","[Dunlin] GPU Count: Per Job","[Egret, Snowy] GPU Count: Per Job","[Fieldfare] GPU Count: Per Job","[Flycatcher, Taiga] GPU Count: Per Job","[Fulmar] GPU Count: Per Job","[Goose, Red-breasted] GPU Count: Per Job","[Gull, Glaucous-winged] GPU Count: Per Job","[Gull, Yellow-legged] GPU Count: Per Job","[Harrier, Hen] GPU Count: Per Job","[Jackdaw] GPU Count: Per Job","[Kestrel, Lesser] GPU Count: Per Job","[Lark, Calandra] GPU Count: Per Job","[Martin, Sand] GPU Count: Per Job","[Moorhen] GPU Count: Per Job","[Nuthatch] GPU Count: Per Job","[Petrel, Fea's] GPU Count: Per Job","[Scaup, Lesser] GPU Count: Per Job","[Shearwater, Balearic] GPU Count: Per Job","[Shearwater, Great] GPU Count: Per Job","[Shearwater, Macaronesian] GPU Count: Per Job","[Smew] GPU Count: Per Job","[Spotted, Great] GPU Count: Per Job","[Swift, Little] GPU Count: Per Job","[Tern, Caspian] GPU Count: Per Job","[Thrush, Hermit] GPU Count: Per Job","[Warbler, Blackpoll] GPU Count: Per Job","[Warbler, Cetti's] GPU Count: Per Job","[Warbler, Hooded] GPU Count: Per Job","[Warbler, Savi's] GPU Count: Per Job","[White, Great] GPU Count: Per Job","[Yellowthroat, Common] GPU Count: Per Job" +"2016 Q4",0.3333,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +"2017 Q1",0.1481,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0,0.0000,0,0,0,0,0,0.0000,0.0000,0,0,0,0.0000,0,0.0000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/pi/avg_gpus/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/pi/avg_gpus/timeseries-Year-reference.csv new file mode 100644 index 0000000000..0f968e56a6 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/pi/avg_gpus/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Count: Per Job: by PI" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[Chaffinch] GPU Count: Per Job","[Accentor, Alpine] GPU Count: Per Job","[Bittern] GPU Count: Per Job","[Blackbird] GPU Count: Per Job","[Bluetail, Red-flanked] GPU Count: Per Job","[Bufflehead] GPU Count: Per Job","[Bunting, Ortolan] GPU Count: Per Job","[Chiffchaff, Iberian] GPU Count: Per Job","[Dotterel] GPU Count: Per Job","[Dowitcher, Short-billed] GPU Count: Per Job","[Dunlin] GPU Count: Per Job","[Egret, Snowy] GPU Count: Per Job","[Fieldfare] GPU Count: Per Job","[Flycatcher, Taiga] GPU Count: Per Job","[Fulmar] GPU Count: Per Job","[Goose, Red-breasted] GPU Count: Per Job","[Gull, Glaucous-winged] GPU Count: Per Job","[Gull, Yellow-legged] GPU Count: Per Job","[Harrier, Hen] GPU Count: Per Job","[Jackdaw] GPU Count: Per Job","[Kestrel, Lesser] GPU Count: Per Job","[Lark, Calandra] GPU Count: Per Job","[Martin, Sand] GPU Count: Per Job","[Moorhen] GPU Count: Per Job","[Nuthatch] GPU Count: Per Job","[Petrel, Fea's] GPU Count: Per Job","[Scaup, Lesser] GPU Count: Per Job","[Shearwater, Balearic] GPU Count: Per Job","[Shearwater, Great] GPU Count: Per Job","[Shearwater, Macaronesian] GPU Count: Per Job","[Smew] GPU Count: Per Job","[Spotted, Great] GPU Count: Per Job","[Swift, Little] GPU Count: Per Job","[Tern, Caspian] GPU Count: Per Job","[Thrush, Hermit] GPU Count: Per Job","[Warbler, Blackpoll] GPU Count: Per Job","[Warbler, Cetti's] GPU Count: Per Job","[Warbler, Hooded] GPU Count: Per Job","[Warbler, Savi's] GPU Count: Per Job","[White, Great] GPU Count: Per Job","[Yellowthroat, Common] GPU Count: Per Job" +2016,0.3333,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2017,0.1481,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0,0.0000,0,0,0,0,0,0.0000,0.0000,0,0,0,0.0000,0,0.0000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/pi/avg_job_size_weighted_by_gpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/pi/avg_job_size_weighted_by_gpu_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..6c6f5b07df --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/pi/avg_job_size_weighted_by_gpu_hours/aggregate-Day-reference.csv @@ -0,0 +1,50 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by PI" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +PI,"Job Size: Weighted By GPU Hours (GPU Count)" +Chaffinch,12.0000 +"Accentor, Alpine",0.0000 +Bittern,0.0000 +Blackbird,0.0000 +"Bluetail, Red-flanked",0.0000 +Bufflehead,0.0000 +"Bunting, Ortolan",0.0000 +"Chiffchaff, Iberian",0.0000 +Dotterel,0.0000 +"Dowitcher, Short-billed",0.0000 +Dunlin,0.0000 +"Egret, Snowy",0.0000 +Fieldfare,0.0000 +"Flycatcher, Taiga",0.0000 +Fulmar,0.0000 +"Goose, Red-breasted",0.0000 +"Gull, Glaucous-winged",0.0000 +"Gull, Yellow-legged",0.0000 +"Harrier, Hen",0.0000 +Jackdaw,0.0000 +"Kestrel, Lesser",0.0000 +"Lark, Calandra",0.0000 +"Martin, Sand",0.0000 +Moorhen,0.0000 +Nuthatch,0.0000 +"Petrel, Fea's",0.0000 +"Scaup, Lesser",0.0000 +"Shearwater, Balearic",0.0000 +"Shearwater, Great",0.0000 +"Shearwater, Macaronesian",0.0000 +Smew,0.0000 +"Spotted, Great",0.0000 +"Swift, Little",0.0000 +"Tern, Caspian",0.0000 +"Thrush, Hermit",0.0000 +"Warbler, Blackpoll",0.0000 +"Warbler, Cetti's",0.0000 +"Warbler, Hooded",0.0000 +"Warbler, Savi's",0.0000 +"White, Great",0.0000 +"Yellowthroat, Common",0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/pi/avg_job_size_weighted_by_gpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/pi/avg_job_size_weighted_by_gpu_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..6c6f5b07df --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/pi/avg_job_size_weighted_by_gpu_hours/aggregate-Month-reference.csv @@ -0,0 +1,50 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by PI" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +PI,"Job Size: Weighted By GPU Hours (GPU Count)" +Chaffinch,12.0000 +"Accentor, Alpine",0.0000 +Bittern,0.0000 +Blackbird,0.0000 +"Bluetail, Red-flanked",0.0000 +Bufflehead,0.0000 +"Bunting, Ortolan",0.0000 +"Chiffchaff, Iberian",0.0000 +Dotterel,0.0000 +"Dowitcher, Short-billed",0.0000 +Dunlin,0.0000 +"Egret, Snowy",0.0000 +Fieldfare,0.0000 +"Flycatcher, Taiga",0.0000 +Fulmar,0.0000 +"Goose, Red-breasted",0.0000 +"Gull, Glaucous-winged",0.0000 +"Gull, Yellow-legged",0.0000 +"Harrier, Hen",0.0000 +Jackdaw,0.0000 +"Kestrel, Lesser",0.0000 +"Lark, Calandra",0.0000 +"Martin, Sand",0.0000 +Moorhen,0.0000 +Nuthatch,0.0000 +"Petrel, Fea's",0.0000 +"Scaup, Lesser",0.0000 +"Shearwater, Balearic",0.0000 +"Shearwater, Great",0.0000 +"Shearwater, Macaronesian",0.0000 +Smew,0.0000 +"Spotted, Great",0.0000 +"Swift, Little",0.0000 +"Tern, Caspian",0.0000 +"Thrush, Hermit",0.0000 +"Warbler, Blackpoll",0.0000 +"Warbler, Cetti's",0.0000 +"Warbler, Hooded",0.0000 +"Warbler, Savi's",0.0000 +"White, Great",0.0000 +"Yellowthroat, Common",0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/pi/avg_job_size_weighted_by_gpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/pi/avg_job_size_weighted_by_gpu_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..6c6f5b07df --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/pi/avg_job_size_weighted_by_gpu_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,50 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by PI" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +PI,"Job Size: Weighted By GPU Hours (GPU Count)" +Chaffinch,12.0000 +"Accentor, Alpine",0.0000 +Bittern,0.0000 +Blackbird,0.0000 +"Bluetail, Red-flanked",0.0000 +Bufflehead,0.0000 +"Bunting, Ortolan",0.0000 +"Chiffchaff, Iberian",0.0000 +Dotterel,0.0000 +"Dowitcher, Short-billed",0.0000 +Dunlin,0.0000 +"Egret, Snowy",0.0000 +Fieldfare,0.0000 +"Flycatcher, Taiga",0.0000 +Fulmar,0.0000 +"Goose, Red-breasted",0.0000 +"Gull, Glaucous-winged",0.0000 +"Gull, Yellow-legged",0.0000 +"Harrier, Hen",0.0000 +Jackdaw,0.0000 +"Kestrel, Lesser",0.0000 +"Lark, Calandra",0.0000 +"Martin, Sand",0.0000 +Moorhen,0.0000 +Nuthatch,0.0000 +"Petrel, Fea's",0.0000 +"Scaup, Lesser",0.0000 +"Shearwater, Balearic",0.0000 +"Shearwater, Great",0.0000 +"Shearwater, Macaronesian",0.0000 +Smew,0.0000 +"Spotted, Great",0.0000 +"Swift, Little",0.0000 +"Tern, Caspian",0.0000 +"Thrush, Hermit",0.0000 +"Warbler, Blackpoll",0.0000 +"Warbler, Cetti's",0.0000 +"Warbler, Hooded",0.0000 +"Warbler, Savi's",0.0000 +"White, Great",0.0000 +"Yellowthroat, Common",0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/pi/avg_job_size_weighted_by_gpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/pi/avg_job_size_weighted_by_gpu_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..6c6f5b07df --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/pi/avg_job_size_weighted_by_gpu_hours/aggregate-Year-reference.csv @@ -0,0 +1,50 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by PI" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +PI,"Job Size: Weighted By GPU Hours (GPU Count)" +Chaffinch,12.0000 +"Accentor, Alpine",0.0000 +Bittern,0.0000 +Blackbird,0.0000 +"Bluetail, Red-flanked",0.0000 +Bufflehead,0.0000 +"Bunting, Ortolan",0.0000 +"Chiffchaff, Iberian",0.0000 +Dotterel,0.0000 +"Dowitcher, Short-billed",0.0000 +Dunlin,0.0000 +"Egret, Snowy",0.0000 +Fieldfare,0.0000 +"Flycatcher, Taiga",0.0000 +Fulmar,0.0000 +"Goose, Red-breasted",0.0000 +"Gull, Glaucous-winged",0.0000 +"Gull, Yellow-legged",0.0000 +"Harrier, Hen",0.0000 +Jackdaw,0.0000 +"Kestrel, Lesser",0.0000 +"Lark, Calandra",0.0000 +"Martin, Sand",0.0000 +Moorhen,0.0000 +Nuthatch,0.0000 +"Petrel, Fea's",0.0000 +"Scaup, Lesser",0.0000 +"Shearwater, Balearic",0.0000 +"Shearwater, Great",0.0000 +"Shearwater, Macaronesian",0.0000 +Smew,0.0000 +"Spotted, Great",0.0000 +"Swift, Little",0.0000 +"Tern, Caspian",0.0000 +"Thrush, Hermit",0.0000 +"Warbler, Blackpoll",0.0000 +"Warbler, Cetti's",0.0000 +"Warbler, Hooded",0.0000 +"Warbler, Savi's",0.0000 +"White, Great",0.0000 +"Yellowthroat, Common",0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/pi/avg_job_size_weighted_by_gpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/pi/avg_job_size_weighted_by_gpu_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..bf7a94f2e3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/pi/avg_job_size_weighted_by_gpu_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by PI" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[Chaffinch] Job Size: Weighted By GPU Hours (GPU Count)","[Accentor, Alpine] Job Size: Weighted By GPU Hours (GPU Count)","[Bittern] Job Size: Weighted By GPU Hours (GPU Count)","[Blackbird] Job Size: Weighted By GPU Hours (GPU Count)","[Bluetail, Red-flanked] Job Size: Weighted By GPU Hours (GPU Count)","[Bufflehead] Job Size: Weighted By GPU Hours (GPU Count)","[Bunting, Ortolan] Job Size: Weighted By GPU Hours (GPU Count)","[Chiffchaff, Iberian] Job Size: Weighted By GPU Hours (GPU Count)","[Dotterel] Job Size: Weighted By GPU Hours (GPU Count)","[Dowitcher, Short-billed] Job Size: Weighted By GPU Hours (GPU Count)","[Dunlin] Job Size: Weighted By GPU Hours (GPU Count)","[Egret, Snowy] Job Size: Weighted By GPU Hours (GPU Count)","[Fieldfare] Job Size: Weighted By GPU Hours (GPU Count)","[Flycatcher, Taiga] Job Size: Weighted By GPU Hours (GPU Count)","[Fulmar] Job Size: Weighted By GPU Hours (GPU Count)","[Goose, Red-breasted] Job Size: Weighted By GPU Hours (GPU Count)","[Gull, Glaucous-winged] Job Size: Weighted By GPU Hours (GPU Count)","[Gull, Yellow-legged] Job Size: Weighted By GPU Hours (GPU Count)","[Harrier, Hen] Job Size: Weighted By GPU Hours (GPU Count)","[Jackdaw] Job Size: Weighted By GPU Hours (GPU Count)","[Kestrel, Lesser] Job Size: Weighted By GPU Hours (GPU Count)","[Lark, Calandra] Job Size: Weighted By GPU Hours (GPU Count)","[Martin, Sand] Job Size: Weighted By GPU Hours (GPU Count)","[Moorhen] Job Size: Weighted By GPU Hours (GPU Count)","[Nuthatch] Job Size: Weighted By GPU Hours (GPU Count)","[Petrel, Fea's] Job Size: Weighted By GPU Hours (GPU Count)","[Scaup, Lesser] Job Size: Weighted By GPU Hours (GPU Count)","[Shearwater, Balearic] Job Size: Weighted By GPU Hours (GPU Count)","[Shearwater, Great] Job Size: Weighted By GPU Hours (GPU Count)","[Shearwater, Macaronesian] Job Size: Weighted By GPU Hours (GPU Count)","[Smew] Job Size: Weighted By GPU Hours (GPU Count)","[Spotted, Great] Job Size: Weighted By GPU Hours (GPU Count)","[Swift, Little] Job Size: Weighted By GPU Hours (GPU Count)","[Tern, Caspian] Job Size: Weighted By GPU Hours (GPU Count)","[Thrush, Hermit] Job Size: Weighted By GPU Hours (GPU Count)","[Warbler, Blackpoll] Job Size: Weighted By GPU Hours (GPU Count)","[Warbler, Cetti's] Job Size: Weighted By GPU Hours (GPU Count)","[Warbler, Hooded] Job Size: Weighted By GPU Hours (GPU Count)","[Warbler, Savi's] Job Size: Weighted By GPU Hours (GPU Count)","[White, Great] Job Size: Weighted By GPU Hours (GPU Count)","[Yellowthroat, Common] Job Size: Weighted By GPU Hours (GPU Count)" +2016-12-22,12.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-23,12.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0 +2016-12-24,12.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0 +2016-12-25,12.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0 +2016-12-26,12.0000,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0 +2016-12-27,12.0000,0,0,0,0.0000,0,0,0,0,0,0,0,0.0000,0.0000,0.0000,0,0,0,0,0,0,0.0000,0,0,0,0.0000,0,0.0000,0.0000,0,0,0,0,0.0000,0,0,0,0,0,0.0000,0 +2016-12-28,12.0000,0,0,0,0.0000,0.0000,0,0,0.0000,0,0,0,0.0000,0.0000,0.0000,0,0,0,0,0,0.0000,0.0000,0,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0,0,0,0.0000,0,0.0000,0,0.0000,0,0.0000,0 +2016-12-29,12.0000,0,0,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0,0,0.0000,0.0000,0.0000,0,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0,0,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0 +2016-12-30,12.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2016-12-31,12.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0 +2017-01-01,12.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0,0.0000,0,0,0,0,0,0.0000,0.0000,0,0,0,0.0000,0,0.0000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/pi/avg_job_size_weighted_by_gpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/pi/avg_job_size_weighted_by_gpu_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..3e46c255dd --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/pi/avg_job_size_weighted_by_gpu_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by PI" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[Chaffinch] Job Size: Weighted By GPU Hours (GPU Count)","[Accentor, Alpine] Job Size: Weighted By GPU Hours (GPU Count)","[Bittern] Job Size: Weighted By GPU Hours (GPU Count)","[Blackbird] Job Size: Weighted By GPU Hours (GPU Count)","[Bluetail, Red-flanked] Job Size: Weighted By GPU Hours (GPU Count)","[Bufflehead] Job Size: Weighted By GPU Hours (GPU Count)","[Bunting, Ortolan] Job Size: Weighted By GPU Hours (GPU Count)","[Chiffchaff, Iberian] Job Size: Weighted By GPU Hours (GPU Count)","[Dotterel] Job Size: Weighted By GPU Hours (GPU Count)","[Dowitcher, Short-billed] Job Size: Weighted By GPU Hours (GPU Count)","[Dunlin] Job Size: Weighted By GPU Hours (GPU Count)","[Egret, Snowy] Job Size: Weighted By GPU Hours (GPU Count)","[Fieldfare] Job Size: Weighted By GPU Hours (GPU Count)","[Flycatcher, Taiga] Job Size: Weighted By GPU Hours (GPU Count)","[Fulmar] Job Size: Weighted By GPU Hours (GPU Count)","[Goose, Red-breasted] Job Size: Weighted By GPU Hours (GPU Count)","[Gull, Glaucous-winged] Job Size: Weighted By GPU Hours (GPU Count)","[Gull, Yellow-legged] Job Size: Weighted By GPU Hours (GPU Count)","[Harrier, Hen] Job Size: Weighted By GPU Hours (GPU Count)","[Jackdaw] Job Size: Weighted By GPU Hours (GPU Count)","[Kestrel, Lesser] Job Size: Weighted By GPU Hours (GPU Count)","[Lark, Calandra] Job Size: Weighted By GPU Hours (GPU Count)","[Martin, Sand] Job Size: Weighted By GPU Hours (GPU Count)","[Moorhen] Job Size: Weighted By GPU Hours (GPU Count)","[Nuthatch] Job Size: Weighted By GPU Hours (GPU Count)","[Petrel, Fea's] Job Size: Weighted By GPU Hours (GPU Count)","[Scaup, Lesser] Job Size: Weighted By GPU Hours (GPU Count)","[Shearwater, Balearic] Job Size: Weighted By GPU Hours (GPU Count)","[Shearwater, Great] Job Size: Weighted By GPU Hours (GPU Count)","[Shearwater, Macaronesian] Job Size: Weighted By GPU Hours (GPU Count)","[Smew] Job Size: Weighted By GPU Hours (GPU Count)","[Spotted, Great] Job Size: Weighted By GPU Hours (GPU Count)","[Swift, Little] Job Size: Weighted By GPU Hours (GPU Count)","[Tern, Caspian] Job Size: Weighted By GPU Hours (GPU Count)","[Thrush, Hermit] Job Size: Weighted By GPU Hours (GPU Count)","[Warbler, Blackpoll] Job Size: Weighted By GPU Hours (GPU Count)","[Warbler, Cetti's] Job Size: Weighted By GPU Hours (GPU Count)","[Warbler, Hooded] Job Size: Weighted By GPU Hours (GPU Count)","[Warbler, Savi's] Job Size: Weighted By GPU Hours (GPU Count)","[White, Great] Job Size: Weighted By GPU Hours (GPU Count)","[Yellowthroat, Common] Job Size: Weighted By GPU Hours (GPU Count)" +2016-12,12.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2017-01,12.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0,0.0000,0,0,0,0,0,0.0000,0.0000,0,0,0,0.0000,0,0.0000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/pi/avg_job_size_weighted_by_gpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/pi/avg_job_size_weighted_by_gpu_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..b18c5cbffa --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/pi/avg_job_size_weighted_by_gpu_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by PI" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[Chaffinch] Job Size: Weighted By GPU Hours (GPU Count)","[Accentor, Alpine] Job Size: Weighted By GPU Hours (GPU Count)","[Bittern] Job Size: Weighted By GPU Hours (GPU Count)","[Blackbird] Job Size: Weighted By GPU Hours (GPU Count)","[Bluetail, Red-flanked] Job Size: Weighted By GPU Hours (GPU Count)","[Bufflehead] Job Size: Weighted By GPU Hours (GPU Count)","[Bunting, Ortolan] Job Size: Weighted By GPU Hours (GPU Count)","[Chiffchaff, Iberian] Job Size: Weighted By GPU Hours (GPU Count)","[Dotterel] Job Size: Weighted By GPU Hours (GPU Count)","[Dowitcher, Short-billed] Job Size: Weighted By GPU Hours (GPU Count)","[Dunlin] Job Size: Weighted By GPU Hours (GPU Count)","[Egret, Snowy] Job Size: Weighted By GPU Hours (GPU Count)","[Fieldfare] Job Size: Weighted By GPU Hours (GPU Count)","[Flycatcher, Taiga] Job Size: Weighted By GPU Hours (GPU Count)","[Fulmar] Job Size: Weighted By GPU Hours (GPU Count)","[Goose, Red-breasted] Job Size: Weighted By GPU Hours (GPU Count)","[Gull, Glaucous-winged] Job Size: Weighted By GPU Hours (GPU Count)","[Gull, Yellow-legged] Job Size: Weighted By GPU Hours (GPU Count)","[Harrier, Hen] Job Size: Weighted By GPU Hours (GPU Count)","[Jackdaw] Job Size: Weighted By GPU Hours (GPU Count)","[Kestrel, Lesser] Job Size: Weighted By GPU Hours (GPU Count)","[Lark, Calandra] Job Size: Weighted By GPU Hours (GPU Count)","[Martin, Sand] Job Size: Weighted By GPU Hours (GPU Count)","[Moorhen] Job Size: Weighted By GPU Hours (GPU Count)","[Nuthatch] Job Size: Weighted By GPU Hours (GPU Count)","[Petrel, Fea's] Job Size: Weighted By GPU Hours (GPU Count)","[Scaup, Lesser] Job Size: Weighted By GPU Hours (GPU Count)","[Shearwater, Balearic] Job Size: Weighted By GPU Hours (GPU Count)","[Shearwater, Great] Job Size: Weighted By GPU Hours (GPU Count)","[Shearwater, Macaronesian] Job Size: Weighted By GPU Hours (GPU Count)","[Smew] Job Size: Weighted By GPU Hours (GPU Count)","[Spotted, Great] Job Size: Weighted By GPU Hours (GPU Count)","[Swift, Little] Job Size: Weighted By GPU Hours (GPU Count)","[Tern, Caspian] Job Size: Weighted By GPU Hours (GPU Count)","[Thrush, Hermit] Job Size: Weighted By GPU Hours (GPU Count)","[Warbler, Blackpoll] Job Size: Weighted By GPU Hours (GPU Count)","[Warbler, Cetti's] Job Size: Weighted By GPU Hours (GPU Count)","[Warbler, Hooded] Job Size: Weighted By GPU Hours (GPU Count)","[Warbler, Savi's] Job Size: Weighted By GPU Hours (GPU Count)","[White, Great] Job Size: Weighted By GPU Hours (GPU Count)","[Yellowthroat, Common] Job Size: Weighted By GPU Hours (GPU Count)" +"2016 Q4",12.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +"2017 Q1",12.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0,0.0000,0,0,0,0,0,0.0000,0.0000,0,0,0,0.0000,0,0.0000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/pi/avg_job_size_weighted_by_gpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/pi/avg_job_size_weighted_by_gpu_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..811df61f07 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/pi/avg_job_size_weighted_by_gpu_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by PI" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[Chaffinch] Job Size: Weighted By GPU Hours (GPU Count)","[Accentor, Alpine] Job Size: Weighted By GPU Hours (GPU Count)","[Bittern] Job Size: Weighted By GPU Hours (GPU Count)","[Blackbird] Job Size: Weighted By GPU Hours (GPU Count)","[Bluetail, Red-flanked] Job Size: Weighted By GPU Hours (GPU Count)","[Bufflehead] Job Size: Weighted By GPU Hours (GPU Count)","[Bunting, Ortolan] Job Size: Weighted By GPU Hours (GPU Count)","[Chiffchaff, Iberian] Job Size: Weighted By GPU Hours (GPU Count)","[Dotterel] Job Size: Weighted By GPU Hours (GPU Count)","[Dowitcher, Short-billed] Job Size: Weighted By GPU Hours (GPU Count)","[Dunlin] Job Size: Weighted By GPU Hours (GPU Count)","[Egret, Snowy] Job Size: Weighted By GPU Hours (GPU Count)","[Fieldfare] Job Size: Weighted By GPU Hours (GPU Count)","[Flycatcher, Taiga] Job Size: Weighted By GPU Hours (GPU Count)","[Fulmar] Job Size: Weighted By GPU Hours (GPU Count)","[Goose, Red-breasted] Job Size: Weighted By GPU Hours (GPU Count)","[Gull, Glaucous-winged] Job Size: Weighted By GPU Hours (GPU Count)","[Gull, Yellow-legged] Job Size: Weighted By GPU Hours (GPU Count)","[Harrier, Hen] Job Size: Weighted By GPU Hours (GPU Count)","[Jackdaw] Job Size: Weighted By GPU Hours (GPU Count)","[Kestrel, Lesser] Job Size: Weighted By GPU Hours (GPU Count)","[Lark, Calandra] Job Size: Weighted By GPU Hours (GPU Count)","[Martin, Sand] Job Size: Weighted By GPU Hours (GPU Count)","[Moorhen] Job Size: Weighted By GPU Hours (GPU Count)","[Nuthatch] Job Size: Weighted By GPU Hours (GPU Count)","[Petrel, Fea's] Job Size: Weighted By GPU Hours (GPU Count)","[Scaup, Lesser] Job Size: Weighted By GPU Hours (GPU Count)","[Shearwater, Balearic] Job Size: Weighted By GPU Hours (GPU Count)","[Shearwater, Great] Job Size: Weighted By GPU Hours (GPU Count)","[Shearwater, Macaronesian] Job Size: Weighted By GPU Hours (GPU Count)","[Smew] Job Size: Weighted By GPU Hours (GPU Count)","[Spotted, Great] Job Size: Weighted By GPU Hours (GPU Count)","[Swift, Little] Job Size: Weighted By GPU Hours (GPU Count)","[Tern, Caspian] Job Size: Weighted By GPU Hours (GPU Count)","[Thrush, Hermit] Job Size: Weighted By GPU Hours (GPU Count)","[Warbler, Blackpoll] Job Size: Weighted By GPU Hours (GPU Count)","[Warbler, Cetti's] Job Size: Weighted By GPU Hours (GPU Count)","[Warbler, Hooded] Job Size: Weighted By GPU Hours (GPU Count)","[Warbler, Savi's] Job Size: Weighted By GPU Hours (GPU Count)","[White, Great] Job Size: Weighted By GPU Hours (GPU Count)","[Yellowthroat, Common] Job Size: Weighted By GPU Hours (GPU Count)" +2016,12.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2017,12.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0,0.0000,0,0,0,0,0,0.0000,0.0000,0,0,0,0.0000,0,0.0000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/pi/total_gpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/pi/total_gpu_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..115ea81b9c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/pi/total_gpu_hours/aggregate-Day-reference.csv @@ -0,0 +1,50 @@ +title +"GPU Hours: Total: by PI" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +PI,"GPU Hours: Total" +Chaffinch,506.9128 +"Accentor, Alpine",0.0000 +Bittern,0.0000 +Blackbird,0.0000 +"Bluetail, Red-flanked",0.0000 +Bufflehead,0.0000 +"Bunting, Ortolan",0.0000 +"Chiffchaff, Iberian",0.0000 +Dotterel,0.0000 +"Dowitcher, Short-billed",0.0000 +Dunlin,0.0000 +"Egret, Snowy",0.0000 +Fieldfare,0.0000 +"Flycatcher, Taiga",0.0000 +Fulmar,0.0000 +"Goose, Red-breasted",0.0000 +"Gull, Glaucous-winged",0.0000 +"Gull, Yellow-legged",0.0000 +"Harrier, Hen",0.0000 +Jackdaw,0.0000 +"Kestrel, Lesser",0.0000 +"Lark, Calandra",0.0000 +"Martin, Sand",0.0000 +Moorhen,0.0000 +Nuthatch,0.0000 +"Petrel, Fea's",0.0000 +"Scaup, Lesser",0.0000 +"Shearwater, Balearic",0.0000 +"Shearwater, Great",0.0000 +"Shearwater, Macaronesian",0.0000 +Smew,0.0000 +"Spotted, Great",0.0000 +"Swift, Little",0.0000 +"Tern, Caspian",0.0000 +"Thrush, Hermit",0.0000 +"Warbler, Blackpoll",0.0000 +"Warbler, Cetti's",0.0000 +"Warbler, Hooded",0.0000 +"Warbler, Savi's",0.0000 +"White, Great",0.0000 +"Yellowthroat, Common",0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/pi/total_gpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/pi/total_gpu_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..115ea81b9c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/pi/total_gpu_hours/aggregate-Month-reference.csv @@ -0,0 +1,50 @@ +title +"GPU Hours: Total: by PI" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +PI,"GPU Hours: Total" +Chaffinch,506.9128 +"Accentor, Alpine",0.0000 +Bittern,0.0000 +Blackbird,0.0000 +"Bluetail, Red-flanked",0.0000 +Bufflehead,0.0000 +"Bunting, Ortolan",0.0000 +"Chiffchaff, Iberian",0.0000 +Dotterel,0.0000 +"Dowitcher, Short-billed",0.0000 +Dunlin,0.0000 +"Egret, Snowy",0.0000 +Fieldfare,0.0000 +"Flycatcher, Taiga",0.0000 +Fulmar,0.0000 +"Goose, Red-breasted",0.0000 +"Gull, Glaucous-winged",0.0000 +"Gull, Yellow-legged",0.0000 +"Harrier, Hen",0.0000 +Jackdaw,0.0000 +"Kestrel, Lesser",0.0000 +"Lark, Calandra",0.0000 +"Martin, Sand",0.0000 +Moorhen,0.0000 +Nuthatch,0.0000 +"Petrel, Fea's",0.0000 +"Scaup, Lesser",0.0000 +"Shearwater, Balearic",0.0000 +"Shearwater, Great",0.0000 +"Shearwater, Macaronesian",0.0000 +Smew,0.0000 +"Spotted, Great",0.0000 +"Swift, Little",0.0000 +"Tern, Caspian",0.0000 +"Thrush, Hermit",0.0000 +"Warbler, Blackpoll",0.0000 +"Warbler, Cetti's",0.0000 +"Warbler, Hooded",0.0000 +"Warbler, Savi's",0.0000 +"White, Great",0.0000 +"Yellowthroat, Common",0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/pi/total_gpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/pi/total_gpu_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..115ea81b9c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/pi/total_gpu_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,50 @@ +title +"GPU Hours: Total: by PI" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +PI,"GPU Hours: Total" +Chaffinch,506.9128 +"Accentor, Alpine",0.0000 +Bittern,0.0000 +Blackbird,0.0000 +"Bluetail, Red-flanked",0.0000 +Bufflehead,0.0000 +"Bunting, Ortolan",0.0000 +"Chiffchaff, Iberian",0.0000 +Dotterel,0.0000 +"Dowitcher, Short-billed",0.0000 +Dunlin,0.0000 +"Egret, Snowy",0.0000 +Fieldfare,0.0000 +"Flycatcher, Taiga",0.0000 +Fulmar,0.0000 +"Goose, Red-breasted",0.0000 +"Gull, Glaucous-winged",0.0000 +"Gull, Yellow-legged",0.0000 +"Harrier, Hen",0.0000 +Jackdaw,0.0000 +"Kestrel, Lesser",0.0000 +"Lark, Calandra",0.0000 +"Martin, Sand",0.0000 +Moorhen,0.0000 +Nuthatch,0.0000 +"Petrel, Fea's",0.0000 +"Scaup, Lesser",0.0000 +"Shearwater, Balearic",0.0000 +"Shearwater, Great",0.0000 +"Shearwater, Macaronesian",0.0000 +Smew,0.0000 +"Spotted, Great",0.0000 +"Swift, Little",0.0000 +"Tern, Caspian",0.0000 +"Thrush, Hermit",0.0000 +"Warbler, Blackpoll",0.0000 +"Warbler, Cetti's",0.0000 +"Warbler, Hooded",0.0000 +"Warbler, Savi's",0.0000 +"White, Great",0.0000 +"Yellowthroat, Common",0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/pi/total_gpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/pi/total_gpu_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..115ea81b9c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/pi/total_gpu_hours/aggregate-Year-reference.csv @@ -0,0 +1,50 @@ +title +"GPU Hours: Total: by PI" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +PI,"GPU Hours: Total" +Chaffinch,506.9128 +"Accentor, Alpine",0.0000 +Bittern,0.0000 +Blackbird,0.0000 +"Bluetail, Red-flanked",0.0000 +Bufflehead,0.0000 +"Bunting, Ortolan",0.0000 +"Chiffchaff, Iberian",0.0000 +Dotterel,0.0000 +"Dowitcher, Short-billed",0.0000 +Dunlin,0.0000 +"Egret, Snowy",0.0000 +Fieldfare,0.0000 +"Flycatcher, Taiga",0.0000 +Fulmar,0.0000 +"Goose, Red-breasted",0.0000 +"Gull, Glaucous-winged",0.0000 +"Gull, Yellow-legged",0.0000 +"Harrier, Hen",0.0000 +Jackdaw,0.0000 +"Kestrel, Lesser",0.0000 +"Lark, Calandra",0.0000 +"Martin, Sand",0.0000 +Moorhen,0.0000 +Nuthatch,0.0000 +"Petrel, Fea's",0.0000 +"Scaup, Lesser",0.0000 +"Shearwater, Balearic",0.0000 +"Shearwater, Great",0.0000 +"Shearwater, Macaronesian",0.0000 +Smew,0.0000 +"Spotted, Great",0.0000 +"Swift, Little",0.0000 +"Tern, Caspian",0.0000 +"Thrush, Hermit",0.0000 +"Warbler, Blackpoll",0.0000 +"Warbler, Cetti's",0.0000 +"Warbler, Hooded",0.0000 +"Warbler, Savi's",0.0000 +"White, Great",0.0000 +"Yellowthroat, Common",0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/pi/total_gpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/pi/total_gpu_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..80ae6f827e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/pi/total_gpu_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"GPU Hours: Total: by PI" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[Chaffinch] GPU Hours: Total","[Accentor, Alpine] GPU Hours: Total","[Bittern] GPU Hours: Total","[Blackbird] GPU Hours: Total","[Bluetail, Red-flanked] GPU Hours: Total","[Bufflehead] GPU Hours: Total","[Bunting, Ortolan] GPU Hours: Total","[Chiffchaff, Iberian] GPU Hours: Total","[Dotterel] GPU Hours: Total","[Dowitcher, Short-billed] GPU Hours: Total","[Dunlin] GPU Hours: Total","[Egret, Snowy] GPU Hours: Total","[Fieldfare] GPU Hours: Total","[Flycatcher, Taiga] GPU Hours: Total","[Fulmar] GPU Hours: Total","[Goose, Red-breasted] GPU Hours: Total","[Gull, Glaucous-winged] GPU Hours: Total","[Gull, Yellow-legged] GPU Hours: Total","[Harrier, Hen] GPU Hours: Total","[Jackdaw] GPU Hours: Total","[Kestrel, Lesser] GPU Hours: Total","[Lark, Calandra] GPU Hours: Total","[Martin, Sand] GPU Hours: Total","[Moorhen] GPU Hours: Total","[Nuthatch] GPU Hours: Total","[Petrel, Fea's] GPU Hours: Total","[Scaup, Lesser] GPU Hours: Total","[Shearwater, Balearic] GPU Hours: Total","[Shearwater, Great] GPU Hours: Total","[Shearwater, Macaronesian] GPU Hours: Total","[Smew] GPU Hours: Total","[Spotted, Great] GPU Hours: Total","[Swift, Little] GPU Hours: Total","[Tern, Caspian] GPU Hours: Total","[Thrush, Hermit] GPU Hours: Total","[Warbler, Blackpoll] GPU Hours: Total","[Warbler, Cetti's] GPU Hours: Total","[Warbler, Hooded] GPU Hours: Total","[Warbler, Savi's] GPU Hours: Total","[White, Great] GPU Hours: Total","[Yellowthroat, Common] GPU Hours: Total" +2016-12-22,33.4928,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +2016-12-23,48.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0 +2016-12-24,48.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0 +2016-12-25,48.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0 +2016-12-26,48.0000,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0 +2016-12-27,48.0000,0,0,0,0.0000,0,0,0,0,0,0,0,0.0000,0.0000,0.0000,0,0,0,0,0,0,0.0000,0,0,0,0.0000,0,0.0000,0.0000,0,0,0,0,0.0000,0,0,0,0,0,0.0000,0 +2016-12-28,48.0000,0,0,0,0.0000,0.0000,0,0,0.0000,0,0,0,0.0000,0.0000,0.0000,0,0,0,0,0,0.0000,0.0000,0,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0,0,0,0.0000,0,0.0000,0,0.0000,0,0.0000,0 +2016-12-29,48.0000,0,0,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0,0,0.0000,0.0000,0.0000,0,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0,0,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0 +2016-12-30,48.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2016-12-31,48.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0 +2017-01-01,41.4200,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0,0.0000,0,0,0,0,0,0.0000,0.0000,0,0,0,0.0000,0,0.0000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/pi/total_gpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/pi/total_gpu_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..5ca06d97ff --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/pi/total_gpu_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Total: by PI" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[Chaffinch] GPU Hours: Total","[Accentor, Alpine] GPU Hours: Total","[Bittern] GPU Hours: Total","[Blackbird] GPU Hours: Total","[Bluetail, Red-flanked] GPU Hours: Total","[Bufflehead] GPU Hours: Total","[Bunting, Ortolan] GPU Hours: Total","[Chiffchaff, Iberian] GPU Hours: Total","[Dotterel] GPU Hours: Total","[Dowitcher, Short-billed] GPU Hours: Total","[Dunlin] GPU Hours: Total","[Egret, Snowy] GPU Hours: Total","[Fieldfare] GPU Hours: Total","[Flycatcher, Taiga] GPU Hours: Total","[Fulmar] GPU Hours: Total","[Goose, Red-breasted] GPU Hours: Total","[Gull, Glaucous-winged] GPU Hours: Total","[Gull, Yellow-legged] GPU Hours: Total","[Harrier, Hen] GPU Hours: Total","[Jackdaw] GPU Hours: Total","[Kestrel, Lesser] GPU Hours: Total","[Lark, Calandra] GPU Hours: Total","[Martin, Sand] GPU Hours: Total","[Moorhen] GPU Hours: Total","[Nuthatch] GPU Hours: Total","[Petrel, Fea's] GPU Hours: Total","[Scaup, Lesser] GPU Hours: Total","[Shearwater, Balearic] GPU Hours: Total","[Shearwater, Great] GPU Hours: Total","[Shearwater, Macaronesian] GPU Hours: Total","[Smew] GPU Hours: Total","[Spotted, Great] GPU Hours: Total","[Swift, Little] GPU Hours: Total","[Tern, Caspian] GPU Hours: Total","[Thrush, Hermit] GPU Hours: Total","[Warbler, Blackpoll] GPU Hours: Total","[Warbler, Cetti's] GPU Hours: Total","[Warbler, Hooded] GPU Hours: Total","[Warbler, Savi's] GPU Hours: Total","[White, Great] GPU Hours: Total","[Yellowthroat, Common] GPU Hours: Total" +2016-12,465.4928,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2017-01,41.4200,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0,0.0000,0,0,0,0,0,0.0000,0.0000,0,0,0,0.0000,0,0.0000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/pi/total_gpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/pi/total_gpu_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..e369e84cf6 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/pi/total_gpu_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Total: by PI" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[Chaffinch] GPU Hours: Total","[Accentor, Alpine] GPU Hours: Total","[Bittern] GPU Hours: Total","[Blackbird] GPU Hours: Total","[Bluetail, Red-flanked] GPU Hours: Total","[Bufflehead] GPU Hours: Total","[Bunting, Ortolan] GPU Hours: Total","[Chiffchaff, Iberian] GPU Hours: Total","[Dotterel] GPU Hours: Total","[Dowitcher, Short-billed] GPU Hours: Total","[Dunlin] GPU Hours: Total","[Egret, Snowy] GPU Hours: Total","[Fieldfare] GPU Hours: Total","[Flycatcher, Taiga] GPU Hours: Total","[Fulmar] GPU Hours: Total","[Goose, Red-breasted] GPU Hours: Total","[Gull, Glaucous-winged] GPU Hours: Total","[Gull, Yellow-legged] GPU Hours: Total","[Harrier, Hen] GPU Hours: Total","[Jackdaw] GPU Hours: Total","[Kestrel, Lesser] GPU Hours: Total","[Lark, Calandra] GPU Hours: Total","[Martin, Sand] GPU Hours: Total","[Moorhen] GPU Hours: Total","[Nuthatch] GPU Hours: Total","[Petrel, Fea's] GPU Hours: Total","[Scaup, Lesser] GPU Hours: Total","[Shearwater, Balearic] GPU Hours: Total","[Shearwater, Great] GPU Hours: Total","[Shearwater, Macaronesian] GPU Hours: Total","[Smew] GPU Hours: Total","[Spotted, Great] GPU Hours: Total","[Swift, Little] GPU Hours: Total","[Tern, Caspian] GPU Hours: Total","[Thrush, Hermit] GPU Hours: Total","[Warbler, Blackpoll] GPU Hours: Total","[Warbler, Cetti's] GPU Hours: Total","[Warbler, Hooded] GPU Hours: Total","[Warbler, Savi's] GPU Hours: Total","[White, Great] GPU Hours: Total","[Yellowthroat, Common] GPU Hours: Total" +"2016 Q4",465.4928,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +"2017 Q1",41.4200,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0,0.0000,0,0,0,0,0,0.0000,0.0000,0,0,0,0.0000,0,0.0000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/pi/total_gpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/pi/total_gpu_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..9ae7b0c790 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/pi/total_gpu_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Total: by PI" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[Chaffinch] GPU Hours: Total","[Accentor, Alpine] GPU Hours: Total","[Bittern] GPU Hours: Total","[Blackbird] GPU Hours: Total","[Bluetail, Red-flanked] GPU Hours: Total","[Bufflehead] GPU Hours: Total","[Bunting, Ortolan] GPU Hours: Total","[Chiffchaff, Iberian] GPU Hours: Total","[Dotterel] GPU Hours: Total","[Dowitcher, Short-billed] GPU Hours: Total","[Dunlin] GPU Hours: Total","[Egret, Snowy] GPU Hours: Total","[Fieldfare] GPU Hours: Total","[Flycatcher, Taiga] GPU Hours: Total","[Fulmar] GPU Hours: Total","[Goose, Red-breasted] GPU Hours: Total","[Gull, Glaucous-winged] GPU Hours: Total","[Gull, Yellow-legged] GPU Hours: Total","[Harrier, Hen] GPU Hours: Total","[Jackdaw] GPU Hours: Total","[Kestrel, Lesser] GPU Hours: Total","[Lark, Calandra] GPU Hours: Total","[Martin, Sand] GPU Hours: Total","[Moorhen] GPU Hours: Total","[Nuthatch] GPU Hours: Total","[Petrel, Fea's] GPU Hours: Total","[Scaup, Lesser] GPU Hours: Total","[Shearwater, Balearic] GPU Hours: Total","[Shearwater, Great] GPU Hours: Total","[Shearwater, Macaronesian] GPU Hours: Total","[Smew] GPU Hours: Total","[Spotted, Great] GPU Hours: Total","[Swift, Little] GPU Hours: Total","[Tern, Caspian] GPU Hours: Total","[Thrush, Hermit] GPU Hours: Total","[Warbler, Blackpoll] GPU Hours: Total","[Warbler, Cetti's] GPU Hours: Total","[Warbler, Hooded] GPU Hours: Total","[Warbler, Savi's] GPU Hours: Total","[White, Great] GPU Hours: Total","[Yellowthroat, Common] GPU Hours: Total" +2016,465.4928,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2017,41.4200,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0,0.0000,0,0,0,0,0,0.0000,0.0000,0,0,0,0.0000,0,0.0000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/queue/avg_gpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/queue/avg_gpu_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..39055ccfa1 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/queue/avg_gpu_hours/aggregate-Day-reference.csv @@ -0,0 +1,27 @@ +title +"GPU Hours: Per Job: by Queue" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Queue,"GPU Hours: Per Job" +focaccia,38.99329060 +bannock,0.00000000 +barm,0.00000000 +black,0.00000000 +brioche,0.00000000 +brown,0.00000000 +chapti,0.00000000 +cornbread,0.00000000 +croutons,0.00000000 +crumpet,0.00000000 +nann,0.00000000 +panettone,0.00000000 +pikelet,0.00000000 +pita,0.00000000 +potbrood,0.00000000 +pumpernickel,0.00000000 +roti,0.00000000 +white,0.00000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/queue/avg_gpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/queue/avg_gpu_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..39055ccfa1 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/queue/avg_gpu_hours/aggregate-Month-reference.csv @@ -0,0 +1,27 @@ +title +"GPU Hours: Per Job: by Queue" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Queue,"GPU Hours: Per Job" +focaccia,38.99329060 +bannock,0.00000000 +barm,0.00000000 +black,0.00000000 +brioche,0.00000000 +brown,0.00000000 +chapti,0.00000000 +cornbread,0.00000000 +croutons,0.00000000 +crumpet,0.00000000 +nann,0.00000000 +panettone,0.00000000 +pikelet,0.00000000 +pita,0.00000000 +potbrood,0.00000000 +pumpernickel,0.00000000 +roti,0.00000000 +white,0.00000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/queue/avg_gpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/queue/avg_gpu_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..39055ccfa1 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/queue/avg_gpu_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,27 @@ +title +"GPU Hours: Per Job: by Queue" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Queue,"GPU Hours: Per Job" +focaccia,38.99329060 +bannock,0.00000000 +barm,0.00000000 +black,0.00000000 +brioche,0.00000000 +brown,0.00000000 +chapti,0.00000000 +cornbread,0.00000000 +croutons,0.00000000 +crumpet,0.00000000 +nann,0.00000000 +panettone,0.00000000 +pikelet,0.00000000 +pita,0.00000000 +potbrood,0.00000000 +pumpernickel,0.00000000 +roti,0.00000000 +white,0.00000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/queue/avg_gpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/queue/avg_gpu_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..39055ccfa1 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/queue/avg_gpu_hours/aggregate-Year-reference.csv @@ -0,0 +1,27 @@ +title +"GPU Hours: Per Job: by Queue" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Queue,"GPU Hours: Per Job" +focaccia,38.99329060 +bannock,0.00000000 +barm,0.00000000 +black,0.00000000 +brioche,0.00000000 +brown,0.00000000 +chapti,0.00000000 +cornbread,0.00000000 +croutons,0.00000000 +crumpet,0.00000000 +nann,0.00000000 +panettone,0.00000000 +pikelet,0.00000000 +pita,0.00000000 +potbrood,0.00000000 +pumpernickel,0.00000000 +roti,0.00000000 +white,0.00000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/queue/avg_gpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/queue/avg_gpu_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..f457e5f0b9 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/queue/avg_gpu_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"GPU Hours: Per Job: by Queue" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[focaccia] GPU Hours: Per Job","[bannock] GPU Hours: Per Job","[barm] GPU Hours: Per Job","[black] GPU Hours: Per Job","[brioche] GPU Hours: Per Job","[brown] GPU Hours: Per Job","[chapti] GPU Hours: Per Job","[cornbread] GPU Hours: Per Job","[croutons] GPU Hours: Per Job","[crumpet] GPU Hours: Per Job","[nann] GPU Hours: Per Job","[panettone] GPU Hours: Per Job","[pikelet] GPU Hours: Per Job","[pita] GPU Hours: Per Job","[potbrood] GPU Hours: Per Job","[pumpernickel] GPU Hours: Per Job","[roti] GPU Hours: Per Job","[white] GPU Hours: Per Job" +2016-12-22,33.49277778,0,0,0,0,0,0,0,0.00000000,0,0,0,0,0,0,0,0,0 +2016-12-23,48.00000000,0,0,0,0,0,0,0.00000000,0.00000000,0,0,0,0,0,0,0,0,0 +2016-12-24,48.00000000,0,0,0,0,0,0,0.00000000,0.00000000,0,0,0,0,0,0,0,0,0 +2016-12-25,48.00000000,0,0,0,0,0,0,0.00000000,0.00000000,0,0,0,0,0,0,0,0,0 +2016-12-26,48.00000000,0,0,0,0,0,0,0.00000000,0.00000000,0,0,0,0.00000000,0,0,0,0,0 +2016-12-27,48.00000000,0,0,0.00000000,0.00000000,0,0,0.00000000,0.00000000,0.00000000,0,0,0.00000000,0,0,0,0.00000000,0.00000000 +2016-12-28,48.00000000,0,0,0.00000000,0.00000000,0,0,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0,0,0,0.00000000,0.00000000 +2016-12-29,48.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000 +2016-12-30,48.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000 +2016-12-31,48.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000 +2017-01-01,3.18615385,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/queue/avg_gpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/queue/avg_gpu_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..83c2cd880a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/queue/avg_gpu_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Per Job: by Queue" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[focaccia] GPU Hours: Per Job","[bannock] GPU Hours: Per Job","[barm] GPU Hours: Per Job","[black] GPU Hours: Per Job","[brioche] GPU Hours: Per Job","[brown] GPU Hours: Per Job","[chapti] GPU Hours: Per Job","[cornbread] GPU Hours: Per Job","[croutons] GPU Hours: Per Job","[crumpet] GPU Hours: Per Job","[nann] GPU Hours: Per Job","[panettone] GPU Hours: Per Job","[pikelet] GPU Hours: Per Job","[pita] GPU Hours: Per Job","[potbrood] GPU Hours: Per Job","[pumpernickel] GPU Hours: Per Job","[roti] GPU Hours: Per Job","[white] GPU Hours: Per Job" +2016-12,465.49277778,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000 +2017-01,3.18615385,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/queue/avg_gpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/queue/avg_gpu_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..ad386f9e0a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/queue/avg_gpu_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Per Job: by Queue" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[focaccia] GPU Hours: Per Job","[bannock] GPU Hours: Per Job","[barm] GPU Hours: Per Job","[black] GPU Hours: Per Job","[brioche] GPU Hours: Per Job","[brown] GPU Hours: Per Job","[chapti] GPU Hours: Per Job","[cornbread] GPU Hours: Per Job","[croutons] GPU Hours: Per Job","[crumpet] GPU Hours: Per Job","[nann] GPU Hours: Per Job","[panettone] GPU Hours: Per Job","[pikelet] GPU Hours: Per Job","[pita] GPU Hours: Per Job","[potbrood] GPU Hours: Per Job","[pumpernickel] GPU Hours: Per Job","[roti] GPU Hours: Per Job","[white] GPU Hours: Per Job" +"2016 Q4",465.49277778,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000 +"2017 Q1",3.18615385,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/queue/avg_gpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/queue/avg_gpu_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..ed95122a1b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/queue/avg_gpu_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Per Job: by Queue" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[focaccia] GPU Hours: Per Job","[bannock] GPU Hours: Per Job","[barm] GPU Hours: Per Job","[black] GPU Hours: Per Job","[brioche] GPU Hours: Per Job","[brown] GPU Hours: Per Job","[chapti] GPU Hours: Per Job","[cornbread] GPU Hours: Per Job","[croutons] GPU Hours: Per Job","[crumpet] GPU Hours: Per Job","[nann] GPU Hours: Per Job","[panettone] GPU Hours: Per Job","[pikelet] GPU Hours: Per Job","[pita] GPU Hours: Per Job","[potbrood] GPU Hours: Per Job","[pumpernickel] GPU Hours: Per Job","[roti] GPU Hours: Per Job","[white] GPU Hours: Per Job" +2016,465.49277778,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000 +2017,3.18615385,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/queue/avg_gpus/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/queue/avg_gpus/aggregate-Day-reference.csv new file mode 100644 index 0000000000..7dea1f61b0 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/queue/avg_gpus/aggregate-Day-reference.csv @@ -0,0 +1,27 @@ +title +"GPU Count: Per Job: by Queue" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Queue,"GPU Count: Per Job","Std Dev: GPU Count: Per Job" +focaccia,0.3077,0.20013650333971736 +bannock,0.0000,0 +barm,0.0000,0 +black,0.0000,0 +brioche,0.0000,0 +brown,0.0000,0 +chapti,0.0000,0 +cornbread,0.0000,0 +croutons,0.0000,0 +crumpet,0.0000,0 +nann,0.0000,0 +panettone,0.0000,0 +pikelet,0.0000,0 +pita,0.0000,0 +potbrood,0.0000,0 +pumpernickel,0.0000,0 +roti,0.0000,0 +white,0.0000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/queue/avg_gpus/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/queue/avg_gpus/aggregate-Month-reference.csv new file mode 100644 index 0000000000..7dea1f61b0 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/queue/avg_gpus/aggregate-Month-reference.csv @@ -0,0 +1,27 @@ +title +"GPU Count: Per Job: by Queue" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Queue,"GPU Count: Per Job","Std Dev: GPU Count: Per Job" +focaccia,0.3077,0.20013650333971736 +bannock,0.0000,0 +barm,0.0000,0 +black,0.0000,0 +brioche,0.0000,0 +brown,0.0000,0 +chapti,0.0000,0 +cornbread,0.0000,0 +croutons,0.0000,0 +crumpet,0.0000,0 +nann,0.0000,0 +panettone,0.0000,0 +pikelet,0.0000,0 +pita,0.0000,0 +potbrood,0.0000,0 +pumpernickel,0.0000,0 +roti,0.0000,0 +white,0.0000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/queue/avg_gpus/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/queue/avg_gpus/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..7dea1f61b0 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/queue/avg_gpus/aggregate-Quarter-reference.csv @@ -0,0 +1,27 @@ +title +"GPU Count: Per Job: by Queue" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Queue,"GPU Count: Per Job","Std Dev: GPU Count: Per Job" +focaccia,0.3077,0.20013650333971736 +bannock,0.0000,0 +barm,0.0000,0 +black,0.0000,0 +brioche,0.0000,0 +brown,0.0000,0 +chapti,0.0000,0 +cornbread,0.0000,0 +croutons,0.0000,0 +crumpet,0.0000,0 +nann,0.0000,0 +panettone,0.0000,0 +pikelet,0.0000,0 +pita,0.0000,0 +potbrood,0.0000,0 +pumpernickel,0.0000,0 +roti,0.0000,0 +white,0.0000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/queue/avg_gpus/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/queue/avg_gpus/aggregate-Year-reference.csv new file mode 100644 index 0000000000..7dea1f61b0 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/queue/avg_gpus/aggregate-Year-reference.csv @@ -0,0 +1,27 @@ +title +"GPU Count: Per Job: by Queue" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Queue,"GPU Count: Per Job","Std Dev: GPU Count: Per Job" +focaccia,0.3077,0.20013650333971736 +bannock,0.0000,0 +barm,0.0000,0 +black,0.0000,0 +brioche,0.0000,0 +brown,0.0000,0 +chapti,0.0000,0 +cornbread,0.0000,0 +croutons,0.0000,0 +crumpet,0.0000,0 +nann,0.0000,0 +panettone,0.0000,0 +pikelet,0.0000,0 +pita,0.0000,0 +potbrood,0.0000,0 +pumpernickel,0.0000,0 +roti,0.0000,0 +white,0.0000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/queue/avg_gpus/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/queue/avg_gpus/timeseries-Day-reference.csv new file mode 100644 index 0000000000..89e765508e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/queue/avg_gpus/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"GPU Count: Per Job: by Queue" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[focaccia] GPU Count: Per Job","[bannock] GPU Count: Per Job","[barm] GPU Count: Per Job","[black] GPU Count: Per Job","[brioche] GPU Count: Per Job","[brown] GPU Count: Per Job","[chapti] GPU Count: Per Job","[cornbread] GPU Count: Per Job","[croutons] GPU Count: Per Job","[crumpet] GPU Count: Per Job","[nann] GPU Count: Per Job","[panettone] GPU Count: Per Job","[pikelet] GPU Count: Per Job","[pita] GPU Count: Per Job","[potbrood] GPU Count: Per Job","[pumpernickel] GPU Count: Per Job","[roti] GPU Count: Per Job","[white] GPU Count: Per Job" +2016-12-22,2.0000,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0 +2016-12-23,2.0000,0,0,0,0,0,0,0.0000,0.0000,0,0,0,0,0,0,0,0,0 +2016-12-24,2.0000,0,0,0,0,0,0,0.0000,0.0000,0,0,0,0,0,0,0,0,0 +2016-12-25,2.0000,0,0,0,0,0,0,0.0000,0.0000,0,0,0,0,0,0,0,0,0 +2016-12-26,2.0000,0,0,0,0,0,0,0.0000,0.0000,0,0,0,0.0000,0,0,0,0,0 +2016-12-27,2.0000,0,0,0.0000,0.0000,0,0,0.0000,0.0000,0.0000,0,0,0.0000,0,0,0,0.0000,0.0000 +2016-12-28,2.0000,0,0,0.0000,0.0000,0,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0,0,0.0000,0.0000 +2016-12-29,2.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000 +2016-12-30,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2016-12-31,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2017-01-01,0.3077,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/queue/avg_gpus/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/queue/avg_gpus/timeseries-Month-reference.csv new file mode 100644 index 0000000000..1e2ddcc226 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/queue/avg_gpus/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Count: Per Job: by Queue" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[focaccia] GPU Count: Per Job","[bannock] GPU Count: Per Job","[barm] GPU Count: Per Job","[black] GPU Count: Per Job","[brioche] GPU Count: Per Job","[brown] GPU Count: Per Job","[chapti] GPU Count: Per Job","[cornbread] GPU Count: Per Job","[croutons] GPU Count: Per Job","[crumpet] GPU Count: Per Job","[nann] GPU Count: Per Job","[panettone] GPU Count: Per Job","[pikelet] GPU Count: Per Job","[pita] GPU Count: Per Job","[potbrood] GPU Count: Per Job","[pumpernickel] GPU Count: Per Job","[roti] GPU Count: Per Job","[white] GPU Count: Per Job" +2016-12,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2017-01,0.3077,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/queue/avg_gpus/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/queue/avg_gpus/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..8954181f4d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/queue/avg_gpus/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Count: Per Job: by Queue" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[focaccia] GPU Count: Per Job","[bannock] GPU Count: Per Job","[barm] GPU Count: Per Job","[black] GPU Count: Per Job","[brioche] GPU Count: Per Job","[brown] GPU Count: Per Job","[chapti] GPU Count: Per Job","[cornbread] GPU Count: Per Job","[croutons] GPU Count: Per Job","[crumpet] GPU Count: Per Job","[nann] GPU Count: Per Job","[panettone] GPU Count: Per Job","[pikelet] GPU Count: Per Job","[pita] GPU Count: Per Job","[potbrood] GPU Count: Per Job","[pumpernickel] GPU Count: Per Job","[roti] GPU Count: Per Job","[white] GPU Count: Per Job" +"2016 Q4",2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +"2017 Q1",0.3077,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/queue/avg_gpus/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/queue/avg_gpus/timeseries-Year-reference.csv new file mode 100644 index 0000000000..8782107b60 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/queue/avg_gpus/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Count: Per Job: by Queue" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[focaccia] GPU Count: Per Job","[bannock] GPU Count: Per Job","[barm] GPU Count: Per Job","[black] GPU Count: Per Job","[brioche] GPU Count: Per Job","[brown] GPU Count: Per Job","[chapti] GPU Count: Per Job","[cornbread] GPU Count: Per Job","[croutons] GPU Count: Per Job","[crumpet] GPU Count: Per Job","[nann] GPU Count: Per Job","[panettone] GPU Count: Per Job","[pikelet] GPU Count: Per Job","[pita] GPU Count: Per Job","[potbrood] GPU Count: Per Job","[pumpernickel] GPU Count: Per Job","[roti] GPU Count: Per Job","[white] GPU Count: Per Job" +2016,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2017,0.3077,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/queue/avg_job_size_weighted_by_gpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/queue/avg_job_size_weighted_by_gpu_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..133da14cbe --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/queue/avg_job_size_weighted_by_gpu_hours/aggregate-Day-reference.csv @@ -0,0 +1,27 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by Queue" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Queue,"Job Size: Weighted By GPU Hours (GPU Count)" +focaccia,12.0000 +bannock,0.0000 +barm,0.0000 +black,0.0000 +brioche,0.0000 +brown,0.0000 +chapti,0.0000 +cornbread,0.0000 +croutons,0.0000 +crumpet,0.0000 +nann,0.0000 +panettone,0.0000 +pikelet,0.0000 +pita,0.0000 +potbrood,0.0000 +pumpernickel,0.0000 +roti,0.0000 +white,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/queue/avg_job_size_weighted_by_gpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/queue/avg_job_size_weighted_by_gpu_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..133da14cbe --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/queue/avg_job_size_weighted_by_gpu_hours/aggregate-Month-reference.csv @@ -0,0 +1,27 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by Queue" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Queue,"Job Size: Weighted By GPU Hours (GPU Count)" +focaccia,12.0000 +bannock,0.0000 +barm,0.0000 +black,0.0000 +brioche,0.0000 +brown,0.0000 +chapti,0.0000 +cornbread,0.0000 +croutons,0.0000 +crumpet,0.0000 +nann,0.0000 +panettone,0.0000 +pikelet,0.0000 +pita,0.0000 +potbrood,0.0000 +pumpernickel,0.0000 +roti,0.0000 +white,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/queue/avg_job_size_weighted_by_gpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/queue/avg_job_size_weighted_by_gpu_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..133da14cbe --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/queue/avg_job_size_weighted_by_gpu_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,27 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by Queue" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Queue,"Job Size: Weighted By GPU Hours (GPU Count)" +focaccia,12.0000 +bannock,0.0000 +barm,0.0000 +black,0.0000 +brioche,0.0000 +brown,0.0000 +chapti,0.0000 +cornbread,0.0000 +croutons,0.0000 +crumpet,0.0000 +nann,0.0000 +panettone,0.0000 +pikelet,0.0000 +pita,0.0000 +potbrood,0.0000 +pumpernickel,0.0000 +roti,0.0000 +white,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/queue/avg_job_size_weighted_by_gpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/queue/avg_job_size_weighted_by_gpu_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..133da14cbe --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/queue/avg_job_size_weighted_by_gpu_hours/aggregate-Year-reference.csv @@ -0,0 +1,27 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by Queue" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Queue,"Job Size: Weighted By GPU Hours (GPU Count)" +focaccia,12.0000 +bannock,0.0000 +barm,0.0000 +black,0.0000 +brioche,0.0000 +brown,0.0000 +chapti,0.0000 +cornbread,0.0000 +croutons,0.0000 +crumpet,0.0000 +nann,0.0000 +panettone,0.0000 +pikelet,0.0000 +pita,0.0000 +potbrood,0.0000 +pumpernickel,0.0000 +roti,0.0000 +white,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/queue/avg_job_size_weighted_by_gpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/queue/avg_job_size_weighted_by_gpu_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..a4df70a1a6 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/queue/avg_job_size_weighted_by_gpu_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by Queue" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[focaccia] Job Size: Weighted By GPU Hours (GPU Count)","[bannock] Job Size: Weighted By GPU Hours (GPU Count)","[barm] Job Size: Weighted By GPU Hours (GPU Count)","[black] Job Size: Weighted By GPU Hours (GPU Count)","[brioche] Job Size: Weighted By GPU Hours (GPU Count)","[brown] Job Size: Weighted By GPU Hours (GPU Count)","[chapti] Job Size: Weighted By GPU Hours (GPU Count)","[cornbread] Job Size: Weighted By GPU Hours (GPU Count)","[croutons] Job Size: Weighted By GPU Hours (GPU Count)","[crumpet] Job Size: Weighted By GPU Hours (GPU Count)","[nann] Job Size: Weighted By GPU Hours (GPU Count)","[panettone] Job Size: Weighted By GPU Hours (GPU Count)","[pikelet] Job Size: Weighted By GPU Hours (GPU Count)","[pita] Job Size: Weighted By GPU Hours (GPU Count)","[potbrood] Job Size: Weighted By GPU Hours (GPU Count)","[pumpernickel] Job Size: Weighted By GPU Hours (GPU Count)","[roti] Job Size: Weighted By GPU Hours (GPU Count)","[white] Job Size: Weighted By GPU Hours (GPU Count)" +2016-12-22,12.0000,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0 +2016-12-23,12.0000,0,0,0,0,0,0,0.0000,0.0000,0,0,0,0,0,0,0,0,0 +2016-12-24,12.0000,0,0,0,0,0,0,0.0000,0.0000,0,0,0,0,0,0,0,0,0 +2016-12-25,12.0000,0,0,0,0,0,0,0.0000,0.0000,0,0,0,0,0,0,0,0,0 +2016-12-26,12.0000,0,0,0,0,0,0,0.0000,0.0000,0,0,0,0.0000,0,0,0,0,0 +2016-12-27,12.0000,0,0,0.0000,0.0000,0,0,0.0000,0.0000,0.0000,0,0,0.0000,0,0,0,0.0000,0.0000 +2016-12-28,12.0000,0,0,0.0000,0.0000,0,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0,0,0.0000,0.0000 +2016-12-29,12.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000 +2016-12-30,12.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2016-12-31,12.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2017-01-01,12.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/queue/avg_job_size_weighted_by_gpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/queue/avg_job_size_weighted_by_gpu_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..cbd6f72972 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/queue/avg_job_size_weighted_by_gpu_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by Queue" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[focaccia] Job Size: Weighted By GPU Hours (GPU Count)","[bannock] Job Size: Weighted By GPU Hours (GPU Count)","[barm] Job Size: Weighted By GPU Hours (GPU Count)","[black] Job Size: Weighted By GPU Hours (GPU Count)","[brioche] Job Size: Weighted By GPU Hours (GPU Count)","[brown] Job Size: Weighted By GPU Hours (GPU Count)","[chapti] Job Size: Weighted By GPU Hours (GPU Count)","[cornbread] Job Size: Weighted By GPU Hours (GPU Count)","[croutons] Job Size: Weighted By GPU Hours (GPU Count)","[crumpet] Job Size: Weighted By GPU Hours (GPU Count)","[nann] Job Size: Weighted By GPU Hours (GPU Count)","[panettone] Job Size: Weighted By GPU Hours (GPU Count)","[pikelet] Job Size: Weighted By GPU Hours (GPU Count)","[pita] Job Size: Weighted By GPU Hours (GPU Count)","[potbrood] Job Size: Weighted By GPU Hours (GPU Count)","[pumpernickel] Job Size: Weighted By GPU Hours (GPU Count)","[roti] Job Size: Weighted By GPU Hours (GPU Count)","[white] Job Size: Weighted By GPU Hours (GPU Count)" +2016-12,12.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2017-01,12.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/queue/avg_job_size_weighted_by_gpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/queue/avg_job_size_weighted_by_gpu_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..e9d9a933c9 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/queue/avg_job_size_weighted_by_gpu_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by Queue" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[focaccia] Job Size: Weighted By GPU Hours (GPU Count)","[bannock] Job Size: Weighted By GPU Hours (GPU Count)","[barm] Job Size: Weighted By GPU Hours (GPU Count)","[black] Job Size: Weighted By GPU Hours (GPU Count)","[brioche] Job Size: Weighted By GPU Hours (GPU Count)","[brown] Job Size: Weighted By GPU Hours (GPU Count)","[chapti] Job Size: Weighted By GPU Hours (GPU Count)","[cornbread] Job Size: Weighted By GPU Hours (GPU Count)","[croutons] Job Size: Weighted By GPU Hours (GPU Count)","[crumpet] Job Size: Weighted By GPU Hours (GPU Count)","[nann] Job Size: Weighted By GPU Hours (GPU Count)","[panettone] Job Size: Weighted By GPU Hours (GPU Count)","[pikelet] Job Size: Weighted By GPU Hours (GPU Count)","[pita] Job Size: Weighted By GPU Hours (GPU Count)","[potbrood] Job Size: Weighted By GPU Hours (GPU Count)","[pumpernickel] Job Size: Weighted By GPU Hours (GPU Count)","[roti] Job Size: Weighted By GPU Hours (GPU Count)","[white] Job Size: Weighted By GPU Hours (GPU Count)" +"2016 Q4",12.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +"2017 Q1",12.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/queue/avg_job_size_weighted_by_gpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/queue/avg_job_size_weighted_by_gpu_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..2761c63cfe --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/queue/avg_job_size_weighted_by_gpu_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by Queue" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[focaccia] Job Size: Weighted By GPU Hours (GPU Count)","[bannock] Job Size: Weighted By GPU Hours (GPU Count)","[barm] Job Size: Weighted By GPU Hours (GPU Count)","[black] Job Size: Weighted By GPU Hours (GPU Count)","[brioche] Job Size: Weighted By GPU Hours (GPU Count)","[brown] Job Size: Weighted By GPU Hours (GPU Count)","[chapti] Job Size: Weighted By GPU Hours (GPU Count)","[cornbread] Job Size: Weighted By GPU Hours (GPU Count)","[croutons] Job Size: Weighted By GPU Hours (GPU Count)","[crumpet] Job Size: Weighted By GPU Hours (GPU Count)","[nann] Job Size: Weighted By GPU Hours (GPU Count)","[panettone] Job Size: Weighted By GPU Hours (GPU Count)","[pikelet] Job Size: Weighted By GPU Hours (GPU Count)","[pita] Job Size: Weighted By GPU Hours (GPU Count)","[potbrood] Job Size: Weighted By GPU Hours (GPU Count)","[pumpernickel] Job Size: Weighted By GPU Hours (GPU Count)","[roti] Job Size: Weighted By GPU Hours (GPU Count)","[white] Job Size: Weighted By GPU Hours (GPU Count)" +2016,12.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2017,12.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/queue/total_gpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/queue/total_gpu_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..5f0bdf7523 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/queue/total_gpu_hours/aggregate-Day-reference.csv @@ -0,0 +1,27 @@ +title +"GPU Hours: Total: by Queue" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Queue,"GPU Hours: Total" +focaccia,506.9128 +bannock,0.0000 +barm,0.0000 +black,0.0000 +brioche,0.0000 +brown,0.0000 +chapti,0.0000 +cornbread,0.0000 +croutons,0.0000 +crumpet,0.0000 +nann,0.0000 +panettone,0.0000 +pikelet,0.0000 +pita,0.0000 +potbrood,0.0000 +pumpernickel,0.0000 +roti,0.0000 +white,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/queue/total_gpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/queue/total_gpu_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..5f0bdf7523 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/queue/total_gpu_hours/aggregate-Month-reference.csv @@ -0,0 +1,27 @@ +title +"GPU Hours: Total: by Queue" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Queue,"GPU Hours: Total" +focaccia,506.9128 +bannock,0.0000 +barm,0.0000 +black,0.0000 +brioche,0.0000 +brown,0.0000 +chapti,0.0000 +cornbread,0.0000 +croutons,0.0000 +crumpet,0.0000 +nann,0.0000 +panettone,0.0000 +pikelet,0.0000 +pita,0.0000 +potbrood,0.0000 +pumpernickel,0.0000 +roti,0.0000 +white,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/queue/total_gpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/queue/total_gpu_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..5f0bdf7523 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/queue/total_gpu_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,27 @@ +title +"GPU Hours: Total: by Queue" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Queue,"GPU Hours: Total" +focaccia,506.9128 +bannock,0.0000 +barm,0.0000 +black,0.0000 +brioche,0.0000 +brown,0.0000 +chapti,0.0000 +cornbread,0.0000 +croutons,0.0000 +crumpet,0.0000 +nann,0.0000 +panettone,0.0000 +pikelet,0.0000 +pita,0.0000 +potbrood,0.0000 +pumpernickel,0.0000 +roti,0.0000 +white,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/queue/total_gpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/queue/total_gpu_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..5f0bdf7523 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/queue/total_gpu_hours/aggregate-Year-reference.csv @@ -0,0 +1,27 @@ +title +"GPU Hours: Total: by Queue" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Queue,"GPU Hours: Total" +focaccia,506.9128 +bannock,0.0000 +barm,0.0000 +black,0.0000 +brioche,0.0000 +brown,0.0000 +chapti,0.0000 +cornbread,0.0000 +croutons,0.0000 +crumpet,0.0000 +nann,0.0000 +panettone,0.0000 +pikelet,0.0000 +pita,0.0000 +potbrood,0.0000 +pumpernickel,0.0000 +roti,0.0000 +white,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/queue/total_gpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/queue/total_gpu_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..6eb27b8070 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/queue/total_gpu_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"GPU Hours: Total: by Queue" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[focaccia] GPU Hours: Total","[bannock] GPU Hours: Total","[barm] GPU Hours: Total","[black] GPU Hours: Total","[brioche] GPU Hours: Total","[brown] GPU Hours: Total","[chapti] GPU Hours: Total","[cornbread] GPU Hours: Total","[croutons] GPU Hours: Total","[crumpet] GPU Hours: Total","[nann] GPU Hours: Total","[panettone] GPU Hours: Total","[pikelet] GPU Hours: Total","[pita] GPU Hours: Total","[potbrood] GPU Hours: Total","[pumpernickel] GPU Hours: Total","[roti] GPU Hours: Total","[white] GPU Hours: Total" +2016-12-22,33.4928,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0 +2016-12-23,48.0000,0,0,0,0,0,0,0.0000,0.0000,0,0,0,0,0,0,0,0,0 +2016-12-24,48.0000,0,0,0,0,0,0,0.0000,0.0000,0,0,0,0,0,0,0,0,0 +2016-12-25,48.0000,0,0,0,0,0,0,0.0000,0.0000,0,0,0,0,0,0,0,0,0 +2016-12-26,48.0000,0,0,0,0,0,0,0.0000,0.0000,0,0,0,0.0000,0,0,0,0,0 +2016-12-27,48.0000,0,0,0.0000,0.0000,0,0,0.0000,0.0000,0.0000,0,0,0.0000,0,0,0,0.0000,0.0000 +2016-12-28,48.0000,0,0,0.0000,0.0000,0,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0,0,0.0000,0.0000 +2016-12-29,48.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000 +2016-12-30,48.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2016-12-31,48.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2017-01-01,41.4200,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/queue/total_gpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/queue/total_gpu_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..be7649f7eb --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/queue/total_gpu_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Total: by Queue" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[focaccia] GPU Hours: Total","[bannock] GPU Hours: Total","[barm] GPU Hours: Total","[black] GPU Hours: Total","[brioche] GPU Hours: Total","[brown] GPU Hours: Total","[chapti] GPU Hours: Total","[cornbread] GPU Hours: Total","[croutons] GPU Hours: Total","[crumpet] GPU Hours: Total","[nann] GPU Hours: Total","[panettone] GPU Hours: Total","[pikelet] GPU Hours: Total","[pita] GPU Hours: Total","[potbrood] GPU Hours: Total","[pumpernickel] GPU Hours: Total","[roti] GPU Hours: Total","[white] GPU Hours: Total" +2016-12,465.4928,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2017-01,41.4200,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/queue/total_gpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/queue/total_gpu_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..5f9a86e100 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/queue/total_gpu_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Total: by Queue" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[focaccia] GPU Hours: Total","[bannock] GPU Hours: Total","[barm] GPU Hours: Total","[black] GPU Hours: Total","[brioche] GPU Hours: Total","[brown] GPU Hours: Total","[chapti] GPU Hours: Total","[cornbread] GPU Hours: Total","[croutons] GPU Hours: Total","[crumpet] GPU Hours: Total","[nann] GPU Hours: Total","[panettone] GPU Hours: Total","[pikelet] GPU Hours: Total","[pita] GPU Hours: Total","[potbrood] GPU Hours: Total","[pumpernickel] GPU Hours: Total","[roti] GPU Hours: Total","[white] GPU Hours: Total" +"2016 Q4",465.4928,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +"2017 Q1",41.4200,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/queue/total_gpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/queue/total_gpu_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..2256fd5fa3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/queue/total_gpu_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Total: by Queue" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[focaccia] GPU Hours: Total","[bannock] GPU Hours: Total","[barm] GPU Hours: Total","[black] GPU Hours: Total","[brioche] GPU Hours: Total","[brown] GPU Hours: Total","[chapti] GPU Hours: Total","[cornbread] GPU Hours: Total","[croutons] GPU Hours: Total","[crumpet] GPU Hours: Total","[nann] GPU Hours: Total","[panettone] GPU Hours: Total","[pikelet] GPU Hours: Total","[pita] GPU Hours: Total","[potbrood] GPU Hours: Total","[pumpernickel] GPU Hours: Total","[roti] GPU Hours: Total","[white] GPU Hours: Total" +2016,465.4928,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2017,41.4200,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource/avg_gpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource/avg_gpu_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..280df39d9a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource/avg_gpu_hours/aggregate-Day-reference.csv @@ -0,0 +1,14 @@ +title +"GPU Hours: Per Job: by Resource" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Resource,"GPU Hours: Per Job" +phillips,0.12528739 +frearson,0.00000000 +mortorq,0.00000000 +pozidriv,0.00000000 +robertson,0.00000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource/avg_gpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource/avg_gpu_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..280df39d9a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource/avg_gpu_hours/aggregate-Month-reference.csv @@ -0,0 +1,14 @@ +title +"GPU Hours: Per Job: by Resource" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Resource,"GPU Hours: Per Job" +phillips,0.12528739 +frearson,0.00000000 +mortorq,0.00000000 +pozidriv,0.00000000 +robertson,0.00000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource/avg_gpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource/avg_gpu_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..280df39d9a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource/avg_gpu_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,14 @@ +title +"GPU Hours: Per Job: by Resource" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Resource,"GPU Hours: Per Job" +phillips,0.12528739 +frearson,0.00000000 +mortorq,0.00000000 +pozidriv,0.00000000 +robertson,0.00000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource/avg_gpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource/avg_gpu_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..280df39d9a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource/avg_gpu_hours/aggregate-Year-reference.csv @@ -0,0 +1,14 @@ +title +"GPU Hours: Per Job: by Resource" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Resource,"GPU Hours: Per Job" +phillips,0.12528739 +frearson,0.00000000 +mortorq,0.00000000 +pozidriv,0.00000000 +robertson,0.00000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource/avg_gpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource/avg_gpu_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..3d9c6f20a3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource/avg_gpu_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"GPU Hours: Per Job: by Resource" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[phillips] GPU Hours: Per Job","[frearson] GPU Hours: Per Job","[mortorq] GPU Hours: Per Job","[pozidriv] GPU Hours: Per Job","[robertson] GPU Hours: Per Job" +2016-12-22,33.49277778,0,0,0.00000000,0 +2016-12-23,48.00000000,0,0,0.00000000,0 +2016-12-24,48.00000000,0,0,0.00000000,0 +2016-12-25,48.00000000,0,0,0.00000000,0 +2016-12-26,48.00000000,0,0.00000000,0.00000000,0 +2016-12-27,24.00000000,0.00000000,0.00000000,0.00000000,0.00000000 +2016-12-28,24.00000000,0.00000000,0.00000000,0.00000000,0.00000000 +2016-12-29,24.00000000,0.00000000,0.00000000,0.00000000,0.00000000 +2016-12-30,0.04549763,0.00000000,0.00000000,0.00000000,0.00000000 +2016-12-31,0.01913113,0.00000000,0.00000000,0.00000000,0.00000000 +2017-01-01,0.08487705,0.00000000,0.00000000,0.00000000,0.00000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource/avg_gpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource/avg_gpu_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..5d1d099a71 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource/avg_gpu_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Per Job: by Resource" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[phillips] GPU Hours: Per Job","[frearson] GPU Hours: Per Job","[mortorq] GPU Hours: Per Job","[pozidriv] GPU Hours: Per Job","[robertson] GPU Hours: Per Job" +2016-12,0.13071968,0.00000000,0.00000000,0.00000000,0.00000000 +2017-01,0.08487705,0.00000000,0.00000000,0.00000000,0.00000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource/avg_gpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource/avg_gpu_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..9f800db849 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource/avg_gpu_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Per Job: by Resource" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[phillips] GPU Hours: Per Job","[frearson] GPU Hours: Per Job","[mortorq] GPU Hours: Per Job","[pozidriv] GPU Hours: Per Job","[robertson] GPU Hours: Per Job" +"2016 Q4",0.13071968,0.00000000,0.00000000,0.00000000,0.00000000 +"2017 Q1",0.08487705,0.00000000,0.00000000,0.00000000,0.00000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource/avg_gpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource/avg_gpu_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..ae3715d125 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource/avg_gpu_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Per Job: by Resource" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[phillips] GPU Hours: Per Job","[frearson] GPU Hours: Per Job","[mortorq] GPU Hours: Per Job","[pozidriv] GPU Hours: Per Job","[robertson] GPU Hours: Per Job" +2016,0.13071968,0.00000000,0.00000000,0.00000000,0.00000000 +2017,0.08487705,0.00000000,0.00000000,0.00000000,0.00000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource/avg_gpus/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource/avg_gpus/aggregate-Day-reference.csv new file mode 100644 index 0000000000..bd9dc0c330 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource/avg_gpus/aggregate-Day-reference.csv @@ -0,0 +1,14 @@ +title +"GPU Count: Per Job: by Resource" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Resource,"GPU Count: Per Job","Std Dev: GPU Count: Per Job" +phillips,0.0010,0.0006988947038768784 +frearson,0.0000,0 +mortorq,0.0000,0 +pozidriv,0.0000,0 +robertson,0.0000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource/avg_gpus/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource/avg_gpus/aggregate-Month-reference.csv new file mode 100644 index 0000000000..bd9dc0c330 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource/avg_gpus/aggregate-Month-reference.csv @@ -0,0 +1,14 @@ +title +"GPU Count: Per Job: by Resource" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Resource,"GPU Count: Per Job","Std Dev: GPU Count: Per Job" +phillips,0.0010,0.0006988947038768784 +frearson,0.0000,0 +mortorq,0.0000,0 +pozidriv,0.0000,0 +robertson,0.0000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource/avg_gpus/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource/avg_gpus/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..bd9dc0c330 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource/avg_gpus/aggregate-Quarter-reference.csv @@ -0,0 +1,14 @@ +title +"GPU Count: Per Job: by Resource" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Resource,"GPU Count: Per Job","Std Dev: GPU Count: Per Job" +phillips,0.0010,0.0006988947038768784 +frearson,0.0000,0 +mortorq,0.0000,0 +pozidriv,0.0000,0 +robertson,0.0000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource/avg_gpus/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource/avg_gpus/aggregate-Year-reference.csv new file mode 100644 index 0000000000..bd9dc0c330 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource/avg_gpus/aggregate-Year-reference.csv @@ -0,0 +1,14 @@ +title +"GPU Count: Per Job: by Resource" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Resource,"GPU Count: Per Job","Std Dev: GPU Count: Per Job" +phillips,0.0010,0.0006988947038768784 +frearson,0.0000,0 +mortorq,0.0000,0 +pozidriv,0.0000,0 +robertson,0.0000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource/avg_gpus/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource/avg_gpus/timeseries-Day-reference.csv new file mode 100644 index 0000000000..6e36151962 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource/avg_gpus/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"GPU Count: Per Job: by Resource" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[phillips] GPU Count: Per Job","[frearson] GPU Count: Per Job","[mortorq] GPU Count: Per Job","[pozidriv] GPU Count: Per Job","[robertson] GPU Count: Per Job" +2016-12-22,2.0000,0,0,0.0000,0 +2016-12-23,2.0000,0,0,0.0000,0 +2016-12-24,2.0000,0,0,0.0000,0 +2016-12-25,2.0000,0,0,0.0000,0 +2016-12-26,2.0000,0,0.0000,0.0000,0 +2016-12-27,1.0000,0.0000,0.0000,0.0000,0.0000 +2016-12-28,1.0000,0.0000,0.0000,0.0000,0.0000 +2016-12-29,1.0000,0.0000,0.0000,0.0000,0.0000 +2016-12-30,0.0019,0.0000,0.0000,0.0000,0.0000 +2016-12-31,0.0008,0.0000,0.0000,0.0000,0.0000 +2017-01-01,0.0082,0.0000,0.0000,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource/avg_gpus/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource/avg_gpus/timeseries-Month-reference.csv new file mode 100644 index 0000000000..8799e311b5 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource/avg_gpus/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Count: Per Job: by Resource" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[phillips] GPU Count: Per Job","[frearson] GPU Count: Per Job","[mortorq] GPU Count: Per Job","[pozidriv] GPU Count: Per Job","[robertson] GPU Count: Per Job" +2016-12,0.0006,0.0000,0.0000,0.0000,0.0000 +2017-01,0.0082,0.0000,0.0000,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource/avg_gpus/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource/avg_gpus/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..199209996f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource/avg_gpus/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Count: Per Job: by Resource" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[phillips] GPU Count: Per Job","[frearson] GPU Count: Per Job","[mortorq] GPU Count: Per Job","[pozidriv] GPU Count: Per Job","[robertson] GPU Count: Per Job" +"2016 Q4",0.0006,0.0000,0.0000,0.0000,0.0000 +"2017 Q1",0.0082,0.0000,0.0000,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource/avg_gpus/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource/avg_gpus/timeseries-Year-reference.csv new file mode 100644 index 0000000000..5f6be66870 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource/avg_gpus/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Count: Per Job: by Resource" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[phillips] GPU Count: Per Job","[frearson] GPU Count: Per Job","[mortorq] GPU Count: Per Job","[pozidriv] GPU Count: Per Job","[robertson] GPU Count: Per Job" +2016,0.0006,0.0000,0.0000,0.0000,0.0000 +2017,0.0082,0.0000,0.0000,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource/avg_job_size_weighted_by_gpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource/avg_job_size_weighted_by_gpu_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..080de1e306 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource/avg_job_size_weighted_by_gpu_hours/aggregate-Day-reference.csv @@ -0,0 +1,14 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by Resource" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Resource,"Job Size: Weighted By GPU Hours (GPU Count)" +phillips,12.0000 +frearson,0.0000 +mortorq,0.0000 +pozidriv,0.0000 +robertson,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource/avg_job_size_weighted_by_gpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource/avg_job_size_weighted_by_gpu_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..080de1e306 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource/avg_job_size_weighted_by_gpu_hours/aggregate-Month-reference.csv @@ -0,0 +1,14 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by Resource" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Resource,"Job Size: Weighted By GPU Hours (GPU Count)" +phillips,12.0000 +frearson,0.0000 +mortorq,0.0000 +pozidriv,0.0000 +robertson,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource/avg_job_size_weighted_by_gpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource/avg_job_size_weighted_by_gpu_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..080de1e306 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource/avg_job_size_weighted_by_gpu_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,14 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by Resource" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Resource,"Job Size: Weighted By GPU Hours (GPU Count)" +phillips,12.0000 +frearson,0.0000 +mortorq,0.0000 +pozidriv,0.0000 +robertson,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource/avg_job_size_weighted_by_gpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource/avg_job_size_weighted_by_gpu_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..080de1e306 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource/avg_job_size_weighted_by_gpu_hours/aggregate-Year-reference.csv @@ -0,0 +1,14 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by Resource" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Resource,"Job Size: Weighted By GPU Hours (GPU Count)" +phillips,12.0000 +frearson,0.0000 +mortorq,0.0000 +pozidriv,0.0000 +robertson,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource/avg_job_size_weighted_by_gpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource/avg_job_size_weighted_by_gpu_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..cdfb59ea39 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource/avg_job_size_weighted_by_gpu_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by Resource" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[phillips] Job Size: Weighted By GPU Hours (GPU Count)","[frearson] Job Size: Weighted By GPU Hours (GPU Count)","[mortorq] Job Size: Weighted By GPU Hours (GPU Count)","[pozidriv] Job Size: Weighted By GPU Hours (GPU Count)","[robertson] Job Size: Weighted By GPU Hours (GPU Count)" +2016-12-22,12.0000,0,0,0.0000,0 +2016-12-23,12.0000,0,0,0.0000,0 +2016-12-24,12.0000,0,0,0.0000,0 +2016-12-25,12.0000,0,0,0.0000,0 +2016-12-26,12.0000,0,0.0000,0.0000,0 +2016-12-27,12.0000,0.0000,0.0000,0.0000,0.0000 +2016-12-28,12.0000,0.0000,0.0000,0.0000,0.0000 +2016-12-29,12.0000,0.0000,0.0000,0.0000,0.0000 +2016-12-30,12.0000,0.0000,0.0000,0.0000,0.0000 +2016-12-31,12.0000,0.0000,0.0000,0.0000,0.0000 +2017-01-01,12.0000,0.0000,0.0000,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource/avg_job_size_weighted_by_gpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource/avg_job_size_weighted_by_gpu_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..00e38d5544 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource/avg_job_size_weighted_by_gpu_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by Resource" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[phillips] Job Size: Weighted By GPU Hours (GPU Count)","[frearson] Job Size: Weighted By GPU Hours (GPU Count)","[mortorq] Job Size: Weighted By GPU Hours (GPU Count)","[pozidriv] Job Size: Weighted By GPU Hours (GPU Count)","[robertson] Job Size: Weighted By GPU Hours (GPU Count)" +2016-12,12.0000,0.0000,0.0000,0.0000,0.0000 +2017-01,12.0000,0.0000,0.0000,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource/avg_job_size_weighted_by_gpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource/avg_job_size_weighted_by_gpu_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..ebe76ebf7b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource/avg_job_size_weighted_by_gpu_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by Resource" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[phillips] Job Size: Weighted By GPU Hours (GPU Count)","[frearson] Job Size: Weighted By GPU Hours (GPU Count)","[mortorq] Job Size: Weighted By GPU Hours (GPU Count)","[pozidriv] Job Size: Weighted By GPU Hours (GPU Count)","[robertson] Job Size: Weighted By GPU Hours (GPU Count)" +"2016 Q4",12.0000,0.0000,0.0000,0.0000,0.0000 +"2017 Q1",12.0000,0.0000,0.0000,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource/avg_job_size_weighted_by_gpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource/avg_job_size_weighted_by_gpu_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..c5885700c6 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource/avg_job_size_weighted_by_gpu_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by Resource" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[phillips] Job Size: Weighted By GPU Hours (GPU Count)","[frearson] Job Size: Weighted By GPU Hours (GPU Count)","[mortorq] Job Size: Weighted By GPU Hours (GPU Count)","[pozidriv] Job Size: Weighted By GPU Hours (GPU Count)","[robertson] Job Size: Weighted By GPU Hours (GPU Count)" +2016,12.0000,0.0000,0.0000,0.0000,0.0000 +2017,12.0000,0.0000,0.0000,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource/total_gpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource/total_gpu_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..05b21cf195 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource/total_gpu_hours/aggregate-Day-reference.csv @@ -0,0 +1,14 @@ +title +"GPU Hours: Total: by Resource" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Resource,"GPU Hours: Total" +phillips,506.9128 +frearson,0.0000 +mortorq,0.0000 +pozidriv,0.0000 +robertson,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource/total_gpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource/total_gpu_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..05b21cf195 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource/total_gpu_hours/aggregate-Month-reference.csv @@ -0,0 +1,14 @@ +title +"GPU Hours: Total: by Resource" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Resource,"GPU Hours: Total" +phillips,506.9128 +frearson,0.0000 +mortorq,0.0000 +pozidriv,0.0000 +robertson,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource/total_gpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource/total_gpu_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..05b21cf195 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource/total_gpu_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,14 @@ +title +"GPU Hours: Total: by Resource" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Resource,"GPU Hours: Total" +phillips,506.9128 +frearson,0.0000 +mortorq,0.0000 +pozidriv,0.0000 +robertson,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource/total_gpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource/total_gpu_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..05b21cf195 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource/total_gpu_hours/aggregate-Year-reference.csv @@ -0,0 +1,14 @@ +title +"GPU Hours: Total: by Resource" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Resource,"GPU Hours: Total" +phillips,506.9128 +frearson,0.0000 +mortorq,0.0000 +pozidriv,0.0000 +robertson,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource/total_gpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource/total_gpu_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..57cecd68b3 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource/total_gpu_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"GPU Hours: Total: by Resource" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[phillips] GPU Hours: Total","[frearson] GPU Hours: Total","[mortorq] GPU Hours: Total","[pozidriv] GPU Hours: Total","[robertson] GPU Hours: Total" +2016-12-22,33.4928,0,0,0.0000,0 +2016-12-23,48.0000,0,0,0.0000,0 +2016-12-24,48.0000,0,0,0.0000,0 +2016-12-25,48.0000,0,0,0.0000,0 +2016-12-26,48.0000,0,0.0000,0.0000,0 +2016-12-27,48.0000,0.0000,0.0000,0.0000,0.0000 +2016-12-28,48.0000,0.0000,0.0000,0.0000,0.0000 +2016-12-29,48.0000,0.0000,0.0000,0.0000,0.0000 +2016-12-30,48.0000,0.0000,0.0000,0.0000,0.0000 +2016-12-31,48.0000,0.0000,0.0000,0.0000,0.0000 +2017-01-01,41.4200,0.0000,0.0000,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource/total_gpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource/total_gpu_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..a2d39954af --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource/total_gpu_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Total: by Resource" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[phillips] GPU Hours: Total","[frearson] GPU Hours: Total","[mortorq] GPU Hours: Total","[pozidriv] GPU Hours: Total","[robertson] GPU Hours: Total" +2016-12,465.4928,0.0000,0.0000,0.0000,0.0000 +2017-01,41.4200,0.0000,0.0000,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource/total_gpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource/total_gpu_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..2fbc2b14b5 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource/total_gpu_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Total: by Resource" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[phillips] GPU Hours: Total","[frearson] GPU Hours: Total","[mortorq] GPU Hours: Total","[pozidriv] GPU Hours: Total","[robertson] GPU Hours: Total" +"2016 Q4",465.4928,0.0000,0.0000,0.0000,0.0000 +"2017 Q1",41.4200,0.0000,0.0000,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource/total_gpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource/total_gpu_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..41fd9ecee2 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource/total_gpu_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Total: by Resource" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[phillips] GPU Hours: Total","[frearson] GPU Hours: Total","[mortorq] GPU Hours: Total","[pozidriv] GPU Hours: Total","[robertson] GPU Hours: Total" +2016,465.4928,0.0000,0.0000,0.0000,0.0000 +2017,41.4200,0.0000,0.0000,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource_type/avg_gpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource_type/avg_gpu_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..1d18418d7a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource_type/avg_gpu_hours/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +title +"GPU Hours: Per Job: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Resource Type","GPU Hours: Per Job" +"High-performance computing",0.00710828 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource_type/avg_gpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource_type/avg_gpu_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..1d18418d7a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource_type/avg_gpu_hours/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +title +"GPU Hours: Per Job: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Resource Type","GPU Hours: Per Job" +"High-performance computing",0.00710828 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource_type/avg_gpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource_type/avg_gpu_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..1d18418d7a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource_type/avg_gpu_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"GPU Hours: Per Job: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Resource Type","GPU Hours: Per Job" +"High-performance computing",0.00710828 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource_type/avg_gpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource_type/avg_gpu_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..1d18418d7a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource_type/avg_gpu_hours/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +title +"GPU Hours: Per Job: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Resource Type","GPU Hours: Per Job" +"High-performance computing",0.00710828 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource_type/avg_gpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource_type/avg_gpu_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..28a8c54526 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource_type/avg_gpu_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"GPU Hours: Per Job: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[High-performance computing] GPU Hours: Per Job" +2016-12-22,16.74638889 +2016-12-23,16.00000000 +2016-12-24,16.00000000 +2016-12-25,8.00000000 +2016-12-26,4.36363636 +2016-12-27,1.14285714 +2016-12-28,0.10666667 +2016-12-29,0.02758621 +2016-12-30,0.00166349 +2016-12-31,0.00162146 +2017-01-01,0.00250030 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource_type/avg_gpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource_type/avg_gpu_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..4ad2b875db --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource_type/avg_gpu_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Per Job: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[High-performance computing] GPU Hours: Per Job" +2016-12,0.00828146 +2017-01,0.00250030 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource_type/avg_gpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource_type/avg_gpu_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..1bc14806e6 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource_type/avg_gpu_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Per Job: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[High-performance computing] GPU Hours: Per Job" +"2016 Q4",0.00828146 +"2017 Q1",0.00250030 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource_type/avg_gpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource_type/avg_gpu_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..5fca306f35 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource_type/avg_gpu_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Per Job: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[High-performance computing] GPU Hours: Per Job" +2016,0.00828146 +2017,0.00250030 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource_type/avg_gpus/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource_type/avg_gpus/aggregate-Day-reference.csv new file mode 100644 index 0000000000..2878014b73 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource_type/avg_gpus/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +title +"GPU Count: Per Job: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Resource Type","GPU Count: Per Job","Std Dev: GPU Count: Per Job" +"High-performance computing",0.0001,0.000039661596951222156 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource_type/avg_gpus/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource_type/avg_gpus/aggregate-Month-reference.csv new file mode 100644 index 0000000000..2878014b73 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource_type/avg_gpus/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +title +"GPU Count: Per Job: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Resource Type","GPU Count: Per Job","Std Dev: GPU Count: Per Job" +"High-performance computing",0.0001,0.000039661596951222156 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource_type/avg_gpus/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource_type/avg_gpus/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..2878014b73 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource_type/avg_gpus/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"GPU Count: Per Job: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Resource Type","GPU Count: Per Job","Std Dev: GPU Count: Per Job" +"High-performance computing",0.0001,0.000039661596951222156 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource_type/avg_gpus/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource_type/avg_gpus/aggregate-Year-reference.csv new file mode 100644 index 0000000000..2878014b73 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource_type/avg_gpus/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +title +"GPU Count: Per Job: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Resource Type","GPU Count: Per Job","Std Dev: GPU Count: Per Job" +"High-performance computing",0.0001,0.000039661596951222156 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource_type/avg_gpus/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource_type/avg_gpus/timeseries-Day-reference.csv new file mode 100644 index 0000000000..cbe05dfa23 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource_type/avg_gpus/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"GPU Count: Per Job: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[High-performance computing] GPU Count: Per Job" +2016-12-22,1.0000 +2016-12-23,0.6667 +2016-12-24,0.6667 +2016-12-25,0.3333 +2016-12-26,0.1818 +2016-12-27,0.0476 +2016-12-28,0.0044 +2016-12-29,0.0011 +2016-12-30,0.0001 +2016-12-31,0.0001 +2017-01-01,0.0002 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource_type/avg_gpus/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource_type/avg_gpus/timeseries-Month-reference.csv new file mode 100644 index 0000000000..082ad536e9 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource_type/avg_gpus/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Count: Per Job: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[High-performance computing] GPU Count: Per Job" +2016-12,0.0000 +2017-01,0.0002 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource_type/avg_gpus/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource_type/avg_gpus/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..db4f5fcb70 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource_type/avg_gpus/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Count: Per Job: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[High-performance computing] GPU Count: Per Job" +"2016 Q4",0.0000 +"2017 Q1",0.0002 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource_type/avg_gpus/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource_type/avg_gpus/timeseries-Year-reference.csv new file mode 100644 index 0000000000..8def323fca --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource_type/avg_gpus/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Count: Per Job: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[High-performance computing] GPU Count: Per Job" +2016,0.0000 +2017,0.0002 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource_type/avg_job_size_weighted_by_gpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource_type/avg_job_size_weighted_by_gpu_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..f946856517 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource_type/avg_job_size_weighted_by_gpu_hours/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by Resource Type" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Resource Type","Job Size: Weighted By GPU Hours (GPU Count)" +"High-performance computing",12.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource_type/avg_job_size_weighted_by_gpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource_type/avg_job_size_weighted_by_gpu_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..f946856517 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource_type/avg_job_size_weighted_by_gpu_hours/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by Resource Type" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Resource Type","Job Size: Weighted By GPU Hours (GPU Count)" +"High-performance computing",12.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource_type/avg_job_size_weighted_by_gpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource_type/avg_job_size_weighted_by_gpu_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..f946856517 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource_type/avg_job_size_weighted_by_gpu_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by Resource Type" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Resource Type","Job Size: Weighted By GPU Hours (GPU Count)" +"High-performance computing",12.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource_type/avg_job_size_weighted_by_gpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource_type/avg_job_size_weighted_by_gpu_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..f946856517 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource_type/avg_job_size_weighted_by_gpu_hours/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by Resource Type" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Resource Type","Job Size: Weighted By GPU Hours (GPU Count)" +"High-performance computing",12.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource_type/avg_job_size_weighted_by_gpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource_type/avg_job_size_weighted_by_gpu_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..0cbebdec3c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource_type/avg_job_size_weighted_by_gpu_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by Resource Type" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[High-performance computing] Job Size: Weighted By GPU Hours (GPU Count)" +2016-12-22,12.0000 +2016-12-23,12.0000 +2016-12-24,12.0000 +2016-12-25,12.0000 +2016-12-26,12.0000 +2016-12-27,12.0000 +2016-12-28,12.0000 +2016-12-29,12.0000 +2016-12-30,12.0000 +2016-12-31,12.0000 +2017-01-01,12.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource_type/avg_job_size_weighted_by_gpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource_type/avg_job_size_weighted_by_gpu_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..23ce10fb1e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource_type/avg_job_size_weighted_by_gpu_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by Resource Type" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[High-performance computing] Job Size: Weighted By GPU Hours (GPU Count)" +2016-12,12.0000 +2017-01,12.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource_type/avg_job_size_weighted_by_gpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource_type/avg_job_size_weighted_by_gpu_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..3c0773f547 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource_type/avg_job_size_weighted_by_gpu_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by Resource Type" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[High-performance computing] Job Size: Weighted By GPU Hours (GPU Count)" +"2016 Q4",12.0000 +"2017 Q1",12.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource_type/avg_job_size_weighted_by_gpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource_type/avg_job_size_weighted_by_gpu_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..a3e6a6081e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource_type/avg_job_size_weighted_by_gpu_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by Resource Type" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[High-performance computing] Job Size: Weighted By GPU Hours (GPU Count)" +2016,12.0000 +2017,12.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource_type/total_gpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource_type/total_gpu_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..3541f0439e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource_type/total_gpu_hours/aggregate-Day-reference.csv @@ -0,0 +1,10 @@ +title +"GPU Hours: Total: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Resource Type","GPU Hours: Total" +"High-performance computing",506.9128 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource_type/total_gpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource_type/total_gpu_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..3541f0439e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource_type/total_gpu_hours/aggregate-Month-reference.csv @@ -0,0 +1,10 @@ +title +"GPU Hours: Total: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Resource Type","GPU Hours: Total" +"High-performance computing",506.9128 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource_type/total_gpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource_type/total_gpu_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..3541f0439e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource_type/total_gpu_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,10 @@ +title +"GPU Hours: Total: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Resource Type","GPU Hours: Total" +"High-performance computing",506.9128 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource_type/total_gpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource_type/total_gpu_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..3541f0439e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource_type/total_gpu_hours/aggregate-Year-reference.csv @@ -0,0 +1,10 @@ +title +"GPU Hours: Total: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"Resource Type","GPU Hours: Total" +"High-performance computing",506.9128 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource_type/total_gpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource_type/total_gpu_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..5f162a8906 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource_type/total_gpu_hours/timeseries-Day-reference.csv @@ -0,0 +1,20 @@ +title +"GPU Hours: Total: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[High-performance computing] GPU Hours: Total" +2016-12-22,33.4928 +2016-12-23,48.0000 +2016-12-24,48.0000 +2016-12-25,48.0000 +2016-12-26,48.0000 +2016-12-27,48.0000 +2016-12-28,48.0000 +2016-12-29,48.0000 +2016-12-30,48.0000 +2016-12-31,48.0000 +2017-01-01,41.4200 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource_type/total_gpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource_type/total_gpu_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..a9e2f39388 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource_type/total_gpu_hours/timeseries-Month-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Total: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[High-performance computing] GPU Hours: Total" +2016-12,465.4928 +2017-01,41.4200 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource_type/total_gpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource_type/total_gpu_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..da03e3535e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource_type/total_gpu_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Total: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[High-performance computing] GPU Hours: Total" +"2016 Q4",465.4928 +"2017 Q1",41.4200 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource_type/total_gpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource_type/total_gpu_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..7d251e2635 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/resource_type/total_gpu_hours/timeseries-Year-reference.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Total: by Resource Type" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[High-performance computing] GPU Hours: Total" +2016,465.4928 +2017,41.4200 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_gpu_hours/aggregate-Day-cd.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_gpu_hours/aggregate-Day-cd.csv new file mode 100644 index 0000000000..4a1af16f14 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_gpu_hours/aggregate-Day-cd.csv @@ -0,0 +1,75 @@ +title +"GPU Hours: Per Job: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"System Username","GPU Hours: Per Job" +noror,16.89709259 +allga,0.00000000 +alpsw,0.00000000 +aytinis,0.00000000 +blhbu,0.00000000 +boowa,0.00000000 +caspl,0.00000000 +categ,0.00000000 +chaff,0.00000000 +coot1,0.00000000 +corsh,0.00000000 +crama,0.00000000 +crane,0.00000000 +dunli,0.00000000 +duswa,0.00000000 +egygo,0.00000000 +evegr,0.00000000 +ferdu,0.00000000 +field,0.00000000 +garwa,0.00000000 +gloib,0.00000000 +grath,0.00000000 +grgsh,0.00000000 +henha,0.00000000 +honbu,0.00000000 +hoowa,0.00000000 +jackd,0.00000000 +lanhach,0.00000000 +lapwi,0.00000000 +legsh,0.00000000 +lesre,0.00000000 +litau,0.00000000 +litst,0.00000000 +mamwa,0.00000000 +meapi,0.00000000 +misth,0.00000000 +moorh,0.00000000 +ovenb,0.00000000 +pereg,0.00000000 +pibgr,0.00000000 +proubis,0.00000000 +reebu,0.00000000 +relpa,0.00000000 +ribgu,0.00000000 +rolle,0.00000000 +sancr,0.00000000 +sante,0.00000000 +sarwa,0.00000000 +savsp,0.00000000 +shag1,0.00000000 +shttr,0.00000000 +siski,0.00000000 +smew1,0.00000000 +sogsh,0.00000000 +sposa,0.00000000 +swath,0.00000000 +turdo,0.00000000 +velsc,0.00000000 +vertera,0.00000000 +whimb,0.00000000 +whtpl,0.00000000 +whtsp,0.00000000 +ybsbu,0.00000000 +yebbu,0.00000000 +yebsa,0.00000000 +yebwa,0.00000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_gpu_hours/aggregate-Day-cs.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_gpu_hours/aggregate-Day-cs.csv new file mode 100644 index 0000000000..4a1af16f14 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_gpu_hours/aggregate-Day-cs.csv @@ -0,0 +1,75 @@ +title +"GPU Hours: Per Job: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"System Username","GPU Hours: Per Job" +noror,16.89709259 +allga,0.00000000 +alpsw,0.00000000 +aytinis,0.00000000 +blhbu,0.00000000 +boowa,0.00000000 +caspl,0.00000000 +categ,0.00000000 +chaff,0.00000000 +coot1,0.00000000 +corsh,0.00000000 +crama,0.00000000 +crane,0.00000000 +dunli,0.00000000 +duswa,0.00000000 +egygo,0.00000000 +evegr,0.00000000 +ferdu,0.00000000 +field,0.00000000 +garwa,0.00000000 +gloib,0.00000000 +grath,0.00000000 +grgsh,0.00000000 +henha,0.00000000 +honbu,0.00000000 +hoowa,0.00000000 +jackd,0.00000000 +lanhach,0.00000000 +lapwi,0.00000000 +legsh,0.00000000 +lesre,0.00000000 +litau,0.00000000 +litst,0.00000000 +mamwa,0.00000000 +meapi,0.00000000 +misth,0.00000000 +moorh,0.00000000 +ovenb,0.00000000 +pereg,0.00000000 +pibgr,0.00000000 +proubis,0.00000000 +reebu,0.00000000 +relpa,0.00000000 +ribgu,0.00000000 +rolle,0.00000000 +sancr,0.00000000 +sante,0.00000000 +sarwa,0.00000000 +savsp,0.00000000 +shag1,0.00000000 +shttr,0.00000000 +siski,0.00000000 +smew1,0.00000000 +sogsh,0.00000000 +sposa,0.00000000 +swath,0.00000000 +turdo,0.00000000 +velsc,0.00000000 +vertera,0.00000000 +whimb,0.00000000 +whtpl,0.00000000 +whtsp,0.00000000 +ybsbu,0.00000000 +yebbu,0.00000000 +yebsa,0.00000000 +yebwa,0.00000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_gpu_hours/aggregate-Day-pi.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_gpu_hours/aggregate-Day-pi.csv new file mode 100644 index 0000000000..9e7f18816e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_gpu_hours/aggregate-Day-pi.csv @@ -0,0 +1,16 @@ +title +"GPU Hours: Per Job: by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2016-12-22,2017-01-01 +--------- +"System Username","GPU Hours: Per Job" +litst,0.00000000 +ovenb,0.00000000 +sante,0.00000000 +savsp,0.00000000 +swath,0.00000000 +ybsbu,0.00000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_gpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_gpu_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..9ed245d5c0 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_gpu_hours/aggregate-Day-reference.csv @@ -0,0 +1,14 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [ + + ], + "data": [ + + ], + "message": "Your user account does not have permission to view the requested data. If you\nbelieve that you should be able to see this information, then please select\n\"Submit Support Request\" in the \"Contact Us\" menu to request access.", + "code": 103 +} diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_gpu_hours/aggregate-Day-usr.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_gpu_hours/aggregate-Day-usr.csv new file mode 100644 index 0000000000..88bc1a1f9a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_gpu_hours/aggregate-Day-usr.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Per Job: by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2016-12-22,2017-01-01 +--------- +"System Username","GPU Hours: Per Job" +whimb,0.00000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_gpu_hours/aggregate-Month-cd.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_gpu_hours/aggregate-Month-cd.csv new file mode 100644 index 0000000000..4a1af16f14 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_gpu_hours/aggregate-Month-cd.csv @@ -0,0 +1,75 @@ +title +"GPU Hours: Per Job: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"System Username","GPU Hours: Per Job" +noror,16.89709259 +allga,0.00000000 +alpsw,0.00000000 +aytinis,0.00000000 +blhbu,0.00000000 +boowa,0.00000000 +caspl,0.00000000 +categ,0.00000000 +chaff,0.00000000 +coot1,0.00000000 +corsh,0.00000000 +crama,0.00000000 +crane,0.00000000 +dunli,0.00000000 +duswa,0.00000000 +egygo,0.00000000 +evegr,0.00000000 +ferdu,0.00000000 +field,0.00000000 +garwa,0.00000000 +gloib,0.00000000 +grath,0.00000000 +grgsh,0.00000000 +henha,0.00000000 +honbu,0.00000000 +hoowa,0.00000000 +jackd,0.00000000 +lanhach,0.00000000 +lapwi,0.00000000 +legsh,0.00000000 +lesre,0.00000000 +litau,0.00000000 +litst,0.00000000 +mamwa,0.00000000 +meapi,0.00000000 +misth,0.00000000 +moorh,0.00000000 +ovenb,0.00000000 +pereg,0.00000000 +pibgr,0.00000000 +proubis,0.00000000 +reebu,0.00000000 +relpa,0.00000000 +ribgu,0.00000000 +rolle,0.00000000 +sancr,0.00000000 +sante,0.00000000 +sarwa,0.00000000 +savsp,0.00000000 +shag1,0.00000000 +shttr,0.00000000 +siski,0.00000000 +smew1,0.00000000 +sogsh,0.00000000 +sposa,0.00000000 +swath,0.00000000 +turdo,0.00000000 +velsc,0.00000000 +vertera,0.00000000 +whimb,0.00000000 +whtpl,0.00000000 +whtsp,0.00000000 +ybsbu,0.00000000 +yebbu,0.00000000 +yebsa,0.00000000 +yebwa,0.00000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_gpu_hours/aggregate-Month-cs.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_gpu_hours/aggregate-Month-cs.csv new file mode 100644 index 0000000000..4a1af16f14 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_gpu_hours/aggregate-Month-cs.csv @@ -0,0 +1,75 @@ +title +"GPU Hours: Per Job: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"System Username","GPU Hours: Per Job" +noror,16.89709259 +allga,0.00000000 +alpsw,0.00000000 +aytinis,0.00000000 +blhbu,0.00000000 +boowa,0.00000000 +caspl,0.00000000 +categ,0.00000000 +chaff,0.00000000 +coot1,0.00000000 +corsh,0.00000000 +crama,0.00000000 +crane,0.00000000 +dunli,0.00000000 +duswa,0.00000000 +egygo,0.00000000 +evegr,0.00000000 +ferdu,0.00000000 +field,0.00000000 +garwa,0.00000000 +gloib,0.00000000 +grath,0.00000000 +grgsh,0.00000000 +henha,0.00000000 +honbu,0.00000000 +hoowa,0.00000000 +jackd,0.00000000 +lanhach,0.00000000 +lapwi,0.00000000 +legsh,0.00000000 +lesre,0.00000000 +litau,0.00000000 +litst,0.00000000 +mamwa,0.00000000 +meapi,0.00000000 +misth,0.00000000 +moorh,0.00000000 +ovenb,0.00000000 +pereg,0.00000000 +pibgr,0.00000000 +proubis,0.00000000 +reebu,0.00000000 +relpa,0.00000000 +ribgu,0.00000000 +rolle,0.00000000 +sancr,0.00000000 +sante,0.00000000 +sarwa,0.00000000 +savsp,0.00000000 +shag1,0.00000000 +shttr,0.00000000 +siski,0.00000000 +smew1,0.00000000 +sogsh,0.00000000 +sposa,0.00000000 +swath,0.00000000 +turdo,0.00000000 +velsc,0.00000000 +vertera,0.00000000 +whimb,0.00000000 +whtpl,0.00000000 +whtsp,0.00000000 +ybsbu,0.00000000 +yebbu,0.00000000 +yebsa,0.00000000 +yebwa,0.00000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_gpu_hours/aggregate-Month-pi.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_gpu_hours/aggregate-Month-pi.csv new file mode 100644 index 0000000000..9e7f18816e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_gpu_hours/aggregate-Month-pi.csv @@ -0,0 +1,16 @@ +title +"GPU Hours: Per Job: by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2016-12-22,2017-01-01 +--------- +"System Username","GPU Hours: Per Job" +litst,0.00000000 +ovenb,0.00000000 +sante,0.00000000 +savsp,0.00000000 +swath,0.00000000 +ybsbu,0.00000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_gpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_gpu_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..9ed245d5c0 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_gpu_hours/aggregate-Month-reference.csv @@ -0,0 +1,14 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [ + + ], + "data": [ + + ], + "message": "Your user account does not have permission to view the requested data. If you\nbelieve that you should be able to see this information, then please select\n\"Submit Support Request\" in the \"Contact Us\" menu to request access.", + "code": 103 +} diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_gpu_hours/aggregate-Month-usr.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_gpu_hours/aggregate-Month-usr.csv new file mode 100644 index 0000000000..88bc1a1f9a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_gpu_hours/aggregate-Month-usr.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Per Job: by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2016-12-22,2017-01-01 +--------- +"System Username","GPU Hours: Per Job" +whimb,0.00000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_gpu_hours/aggregate-Quarter-cd.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_gpu_hours/aggregate-Quarter-cd.csv new file mode 100644 index 0000000000..4a1af16f14 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_gpu_hours/aggregate-Quarter-cd.csv @@ -0,0 +1,75 @@ +title +"GPU Hours: Per Job: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"System Username","GPU Hours: Per Job" +noror,16.89709259 +allga,0.00000000 +alpsw,0.00000000 +aytinis,0.00000000 +blhbu,0.00000000 +boowa,0.00000000 +caspl,0.00000000 +categ,0.00000000 +chaff,0.00000000 +coot1,0.00000000 +corsh,0.00000000 +crama,0.00000000 +crane,0.00000000 +dunli,0.00000000 +duswa,0.00000000 +egygo,0.00000000 +evegr,0.00000000 +ferdu,0.00000000 +field,0.00000000 +garwa,0.00000000 +gloib,0.00000000 +grath,0.00000000 +grgsh,0.00000000 +henha,0.00000000 +honbu,0.00000000 +hoowa,0.00000000 +jackd,0.00000000 +lanhach,0.00000000 +lapwi,0.00000000 +legsh,0.00000000 +lesre,0.00000000 +litau,0.00000000 +litst,0.00000000 +mamwa,0.00000000 +meapi,0.00000000 +misth,0.00000000 +moorh,0.00000000 +ovenb,0.00000000 +pereg,0.00000000 +pibgr,0.00000000 +proubis,0.00000000 +reebu,0.00000000 +relpa,0.00000000 +ribgu,0.00000000 +rolle,0.00000000 +sancr,0.00000000 +sante,0.00000000 +sarwa,0.00000000 +savsp,0.00000000 +shag1,0.00000000 +shttr,0.00000000 +siski,0.00000000 +smew1,0.00000000 +sogsh,0.00000000 +sposa,0.00000000 +swath,0.00000000 +turdo,0.00000000 +velsc,0.00000000 +vertera,0.00000000 +whimb,0.00000000 +whtpl,0.00000000 +whtsp,0.00000000 +ybsbu,0.00000000 +yebbu,0.00000000 +yebsa,0.00000000 +yebwa,0.00000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_gpu_hours/aggregate-Quarter-cs.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_gpu_hours/aggregate-Quarter-cs.csv new file mode 100644 index 0000000000..4a1af16f14 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_gpu_hours/aggregate-Quarter-cs.csv @@ -0,0 +1,75 @@ +title +"GPU Hours: Per Job: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"System Username","GPU Hours: Per Job" +noror,16.89709259 +allga,0.00000000 +alpsw,0.00000000 +aytinis,0.00000000 +blhbu,0.00000000 +boowa,0.00000000 +caspl,0.00000000 +categ,0.00000000 +chaff,0.00000000 +coot1,0.00000000 +corsh,0.00000000 +crama,0.00000000 +crane,0.00000000 +dunli,0.00000000 +duswa,0.00000000 +egygo,0.00000000 +evegr,0.00000000 +ferdu,0.00000000 +field,0.00000000 +garwa,0.00000000 +gloib,0.00000000 +grath,0.00000000 +grgsh,0.00000000 +henha,0.00000000 +honbu,0.00000000 +hoowa,0.00000000 +jackd,0.00000000 +lanhach,0.00000000 +lapwi,0.00000000 +legsh,0.00000000 +lesre,0.00000000 +litau,0.00000000 +litst,0.00000000 +mamwa,0.00000000 +meapi,0.00000000 +misth,0.00000000 +moorh,0.00000000 +ovenb,0.00000000 +pereg,0.00000000 +pibgr,0.00000000 +proubis,0.00000000 +reebu,0.00000000 +relpa,0.00000000 +ribgu,0.00000000 +rolle,0.00000000 +sancr,0.00000000 +sante,0.00000000 +sarwa,0.00000000 +savsp,0.00000000 +shag1,0.00000000 +shttr,0.00000000 +siski,0.00000000 +smew1,0.00000000 +sogsh,0.00000000 +sposa,0.00000000 +swath,0.00000000 +turdo,0.00000000 +velsc,0.00000000 +vertera,0.00000000 +whimb,0.00000000 +whtpl,0.00000000 +whtsp,0.00000000 +ybsbu,0.00000000 +yebbu,0.00000000 +yebsa,0.00000000 +yebwa,0.00000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_gpu_hours/aggregate-Quarter-pi.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_gpu_hours/aggregate-Quarter-pi.csv new file mode 100644 index 0000000000..9e7f18816e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_gpu_hours/aggregate-Quarter-pi.csv @@ -0,0 +1,16 @@ +title +"GPU Hours: Per Job: by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2016-12-22,2017-01-01 +--------- +"System Username","GPU Hours: Per Job" +litst,0.00000000 +ovenb,0.00000000 +sante,0.00000000 +savsp,0.00000000 +swath,0.00000000 +ybsbu,0.00000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_gpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_gpu_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..9ed245d5c0 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_gpu_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,14 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [ + + ], + "data": [ + + ], + "message": "Your user account does not have permission to view the requested data. If you\nbelieve that you should be able to see this information, then please select\n\"Submit Support Request\" in the \"Contact Us\" menu to request access.", + "code": 103 +} diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_gpu_hours/aggregate-Quarter-usr.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_gpu_hours/aggregate-Quarter-usr.csv new file mode 100644 index 0000000000..88bc1a1f9a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_gpu_hours/aggregate-Quarter-usr.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Per Job: by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2016-12-22,2017-01-01 +--------- +"System Username","GPU Hours: Per Job" +whimb,0.00000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_gpu_hours/aggregate-Year-cd.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_gpu_hours/aggregate-Year-cd.csv new file mode 100644 index 0000000000..4a1af16f14 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_gpu_hours/aggregate-Year-cd.csv @@ -0,0 +1,75 @@ +title +"GPU Hours: Per Job: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"System Username","GPU Hours: Per Job" +noror,16.89709259 +allga,0.00000000 +alpsw,0.00000000 +aytinis,0.00000000 +blhbu,0.00000000 +boowa,0.00000000 +caspl,0.00000000 +categ,0.00000000 +chaff,0.00000000 +coot1,0.00000000 +corsh,0.00000000 +crama,0.00000000 +crane,0.00000000 +dunli,0.00000000 +duswa,0.00000000 +egygo,0.00000000 +evegr,0.00000000 +ferdu,0.00000000 +field,0.00000000 +garwa,0.00000000 +gloib,0.00000000 +grath,0.00000000 +grgsh,0.00000000 +henha,0.00000000 +honbu,0.00000000 +hoowa,0.00000000 +jackd,0.00000000 +lanhach,0.00000000 +lapwi,0.00000000 +legsh,0.00000000 +lesre,0.00000000 +litau,0.00000000 +litst,0.00000000 +mamwa,0.00000000 +meapi,0.00000000 +misth,0.00000000 +moorh,0.00000000 +ovenb,0.00000000 +pereg,0.00000000 +pibgr,0.00000000 +proubis,0.00000000 +reebu,0.00000000 +relpa,0.00000000 +ribgu,0.00000000 +rolle,0.00000000 +sancr,0.00000000 +sante,0.00000000 +sarwa,0.00000000 +savsp,0.00000000 +shag1,0.00000000 +shttr,0.00000000 +siski,0.00000000 +smew1,0.00000000 +sogsh,0.00000000 +sposa,0.00000000 +swath,0.00000000 +turdo,0.00000000 +velsc,0.00000000 +vertera,0.00000000 +whimb,0.00000000 +whtpl,0.00000000 +whtsp,0.00000000 +ybsbu,0.00000000 +yebbu,0.00000000 +yebsa,0.00000000 +yebwa,0.00000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_gpu_hours/aggregate-Year-cs.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_gpu_hours/aggregate-Year-cs.csv new file mode 100644 index 0000000000..4a1af16f14 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_gpu_hours/aggregate-Year-cs.csv @@ -0,0 +1,75 @@ +title +"GPU Hours: Per Job: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"System Username","GPU Hours: Per Job" +noror,16.89709259 +allga,0.00000000 +alpsw,0.00000000 +aytinis,0.00000000 +blhbu,0.00000000 +boowa,0.00000000 +caspl,0.00000000 +categ,0.00000000 +chaff,0.00000000 +coot1,0.00000000 +corsh,0.00000000 +crama,0.00000000 +crane,0.00000000 +dunli,0.00000000 +duswa,0.00000000 +egygo,0.00000000 +evegr,0.00000000 +ferdu,0.00000000 +field,0.00000000 +garwa,0.00000000 +gloib,0.00000000 +grath,0.00000000 +grgsh,0.00000000 +henha,0.00000000 +honbu,0.00000000 +hoowa,0.00000000 +jackd,0.00000000 +lanhach,0.00000000 +lapwi,0.00000000 +legsh,0.00000000 +lesre,0.00000000 +litau,0.00000000 +litst,0.00000000 +mamwa,0.00000000 +meapi,0.00000000 +misth,0.00000000 +moorh,0.00000000 +ovenb,0.00000000 +pereg,0.00000000 +pibgr,0.00000000 +proubis,0.00000000 +reebu,0.00000000 +relpa,0.00000000 +ribgu,0.00000000 +rolle,0.00000000 +sancr,0.00000000 +sante,0.00000000 +sarwa,0.00000000 +savsp,0.00000000 +shag1,0.00000000 +shttr,0.00000000 +siski,0.00000000 +smew1,0.00000000 +sogsh,0.00000000 +sposa,0.00000000 +swath,0.00000000 +turdo,0.00000000 +velsc,0.00000000 +vertera,0.00000000 +whimb,0.00000000 +whtpl,0.00000000 +whtsp,0.00000000 +ybsbu,0.00000000 +yebbu,0.00000000 +yebsa,0.00000000 +yebwa,0.00000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_gpu_hours/aggregate-Year-pi.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_gpu_hours/aggregate-Year-pi.csv new file mode 100644 index 0000000000..9e7f18816e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_gpu_hours/aggregate-Year-pi.csv @@ -0,0 +1,16 @@ +title +"GPU Hours: Per Job: by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2016-12-22,2017-01-01 +--------- +"System Username","GPU Hours: Per Job" +litst,0.00000000 +ovenb,0.00000000 +sante,0.00000000 +savsp,0.00000000 +swath,0.00000000 +ybsbu,0.00000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_gpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_gpu_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..9ed245d5c0 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_gpu_hours/aggregate-Year-reference.csv @@ -0,0 +1,14 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [ + + ], + "data": [ + + ], + "message": "Your user account does not have permission to view the requested data. If you\nbelieve that you should be able to see this information, then please select\n\"Submit Support Request\" in the \"Contact Us\" menu to request access.", + "code": 103 +} diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_gpu_hours/aggregate-Year-usr.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_gpu_hours/aggregate-Year-usr.csv new file mode 100644 index 0000000000..88bc1a1f9a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_gpu_hours/aggregate-Year-usr.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Per Job: by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2016-12-22,2017-01-01 +--------- +"System Username","GPU Hours: Per Job" +whimb,0.00000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_gpu_hours/timeseries-Day-cd.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_gpu_hours/timeseries-Day-cd.csv new file mode 100644 index 0000000000..5aca62d469 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_gpu_hours/timeseries-Day-cd.csv @@ -0,0 +1,20 @@ +title +"GPU Hours: Per Job: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[noror] GPU Hours: Per Job","[allga] GPU Hours: Per Job","[alpsw] GPU Hours: Per Job","[aytinis] GPU Hours: Per Job","[blhbu] GPU Hours: Per Job","[boowa] GPU Hours: Per Job","[caspl] GPU Hours: Per Job","[categ] GPU Hours: Per Job","[chaff] GPU Hours: Per Job","[coot1] GPU Hours: Per Job","[corsh] GPU Hours: Per Job","[crama] GPU Hours: Per Job","[crane] GPU Hours: Per Job","[dunli] GPU Hours: Per Job","[duswa] GPU Hours: Per Job","[egygo] GPU Hours: Per Job","[evegr] GPU Hours: Per Job","[ferdu] GPU Hours: Per Job","[field] GPU Hours: Per Job","[garwa] GPU Hours: Per Job","[gloib] GPU Hours: Per Job","[grath] GPU Hours: Per Job","[grgsh] GPU Hours: Per Job","[henha] GPU Hours: Per Job","[honbu] GPU Hours: Per Job","[hoowa] GPU Hours: Per Job","[jackd] GPU Hours: Per Job","[lanhach] GPU Hours: Per Job","[lapwi] GPU Hours: Per Job","[legsh] GPU Hours: Per Job","[lesre] GPU Hours: Per Job","[litau] GPU Hours: Per Job","[litst] GPU Hours: Per Job","[mamwa] GPU Hours: Per Job","[meapi] GPU Hours: Per Job","[misth] GPU Hours: Per Job","[moorh] GPU Hours: Per Job","[ovenb] GPU Hours: Per Job","[pereg] GPU Hours: Per Job","[pibgr] GPU Hours: Per Job","[proubis] GPU Hours: Per Job","[reebu] GPU Hours: Per Job","[relpa] GPU Hours: Per Job","[ribgu] GPU Hours: Per Job","[rolle] GPU Hours: Per Job","[sancr] GPU Hours: Per Job","[sante] GPU Hours: Per Job","[sarwa] GPU Hours: Per Job","[savsp] GPU Hours: Per Job","[shag1] GPU Hours: Per Job","[shttr] GPU Hours: Per Job","[siski] GPU Hours: Per Job","[smew1] GPU Hours: Per Job","[sogsh] GPU Hours: Per Job","[sposa] GPU Hours: Per Job","[swath] GPU Hours: Per Job","[turdo] GPU Hours: Per Job","[velsc] GPU Hours: Per Job","[vertera] GPU Hours: Per Job","[whimb] GPU Hours: Per Job","[whtpl] GPU Hours: Per Job","[whtsp] GPU Hours: Per Job","[ybsbu] GPU Hours: Per Job","[yebbu] GPU Hours: Per Job","[yebsa] GPU Hours: Per Job","[yebwa] GPU Hours: Per Job" +2016-12-22,33.49277778,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00000000,0,0,0,0,0,0,0,0,0 +2016-12-23,48.00000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00000000,0,0,0,0,0,0,0,0,0,0.00000000,0,0,0,0,0,0,0,0,0 +2016-12-24,48.00000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00000000,0,0,0,0,0,0,0,0,0,0.00000000,0,0,0,0,0,0,0,0,0 +2016-12-25,48.00000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00000000,0,0,0,0,0.00000000,0,0,0,0,0,0,0,0,0,0.00000000,0,0,0,0,0,0,0,0,0 +2016-12-26,48.00000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00000000,0,0,0,0,0.00000000,0,0,0,0,0,0,0,0,0,0.00000000,0,0,0,0,0,0,0,0,0 +2016-12-27,48.00000000,0,0,0,0,0.00000000,0,0,0.00000000,0,0,0,0,0,0,0,0,0,0,0.00000000,0,0,0,0,0.00000000,0,0,0,0,0,0,0,0,0.00000000,0.00000000,0,0,0.00000000,0,0,0,0.00000000,0,0,0,0.00000000,0.00000000,0,0,0,0.00000000,0.00000000,0,0,0,0,0.00000000,0.00000000,0,0,0,0,0.00000000,0,0,0 +2016-12-28,48.00000000,0,0,0.00000000,0,0.00000000,0,0,0.00000000,0,0,0,0,0,0,0,0,0,0,0.00000000,0.00000000,0,0,0,0.00000000,0.00000000,0,0,0.00000000,0,0,0,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0,0,0.00000000,0,0,0,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0,0,0,0,0.00000000,0.00000000,0,0,0.00000000,0,0.00000000,0,0,0 +2016-12-29,48.00000000,0,0,0.00000000,0,0.00000000,0,0,0.00000000,0,0.00000000,0,0.00000000,0,0,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0,0,0,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0,0,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000 +2016-12-30,48.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000 +2016-12-31,9.60000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0 +2017-01-01,1.59307692,0,0.00000000,0,0,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0,0,0,0.00000000,0.00000000,0.00000000,0,0.00000000,0,0,0.00000000,0,0,0.00000000,0.00000000,0,0.00000000,0.00000000,0,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0,0,0.00000000,0,0,0.00000000,0.00000000,0.00000000,0.00000000,0,0,0.00000000,0.00000000,0,0.00000000,0,0.00000000,0.00000000,0,0.00000000,0,0,0.00000000,0.00000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_gpu_hours/timeseries-Day-cs.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_gpu_hours/timeseries-Day-cs.csv new file mode 100644 index 0000000000..5aca62d469 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_gpu_hours/timeseries-Day-cs.csv @@ -0,0 +1,20 @@ +title +"GPU Hours: Per Job: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[noror] GPU Hours: Per Job","[allga] GPU Hours: Per Job","[alpsw] GPU Hours: Per Job","[aytinis] GPU Hours: Per Job","[blhbu] GPU Hours: Per Job","[boowa] GPU Hours: Per Job","[caspl] GPU Hours: Per Job","[categ] GPU Hours: Per Job","[chaff] GPU Hours: Per Job","[coot1] GPU Hours: Per Job","[corsh] GPU Hours: Per Job","[crama] GPU Hours: Per Job","[crane] GPU Hours: Per Job","[dunli] GPU Hours: Per Job","[duswa] GPU Hours: Per Job","[egygo] GPU Hours: Per Job","[evegr] GPU Hours: Per Job","[ferdu] GPU Hours: Per Job","[field] GPU Hours: Per Job","[garwa] GPU Hours: Per Job","[gloib] GPU Hours: Per Job","[grath] GPU Hours: Per Job","[grgsh] GPU Hours: Per Job","[henha] GPU Hours: Per Job","[honbu] GPU Hours: Per Job","[hoowa] GPU Hours: Per Job","[jackd] GPU Hours: Per Job","[lanhach] GPU Hours: Per Job","[lapwi] GPU Hours: Per Job","[legsh] GPU Hours: Per Job","[lesre] GPU Hours: Per Job","[litau] GPU Hours: Per Job","[litst] GPU Hours: Per Job","[mamwa] GPU Hours: Per Job","[meapi] GPU Hours: Per Job","[misth] GPU Hours: Per Job","[moorh] GPU Hours: Per Job","[ovenb] GPU Hours: Per Job","[pereg] GPU Hours: Per Job","[pibgr] GPU Hours: Per Job","[proubis] GPU Hours: Per Job","[reebu] GPU Hours: Per Job","[relpa] GPU Hours: Per Job","[ribgu] GPU Hours: Per Job","[rolle] GPU Hours: Per Job","[sancr] GPU Hours: Per Job","[sante] GPU Hours: Per Job","[sarwa] GPU Hours: Per Job","[savsp] GPU Hours: Per Job","[shag1] GPU Hours: Per Job","[shttr] GPU Hours: Per Job","[siski] GPU Hours: Per Job","[smew1] GPU Hours: Per Job","[sogsh] GPU Hours: Per Job","[sposa] GPU Hours: Per Job","[swath] GPU Hours: Per Job","[turdo] GPU Hours: Per Job","[velsc] GPU Hours: Per Job","[vertera] GPU Hours: Per Job","[whimb] GPU Hours: Per Job","[whtpl] GPU Hours: Per Job","[whtsp] GPU Hours: Per Job","[ybsbu] GPU Hours: Per Job","[yebbu] GPU Hours: Per Job","[yebsa] GPU Hours: Per Job","[yebwa] GPU Hours: Per Job" +2016-12-22,33.49277778,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00000000,0,0,0,0,0,0,0,0,0 +2016-12-23,48.00000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00000000,0,0,0,0,0,0,0,0,0,0.00000000,0,0,0,0,0,0,0,0,0 +2016-12-24,48.00000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00000000,0,0,0,0,0,0,0,0,0,0.00000000,0,0,0,0,0,0,0,0,0 +2016-12-25,48.00000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00000000,0,0,0,0,0.00000000,0,0,0,0,0,0,0,0,0,0.00000000,0,0,0,0,0,0,0,0,0 +2016-12-26,48.00000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00000000,0,0,0,0,0.00000000,0,0,0,0,0,0,0,0,0,0.00000000,0,0,0,0,0,0,0,0,0 +2016-12-27,48.00000000,0,0,0,0,0.00000000,0,0,0.00000000,0,0,0,0,0,0,0,0,0,0,0.00000000,0,0,0,0,0.00000000,0,0,0,0,0,0,0,0,0.00000000,0.00000000,0,0,0.00000000,0,0,0,0.00000000,0,0,0,0.00000000,0.00000000,0,0,0,0.00000000,0.00000000,0,0,0,0,0.00000000,0.00000000,0,0,0,0,0.00000000,0,0,0 +2016-12-28,48.00000000,0,0,0.00000000,0,0.00000000,0,0,0.00000000,0,0,0,0,0,0,0,0,0,0,0.00000000,0.00000000,0,0,0,0.00000000,0.00000000,0,0,0.00000000,0,0,0,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0,0,0.00000000,0,0,0,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0,0,0,0,0.00000000,0.00000000,0,0,0.00000000,0,0.00000000,0,0,0 +2016-12-29,48.00000000,0,0,0.00000000,0,0.00000000,0,0,0.00000000,0,0.00000000,0,0.00000000,0,0,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0,0,0,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0,0,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000 +2016-12-30,48.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000 +2016-12-31,9.60000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000,0.00000000,0 +2017-01-01,1.59307692,0,0.00000000,0,0,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0,0,0,0.00000000,0.00000000,0.00000000,0,0.00000000,0,0,0.00000000,0,0,0.00000000,0.00000000,0,0.00000000,0.00000000,0,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0,0,0.00000000,0,0,0.00000000,0.00000000,0.00000000,0.00000000,0,0,0.00000000,0.00000000,0,0.00000000,0,0.00000000,0.00000000,0,0.00000000,0,0,0.00000000,0.00000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_gpu_hours/timeseries-Day-pi.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_gpu_hours/timeseries-Day-pi.csv new file mode 100644 index 0000000000..7aff1c1554 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_gpu_hours/timeseries-Day-pi.csv @@ -0,0 +1,20 @@ +title +"GPU Hours: Per Job: by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2016-12-22,2017-01-01 +--------- +Day,"[litst] GPU Hours: Per Job","[ovenb] GPU Hours: Per Job","[sante] GPU Hours: Per Job","[savsp] GPU Hours: Per Job","[swath] GPU Hours: Per Job","[ybsbu] GPU Hours: Per Job" +2016-12-23,0,0,0.00000000,0,0,0 +2016-12-24,0,0,0.00000000,0,0,0 +2016-12-25,0,0,0.00000000,0,0,0 +2016-12-26,0,0,0.00000000,0,0,0 +2016-12-27,0,0.00000000,0.00000000,0,0,0.00000000 +2016-12-28,0,0.00000000,0.00000000,0,0,0.00000000 +2016-12-29,0,0.00000000,0.00000000,0,0.00000000,0.00000000 +2016-12-30,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000 +2016-12-31,0.00000000,0.00000000,0,0.00000000,0.00000000,0.00000000 +2017-01-01,0,0.00000000,0,0.00000000,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_gpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_gpu_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..9ed245d5c0 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_gpu_hours/timeseries-Day-reference.csv @@ -0,0 +1,14 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [ + + ], + "data": [ + + ], + "message": "Your user account does not have permission to view the requested data. If you\nbelieve that you should be able to see this information, then please select\n\"Submit Support Request\" in the \"Contact Us\" menu to request access.", + "code": 103 +} diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_gpu_hours/timeseries-Day-usr.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_gpu_hours/timeseries-Day-usr.csv new file mode 100644 index 0000000000..545369988b --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_gpu_hours/timeseries-Day-usr.csv @@ -0,0 +1,13 @@ +title +"GPU Hours: Per Job: by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2016-12-22,2017-01-01 +--------- +Day,"[whimb] GPU Hours: Per Job" +2016-12-30,0.00000000 +2016-12-31,0.00000000 +2017-01-01,0.00000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_gpu_hours/timeseries-Month-cd.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_gpu_hours/timeseries-Month-cd.csv new file mode 100644 index 0000000000..4b65e05273 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_gpu_hours/timeseries-Month-cd.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Per Job: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[noror] GPU Hours: Per Job","[allga] GPU Hours: Per Job","[alpsw] GPU Hours: Per Job","[aytinis] GPU Hours: Per Job","[blhbu] GPU Hours: Per Job","[boowa] GPU Hours: Per Job","[caspl] GPU Hours: Per Job","[categ] GPU Hours: Per Job","[chaff] GPU Hours: Per Job","[coot1] GPU Hours: Per Job","[corsh] GPU Hours: Per Job","[crama] GPU Hours: Per Job","[crane] GPU Hours: Per Job","[dunli] GPU Hours: Per Job","[duswa] GPU Hours: Per Job","[egygo] GPU Hours: Per Job","[evegr] GPU Hours: Per Job","[ferdu] GPU Hours: Per Job","[field] GPU Hours: Per Job","[garwa] GPU Hours: Per Job","[gloib] GPU Hours: Per Job","[grath] GPU Hours: Per Job","[grgsh] GPU Hours: Per Job","[henha] GPU Hours: Per Job","[honbu] GPU Hours: Per Job","[hoowa] GPU Hours: Per Job","[jackd] GPU Hours: Per Job","[lanhach] GPU Hours: Per Job","[lapwi] GPU Hours: Per Job","[legsh] GPU Hours: Per Job","[lesre] GPU Hours: Per Job","[litau] GPU Hours: Per Job","[litst] GPU Hours: Per Job","[mamwa] GPU Hours: Per Job","[meapi] GPU Hours: Per Job","[misth] GPU Hours: Per Job","[moorh] GPU Hours: Per Job","[ovenb] GPU Hours: Per Job","[pereg] GPU Hours: Per Job","[pibgr] GPU Hours: Per Job","[proubis] GPU Hours: Per Job","[reebu] GPU Hours: Per Job","[relpa] GPU Hours: Per Job","[ribgu] GPU Hours: Per Job","[rolle] GPU Hours: Per Job","[sancr] GPU Hours: Per Job","[sante] GPU Hours: Per Job","[sarwa] GPU Hours: Per Job","[savsp] GPU Hours: Per Job","[shag1] GPU Hours: Per Job","[shttr] GPU Hours: Per Job","[siski] GPU Hours: Per Job","[smew1] GPU Hours: Per Job","[sogsh] GPU Hours: Per Job","[sposa] GPU Hours: Per Job","[swath] GPU Hours: Per Job","[turdo] GPU Hours: Per Job","[velsc] GPU Hours: Per Job","[vertera] GPU Hours: Per Job","[whimb] GPU Hours: Per Job","[whtpl] GPU Hours: Per Job","[whtsp] GPU Hours: Per Job","[ybsbu] GPU Hours: Per Job","[yebbu] GPU Hours: Per Job","[yebsa] GPU Hours: Per Job","[yebwa] GPU Hours: Per Job" +2016-12,93.09855556,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000 +2017-01,1.59307692,0,0.00000000,0,0,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0,0,0,0.00000000,0.00000000,0.00000000,0,0.00000000,0,0,0.00000000,0,0,0.00000000,0.00000000,0,0.00000000,0.00000000,0,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0,0,0.00000000,0,0,0.00000000,0.00000000,0.00000000,0.00000000,0,0,0.00000000,0.00000000,0,0.00000000,0,0.00000000,0.00000000,0,0.00000000,0,0,0.00000000,0.00000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_gpu_hours/timeseries-Month-cs.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_gpu_hours/timeseries-Month-cs.csv new file mode 100644 index 0000000000..4b65e05273 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_gpu_hours/timeseries-Month-cs.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Per Job: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[noror] GPU Hours: Per Job","[allga] GPU Hours: Per Job","[alpsw] GPU Hours: Per Job","[aytinis] GPU Hours: Per Job","[blhbu] GPU Hours: Per Job","[boowa] GPU Hours: Per Job","[caspl] GPU Hours: Per Job","[categ] GPU Hours: Per Job","[chaff] GPU Hours: Per Job","[coot1] GPU Hours: Per Job","[corsh] GPU Hours: Per Job","[crama] GPU Hours: Per Job","[crane] GPU Hours: Per Job","[dunli] GPU Hours: Per Job","[duswa] GPU Hours: Per Job","[egygo] GPU Hours: Per Job","[evegr] GPU Hours: Per Job","[ferdu] GPU Hours: Per Job","[field] GPU Hours: Per Job","[garwa] GPU Hours: Per Job","[gloib] GPU Hours: Per Job","[grath] GPU Hours: Per Job","[grgsh] GPU Hours: Per Job","[henha] GPU Hours: Per Job","[honbu] GPU Hours: Per Job","[hoowa] GPU Hours: Per Job","[jackd] GPU Hours: Per Job","[lanhach] GPU Hours: Per Job","[lapwi] GPU Hours: Per Job","[legsh] GPU Hours: Per Job","[lesre] GPU Hours: Per Job","[litau] GPU Hours: Per Job","[litst] GPU Hours: Per Job","[mamwa] GPU Hours: Per Job","[meapi] GPU Hours: Per Job","[misth] GPU Hours: Per Job","[moorh] GPU Hours: Per Job","[ovenb] GPU Hours: Per Job","[pereg] GPU Hours: Per Job","[pibgr] GPU Hours: Per Job","[proubis] GPU Hours: Per Job","[reebu] GPU Hours: Per Job","[relpa] GPU Hours: Per Job","[ribgu] GPU Hours: Per Job","[rolle] GPU Hours: Per Job","[sancr] GPU Hours: Per Job","[sante] GPU Hours: Per Job","[sarwa] GPU Hours: Per Job","[savsp] GPU Hours: Per Job","[shag1] GPU Hours: Per Job","[shttr] GPU Hours: Per Job","[siski] GPU Hours: Per Job","[smew1] GPU Hours: Per Job","[sogsh] GPU Hours: Per Job","[sposa] GPU Hours: Per Job","[swath] GPU Hours: Per Job","[turdo] GPU Hours: Per Job","[velsc] GPU Hours: Per Job","[vertera] GPU Hours: Per Job","[whimb] GPU Hours: Per Job","[whtpl] GPU Hours: Per Job","[whtsp] GPU Hours: Per Job","[ybsbu] GPU Hours: Per Job","[yebbu] GPU Hours: Per Job","[yebsa] GPU Hours: Per Job","[yebwa] GPU Hours: Per Job" +2016-12,93.09855556,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000 +2017-01,1.59307692,0,0.00000000,0,0,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0,0,0,0.00000000,0.00000000,0.00000000,0,0.00000000,0,0,0.00000000,0,0,0.00000000,0.00000000,0,0.00000000,0.00000000,0,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0,0,0.00000000,0,0,0.00000000,0.00000000,0.00000000,0.00000000,0,0,0.00000000,0.00000000,0,0.00000000,0,0.00000000,0.00000000,0,0.00000000,0,0,0.00000000,0.00000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_gpu_hours/timeseries-Month-pi.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_gpu_hours/timeseries-Month-pi.csv new file mode 100644 index 0000000000..b8c1500974 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_gpu_hours/timeseries-Month-pi.csv @@ -0,0 +1,12 @@ +title +"GPU Hours: Per Job: by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2016-12-22,2017-01-01 +--------- +Month,"[litst] GPU Hours: Per Job","[ovenb] GPU Hours: Per Job","[sante] GPU Hours: Per Job","[savsp] GPU Hours: Per Job","[swath] GPU Hours: Per Job","[ybsbu] GPU Hours: Per Job" +2016-12,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000 +2017-01,0,0.00000000,0,0.00000000,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_gpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_gpu_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..9ed245d5c0 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_gpu_hours/timeseries-Month-reference.csv @@ -0,0 +1,14 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [ + + ], + "data": [ + + ], + "message": "Your user account does not have permission to view the requested data. If you\nbelieve that you should be able to see this information, then please select\n\"Submit Support Request\" in the \"Contact Us\" menu to request access.", + "code": 103 +} diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_gpu_hours/timeseries-Month-usr.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_gpu_hours/timeseries-Month-usr.csv new file mode 100644 index 0000000000..aabc89051c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_gpu_hours/timeseries-Month-usr.csv @@ -0,0 +1,12 @@ +title +"GPU Hours: Per Job: by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2016-12-22,2017-01-01 +--------- +Month,"[whimb] GPU Hours: Per Job" +2016-12,0.00000000 +2017-01,0.00000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_gpu_hours/timeseries-Quarter-cd.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_gpu_hours/timeseries-Quarter-cd.csv new file mode 100644 index 0000000000..88eeafe40a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_gpu_hours/timeseries-Quarter-cd.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Per Job: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[noror] GPU Hours: Per Job","[allga] GPU Hours: Per Job","[alpsw] GPU Hours: Per Job","[aytinis] GPU Hours: Per Job","[blhbu] GPU Hours: Per Job","[boowa] GPU Hours: Per Job","[caspl] GPU Hours: Per Job","[categ] GPU Hours: Per Job","[chaff] GPU Hours: Per Job","[coot1] GPU Hours: Per Job","[corsh] GPU Hours: Per Job","[crama] GPU Hours: Per Job","[crane] GPU Hours: Per Job","[dunli] GPU Hours: Per Job","[duswa] GPU Hours: Per Job","[egygo] GPU Hours: Per Job","[evegr] GPU Hours: Per Job","[ferdu] GPU Hours: Per Job","[field] GPU Hours: Per Job","[garwa] GPU Hours: Per Job","[gloib] GPU Hours: Per Job","[grath] GPU Hours: Per Job","[grgsh] GPU Hours: Per Job","[henha] GPU Hours: Per Job","[honbu] GPU Hours: Per Job","[hoowa] GPU Hours: Per Job","[jackd] GPU Hours: Per Job","[lanhach] GPU Hours: Per Job","[lapwi] GPU Hours: Per Job","[legsh] GPU Hours: Per Job","[lesre] GPU Hours: Per Job","[litau] GPU Hours: Per Job","[litst] GPU Hours: Per Job","[mamwa] GPU Hours: Per Job","[meapi] GPU Hours: Per Job","[misth] GPU Hours: Per Job","[moorh] GPU Hours: Per Job","[ovenb] GPU Hours: Per Job","[pereg] GPU Hours: Per Job","[pibgr] GPU Hours: Per Job","[proubis] GPU Hours: Per Job","[reebu] GPU Hours: Per Job","[relpa] GPU Hours: Per Job","[ribgu] GPU Hours: Per Job","[rolle] GPU Hours: Per Job","[sancr] GPU Hours: Per Job","[sante] GPU Hours: Per Job","[sarwa] GPU Hours: Per Job","[savsp] GPU Hours: Per Job","[shag1] GPU Hours: Per Job","[shttr] GPU Hours: Per Job","[siski] GPU Hours: Per Job","[smew1] GPU Hours: Per Job","[sogsh] GPU Hours: Per Job","[sposa] GPU Hours: Per Job","[swath] GPU Hours: Per Job","[turdo] GPU Hours: Per Job","[velsc] GPU Hours: Per Job","[vertera] GPU Hours: Per Job","[whimb] GPU Hours: Per Job","[whtpl] GPU Hours: Per Job","[whtsp] GPU Hours: Per Job","[ybsbu] GPU Hours: Per Job","[yebbu] GPU Hours: Per Job","[yebsa] GPU Hours: Per Job","[yebwa] GPU Hours: Per Job" +"2016 Q4",93.09855556,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000 +"2017 Q1",1.59307692,0,0.00000000,0,0,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0,0,0,0.00000000,0.00000000,0.00000000,0,0.00000000,0,0,0.00000000,0,0,0.00000000,0.00000000,0,0.00000000,0.00000000,0,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0,0,0.00000000,0,0,0.00000000,0.00000000,0.00000000,0.00000000,0,0,0.00000000,0.00000000,0,0.00000000,0,0.00000000,0.00000000,0,0.00000000,0,0,0.00000000,0.00000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_gpu_hours/timeseries-Quarter-cs.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_gpu_hours/timeseries-Quarter-cs.csv new file mode 100644 index 0000000000..88eeafe40a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_gpu_hours/timeseries-Quarter-cs.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Per Job: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[noror] GPU Hours: Per Job","[allga] GPU Hours: Per Job","[alpsw] GPU Hours: Per Job","[aytinis] GPU Hours: Per Job","[blhbu] GPU Hours: Per Job","[boowa] GPU Hours: Per Job","[caspl] GPU Hours: Per Job","[categ] GPU Hours: Per Job","[chaff] GPU Hours: Per Job","[coot1] GPU Hours: Per Job","[corsh] GPU Hours: Per Job","[crama] GPU Hours: Per Job","[crane] GPU Hours: Per Job","[dunli] GPU Hours: Per Job","[duswa] GPU Hours: Per Job","[egygo] GPU Hours: Per Job","[evegr] GPU Hours: Per Job","[ferdu] GPU Hours: Per Job","[field] GPU Hours: Per Job","[garwa] GPU Hours: Per Job","[gloib] GPU Hours: Per Job","[grath] GPU Hours: Per Job","[grgsh] GPU Hours: Per Job","[henha] GPU Hours: Per Job","[honbu] GPU Hours: Per Job","[hoowa] GPU Hours: Per Job","[jackd] GPU Hours: Per Job","[lanhach] GPU Hours: Per Job","[lapwi] GPU Hours: Per Job","[legsh] GPU Hours: Per Job","[lesre] GPU Hours: Per Job","[litau] GPU Hours: Per Job","[litst] GPU Hours: Per Job","[mamwa] GPU Hours: Per Job","[meapi] GPU Hours: Per Job","[misth] GPU Hours: Per Job","[moorh] GPU Hours: Per Job","[ovenb] GPU Hours: Per Job","[pereg] GPU Hours: Per Job","[pibgr] GPU Hours: Per Job","[proubis] GPU Hours: Per Job","[reebu] GPU Hours: Per Job","[relpa] GPU Hours: Per Job","[ribgu] GPU Hours: Per Job","[rolle] GPU Hours: Per Job","[sancr] GPU Hours: Per Job","[sante] GPU Hours: Per Job","[sarwa] GPU Hours: Per Job","[savsp] GPU Hours: Per Job","[shag1] GPU Hours: Per Job","[shttr] GPU Hours: Per Job","[siski] GPU Hours: Per Job","[smew1] GPU Hours: Per Job","[sogsh] GPU Hours: Per Job","[sposa] GPU Hours: Per Job","[swath] GPU Hours: Per Job","[turdo] GPU Hours: Per Job","[velsc] GPU Hours: Per Job","[vertera] GPU Hours: Per Job","[whimb] GPU Hours: Per Job","[whtpl] GPU Hours: Per Job","[whtsp] GPU Hours: Per Job","[ybsbu] GPU Hours: Per Job","[yebbu] GPU Hours: Per Job","[yebsa] GPU Hours: Per Job","[yebwa] GPU Hours: Per Job" +"2016 Q4",93.09855556,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000 +"2017 Q1",1.59307692,0,0.00000000,0,0,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0,0,0,0.00000000,0.00000000,0.00000000,0,0.00000000,0,0,0.00000000,0,0,0.00000000,0.00000000,0,0.00000000,0.00000000,0,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0,0,0.00000000,0,0,0.00000000,0.00000000,0.00000000,0.00000000,0,0,0.00000000,0.00000000,0,0.00000000,0,0.00000000,0.00000000,0,0.00000000,0,0,0.00000000,0.00000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_gpu_hours/timeseries-Quarter-pi.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_gpu_hours/timeseries-Quarter-pi.csv new file mode 100644 index 0000000000..80bfadb6b9 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_gpu_hours/timeseries-Quarter-pi.csv @@ -0,0 +1,12 @@ +title +"GPU Hours: Per Job: by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[litst] GPU Hours: Per Job","[ovenb] GPU Hours: Per Job","[sante] GPU Hours: Per Job","[savsp] GPU Hours: Per Job","[swath] GPU Hours: Per Job","[ybsbu] GPU Hours: Per Job" +"2016 Q4",0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000 +"2017 Q1",0,0.00000000,0,0.00000000,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_gpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_gpu_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..9ed245d5c0 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_gpu_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,14 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [ + + ], + "data": [ + + ], + "message": "Your user account does not have permission to view the requested data. If you\nbelieve that you should be able to see this information, then please select\n\"Submit Support Request\" in the \"Contact Us\" menu to request access.", + "code": 103 +} diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_gpu_hours/timeseries-Quarter-usr.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_gpu_hours/timeseries-Quarter-usr.csv new file mode 100644 index 0000000000..7ebd1ff835 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_gpu_hours/timeseries-Quarter-usr.csv @@ -0,0 +1,12 @@ +title +"GPU Hours: Per Job: by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[whimb] GPU Hours: Per Job" +"2016 Q4",0.00000000 +"2017 Q1",0.00000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_gpu_hours/timeseries-Year-cd.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_gpu_hours/timeseries-Year-cd.csv new file mode 100644 index 0000000000..a1f70accff --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_gpu_hours/timeseries-Year-cd.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Per Job: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[noror] GPU Hours: Per Job","[allga] GPU Hours: Per Job","[alpsw] GPU Hours: Per Job","[aytinis] GPU Hours: Per Job","[blhbu] GPU Hours: Per Job","[boowa] GPU Hours: Per Job","[caspl] GPU Hours: Per Job","[categ] GPU Hours: Per Job","[chaff] GPU Hours: Per Job","[coot1] GPU Hours: Per Job","[corsh] GPU Hours: Per Job","[crama] GPU Hours: Per Job","[crane] GPU Hours: Per Job","[dunli] GPU Hours: Per Job","[duswa] GPU Hours: Per Job","[egygo] GPU Hours: Per Job","[evegr] GPU Hours: Per Job","[ferdu] GPU Hours: Per Job","[field] GPU Hours: Per Job","[garwa] GPU Hours: Per Job","[gloib] GPU Hours: Per Job","[grath] GPU Hours: Per Job","[grgsh] GPU Hours: Per Job","[henha] GPU Hours: Per Job","[honbu] GPU Hours: Per Job","[hoowa] GPU Hours: Per Job","[jackd] GPU Hours: Per Job","[lanhach] GPU Hours: Per Job","[lapwi] GPU Hours: Per Job","[legsh] GPU Hours: Per Job","[lesre] GPU Hours: Per Job","[litau] GPU Hours: Per Job","[litst] GPU Hours: Per Job","[mamwa] GPU Hours: Per Job","[meapi] GPU Hours: Per Job","[misth] GPU Hours: Per Job","[moorh] GPU Hours: Per Job","[ovenb] GPU Hours: Per Job","[pereg] GPU Hours: Per Job","[pibgr] GPU Hours: Per Job","[proubis] GPU Hours: Per Job","[reebu] GPU Hours: Per Job","[relpa] GPU Hours: Per Job","[ribgu] GPU Hours: Per Job","[rolle] GPU Hours: Per Job","[sancr] GPU Hours: Per Job","[sante] GPU Hours: Per Job","[sarwa] GPU Hours: Per Job","[savsp] GPU Hours: Per Job","[shag1] GPU Hours: Per Job","[shttr] GPU Hours: Per Job","[siski] GPU Hours: Per Job","[smew1] GPU Hours: Per Job","[sogsh] GPU Hours: Per Job","[sposa] GPU Hours: Per Job","[swath] GPU Hours: Per Job","[turdo] GPU Hours: Per Job","[velsc] GPU Hours: Per Job","[vertera] GPU Hours: Per Job","[whimb] GPU Hours: Per Job","[whtpl] GPU Hours: Per Job","[whtsp] GPU Hours: Per Job","[ybsbu] GPU Hours: Per Job","[yebbu] GPU Hours: Per Job","[yebsa] GPU Hours: Per Job","[yebwa] GPU Hours: Per Job" +2016,93.09855556,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000 +2017,1.59307692,0,0.00000000,0,0,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0,0,0,0.00000000,0.00000000,0.00000000,0,0.00000000,0,0,0.00000000,0,0,0.00000000,0.00000000,0,0.00000000,0.00000000,0,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0,0,0.00000000,0,0,0.00000000,0.00000000,0.00000000,0.00000000,0,0,0.00000000,0.00000000,0,0.00000000,0,0.00000000,0.00000000,0,0.00000000,0,0,0.00000000,0.00000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_gpu_hours/timeseries-Year-cs.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_gpu_hours/timeseries-Year-cs.csv new file mode 100644 index 0000000000..a1f70accff --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_gpu_hours/timeseries-Year-cs.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Per Job: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[noror] GPU Hours: Per Job","[allga] GPU Hours: Per Job","[alpsw] GPU Hours: Per Job","[aytinis] GPU Hours: Per Job","[blhbu] GPU Hours: Per Job","[boowa] GPU Hours: Per Job","[caspl] GPU Hours: Per Job","[categ] GPU Hours: Per Job","[chaff] GPU Hours: Per Job","[coot1] GPU Hours: Per Job","[corsh] GPU Hours: Per Job","[crama] GPU Hours: Per Job","[crane] GPU Hours: Per Job","[dunli] GPU Hours: Per Job","[duswa] GPU Hours: Per Job","[egygo] GPU Hours: Per Job","[evegr] GPU Hours: Per Job","[ferdu] GPU Hours: Per Job","[field] GPU Hours: Per Job","[garwa] GPU Hours: Per Job","[gloib] GPU Hours: Per Job","[grath] GPU Hours: Per Job","[grgsh] GPU Hours: Per Job","[henha] GPU Hours: Per Job","[honbu] GPU Hours: Per Job","[hoowa] GPU Hours: Per Job","[jackd] GPU Hours: Per Job","[lanhach] GPU Hours: Per Job","[lapwi] GPU Hours: Per Job","[legsh] GPU Hours: Per Job","[lesre] GPU Hours: Per Job","[litau] GPU Hours: Per Job","[litst] GPU Hours: Per Job","[mamwa] GPU Hours: Per Job","[meapi] GPU Hours: Per Job","[misth] GPU Hours: Per Job","[moorh] GPU Hours: Per Job","[ovenb] GPU Hours: Per Job","[pereg] GPU Hours: Per Job","[pibgr] GPU Hours: Per Job","[proubis] GPU Hours: Per Job","[reebu] GPU Hours: Per Job","[relpa] GPU Hours: Per Job","[ribgu] GPU Hours: Per Job","[rolle] GPU Hours: Per Job","[sancr] GPU Hours: Per Job","[sante] GPU Hours: Per Job","[sarwa] GPU Hours: Per Job","[savsp] GPU Hours: Per Job","[shag1] GPU Hours: Per Job","[shttr] GPU Hours: Per Job","[siski] GPU Hours: Per Job","[smew1] GPU Hours: Per Job","[sogsh] GPU Hours: Per Job","[sposa] GPU Hours: Per Job","[swath] GPU Hours: Per Job","[turdo] GPU Hours: Per Job","[velsc] GPU Hours: Per Job","[vertera] GPU Hours: Per Job","[whimb] GPU Hours: Per Job","[whtpl] GPU Hours: Per Job","[whtsp] GPU Hours: Per Job","[ybsbu] GPU Hours: Per Job","[yebbu] GPU Hours: Per Job","[yebsa] GPU Hours: Per Job","[yebwa] GPU Hours: Per Job" +2016,93.09855556,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000 +2017,1.59307692,0,0.00000000,0,0,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0,0,0,0.00000000,0.00000000,0.00000000,0,0.00000000,0,0,0.00000000,0,0,0.00000000,0.00000000,0,0.00000000,0.00000000,0,0,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0,0.00000000,0.00000000,0,0,0.00000000,0,0,0.00000000,0.00000000,0.00000000,0.00000000,0,0,0.00000000,0.00000000,0,0.00000000,0,0.00000000,0.00000000,0,0.00000000,0,0,0.00000000,0.00000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_gpu_hours/timeseries-Year-pi.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_gpu_hours/timeseries-Year-pi.csv new file mode 100644 index 0000000000..341ab58e81 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_gpu_hours/timeseries-Year-pi.csv @@ -0,0 +1,12 @@ +title +"GPU Hours: Per Job: by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2016-12-22,2017-01-01 +--------- +Year,"[litst] GPU Hours: Per Job","[ovenb] GPU Hours: Per Job","[sante] GPU Hours: Per Job","[savsp] GPU Hours: Per Job","[swath] GPU Hours: Per Job","[ybsbu] GPU Hours: Per Job" +2016,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000,0.00000000 +2017,0,0.00000000,0,0.00000000,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_gpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_gpu_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..9ed245d5c0 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_gpu_hours/timeseries-Year-reference.csv @@ -0,0 +1,14 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [ + + ], + "data": [ + + ], + "message": "Your user account does not have permission to view the requested data. If you\nbelieve that you should be able to see this information, then please select\n\"Submit Support Request\" in the \"Contact Us\" menu to request access.", + "code": 103 +} diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_gpu_hours/timeseries-Year-usr.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_gpu_hours/timeseries-Year-usr.csv new file mode 100644 index 0000000000..88ee293a67 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_gpu_hours/timeseries-Year-usr.csv @@ -0,0 +1,12 @@ +title +"GPU Hours: Per Job: by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2016-12-22,2017-01-01 +--------- +Year,"[whimb] GPU Hours: Per Job" +2016,0.00000000 +2017,0.00000000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_gpus/aggregate-Day-cd.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_gpus/aggregate-Day-cd.csv new file mode 100644 index 0000000000..c2c6f87eac --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_gpus/aggregate-Day-cd.csv @@ -0,0 +1,75 @@ +title +"GPU Count: Per Job: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"System Username","GPU Count: Per Job","Std Dev: GPU Count: Per Job" +noror,0.1333,0.09108400682479477 +allga,0.0000,0 +alpsw,0.0000,0 +aytinis,0.0000,0 +blhbu,0.0000,0 +boowa,0.0000,0 +caspl,0.0000,0 +categ,0.0000,0 +chaff,0.0000,0 +coot1,0.0000,0 +corsh,0.0000,0 +crama,0.0000,0 +crane,0.0000,0 +dunli,0.0000,0 +duswa,0.0000,0 +egygo,0.0000,0 +evegr,0.0000,0 +ferdu,0.0000,0 +field,0.0000,0 +garwa,0.0000,0 +gloib,0.0000,0 +grath,0.0000,0 +grgsh,0.0000,0 +henha,0.0000,0 +honbu,0.0000,0 +hoowa,0.0000,0 +jackd,0.0000,0 +lanhach,0.0000,0 +lapwi,0.0000,0 +legsh,0.0000,0 +lesre,0.0000,0 +litau,0.0000,0 +litst,0.0000,0 +mamwa,0.0000,0 +meapi,0.0000,0 +misth,0.0000,0 +moorh,0.0000,0 +ovenb,0.0000,0 +pereg,0.0000,0 +pibgr,0.0000,0 +proubis,0.0000,0 +reebu,0.0000,0 +relpa,0.0000,0 +ribgu,0.0000,0 +rolle,0.0000,0 +sancr,0.0000,0 +sante,0.0000,0 +sarwa,0.0000,0 +savsp,0.0000,0 +shag1,0.0000,0 +shttr,0.0000,0 +siski,0.0000,0 +smew1,0.0000,0 +sogsh,0.0000,0 +sposa,0.0000,0 +swath,0.0000,0 +turdo,0.0000,0 +velsc,0.0000,0 +vertera,0.0000,0 +whimb,0.0000,0 +whtpl,0.0000,0 +whtsp,0.0000,0 +ybsbu,0.0000,0 +yebbu,0.0000,0 +yebsa,0.0000,0 +yebwa,0.0000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_gpus/aggregate-Day-cs.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_gpus/aggregate-Day-cs.csv new file mode 100644 index 0000000000..c2c6f87eac --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_gpus/aggregate-Day-cs.csv @@ -0,0 +1,75 @@ +title +"GPU Count: Per Job: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"System Username","GPU Count: Per Job","Std Dev: GPU Count: Per Job" +noror,0.1333,0.09108400682479477 +allga,0.0000,0 +alpsw,0.0000,0 +aytinis,0.0000,0 +blhbu,0.0000,0 +boowa,0.0000,0 +caspl,0.0000,0 +categ,0.0000,0 +chaff,0.0000,0 +coot1,0.0000,0 +corsh,0.0000,0 +crama,0.0000,0 +crane,0.0000,0 +dunli,0.0000,0 +duswa,0.0000,0 +egygo,0.0000,0 +evegr,0.0000,0 +ferdu,0.0000,0 +field,0.0000,0 +garwa,0.0000,0 +gloib,0.0000,0 +grath,0.0000,0 +grgsh,0.0000,0 +henha,0.0000,0 +honbu,0.0000,0 +hoowa,0.0000,0 +jackd,0.0000,0 +lanhach,0.0000,0 +lapwi,0.0000,0 +legsh,0.0000,0 +lesre,0.0000,0 +litau,0.0000,0 +litst,0.0000,0 +mamwa,0.0000,0 +meapi,0.0000,0 +misth,0.0000,0 +moorh,0.0000,0 +ovenb,0.0000,0 +pereg,0.0000,0 +pibgr,0.0000,0 +proubis,0.0000,0 +reebu,0.0000,0 +relpa,0.0000,0 +ribgu,0.0000,0 +rolle,0.0000,0 +sancr,0.0000,0 +sante,0.0000,0 +sarwa,0.0000,0 +savsp,0.0000,0 +shag1,0.0000,0 +shttr,0.0000,0 +siski,0.0000,0 +smew1,0.0000,0 +sogsh,0.0000,0 +sposa,0.0000,0 +swath,0.0000,0 +turdo,0.0000,0 +velsc,0.0000,0 +vertera,0.0000,0 +whimb,0.0000,0 +whtpl,0.0000,0 +whtsp,0.0000,0 +ybsbu,0.0000,0 +yebbu,0.0000,0 +yebsa,0.0000,0 +yebwa,0.0000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_gpus/aggregate-Day-pi.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_gpus/aggregate-Day-pi.csv new file mode 100644 index 0000000000..e14d79be2a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_gpus/aggregate-Day-pi.csv @@ -0,0 +1,16 @@ +title +"GPU Count: Per Job: by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2016-12-22,2017-01-01 +--------- +"System Username","GPU Count: Per Job","Std Dev: GPU Count: Per Job" +litst,0.0000,0 +ovenb,0.0000,0 +sante,0.0000,0 +savsp,0.0000,0 +swath,0.0000,0 +ybsbu,0.0000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_gpus/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_gpus/aggregate-Day-reference.csv new file mode 100644 index 0000000000..9ed245d5c0 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_gpus/aggregate-Day-reference.csv @@ -0,0 +1,14 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [ + + ], + "data": [ + + ], + "message": "Your user account does not have permission to view the requested data. If you\nbelieve that you should be able to see this information, then please select\n\"Submit Support Request\" in the \"Contact Us\" menu to request access.", + "code": 103 +} diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_gpus/aggregate-Day-usr.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_gpus/aggregate-Day-usr.csv new file mode 100644 index 0000000000..9e3b60de48 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_gpus/aggregate-Day-usr.csv @@ -0,0 +1,11 @@ +title +"GPU Count: Per Job: by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2016-12-22,2017-01-01 +--------- +"System Username","GPU Count: Per Job","Std Dev: GPU Count: Per Job" +whimb,0.0000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_gpus/aggregate-Month-cd.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_gpus/aggregate-Month-cd.csv new file mode 100644 index 0000000000..c2c6f87eac --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_gpus/aggregate-Month-cd.csv @@ -0,0 +1,75 @@ +title +"GPU Count: Per Job: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"System Username","GPU Count: Per Job","Std Dev: GPU Count: Per Job" +noror,0.1333,0.09108400682479477 +allga,0.0000,0 +alpsw,0.0000,0 +aytinis,0.0000,0 +blhbu,0.0000,0 +boowa,0.0000,0 +caspl,0.0000,0 +categ,0.0000,0 +chaff,0.0000,0 +coot1,0.0000,0 +corsh,0.0000,0 +crama,0.0000,0 +crane,0.0000,0 +dunli,0.0000,0 +duswa,0.0000,0 +egygo,0.0000,0 +evegr,0.0000,0 +ferdu,0.0000,0 +field,0.0000,0 +garwa,0.0000,0 +gloib,0.0000,0 +grath,0.0000,0 +grgsh,0.0000,0 +henha,0.0000,0 +honbu,0.0000,0 +hoowa,0.0000,0 +jackd,0.0000,0 +lanhach,0.0000,0 +lapwi,0.0000,0 +legsh,0.0000,0 +lesre,0.0000,0 +litau,0.0000,0 +litst,0.0000,0 +mamwa,0.0000,0 +meapi,0.0000,0 +misth,0.0000,0 +moorh,0.0000,0 +ovenb,0.0000,0 +pereg,0.0000,0 +pibgr,0.0000,0 +proubis,0.0000,0 +reebu,0.0000,0 +relpa,0.0000,0 +ribgu,0.0000,0 +rolle,0.0000,0 +sancr,0.0000,0 +sante,0.0000,0 +sarwa,0.0000,0 +savsp,0.0000,0 +shag1,0.0000,0 +shttr,0.0000,0 +siski,0.0000,0 +smew1,0.0000,0 +sogsh,0.0000,0 +sposa,0.0000,0 +swath,0.0000,0 +turdo,0.0000,0 +velsc,0.0000,0 +vertera,0.0000,0 +whimb,0.0000,0 +whtpl,0.0000,0 +whtsp,0.0000,0 +ybsbu,0.0000,0 +yebbu,0.0000,0 +yebsa,0.0000,0 +yebwa,0.0000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_gpus/aggregate-Month-cs.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_gpus/aggregate-Month-cs.csv new file mode 100644 index 0000000000..c2c6f87eac --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_gpus/aggregate-Month-cs.csv @@ -0,0 +1,75 @@ +title +"GPU Count: Per Job: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"System Username","GPU Count: Per Job","Std Dev: GPU Count: Per Job" +noror,0.1333,0.09108400682479477 +allga,0.0000,0 +alpsw,0.0000,0 +aytinis,0.0000,0 +blhbu,0.0000,0 +boowa,0.0000,0 +caspl,0.0000,0 +categ,0.0000,0 +chaff,0.0000,0 +coot1,0.0000,0 +corsh,0.0000,0 +crama,0.0000,0 +crane,0.0000,0 +dunli,0.0000,0 +duswa,0.0000,0 +egygo,0.0000,0 +evegr,0.0000,0 +ferdu,0.0000,0 +field,0.0000,0 +garwa,0.0000,0 +gloib,0.0000,0 +grath,0.0000,0 +grgsh,0.0000,0 +henha,0.0000,0 +honbu,0.0000,0 +hoowa,0.0000,0 +jackd,0.0000,0 +lanhach,0.0000,0 +lapwi,0.0000,0 +legsh,0.0000,0 +lesre,0.0000,0 +litau,0.0000,0 +litst,0.0000,0 +mamwa,0.0000,0 +meapi,0.0000,0 +misth,0.0000,0 +moorh,0.0000,0 +ovenb,0.0000,0 +pereg,0.0000,0 +pibgr,0.0000,0 +proubis,0.0000,0 +reebu,0.0000,0 +relpa,0.0000,0 +ribgu,0.0000,0 +rolle,0.0000,0 +sancr,0.0000,0 +sante,0.0000,0 +sarwa,0.0000,0 +savsp,0.0000,0 +shag1,0.0000,0 +shttr,0.0000,0 +siski,0.0000,0 +smew1,0.0000,0 +sogsh,0.0000,0 +sposa,0.0000,0 +swath,0.0000,0 +turdo,0.0000,0 +velsc,0.0000,0 +vertera,0.0000,0 +whimb,0.0000,0 +whtpl,0.0000,0 +whtsp,0.0000,0 +ybsbu,0.0000,0 +yebbu,0.0000,0 +yebsa,0.0000,0 +yebwa,0.0000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_gpus/aggregate-Month-pi.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_gpus/aggregate-Month-pi.csv new file mode 100644 index 0000000000..e14d79be2a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_gpus/aggregate-Month-pi.csv @@ -0,0 +1,16 @@ +title +"GPU Count: Per Job: by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2016-12-22,2017-01-01 +--------- +"System Username","GPU Count: Per Job","Std Dev: GPU Count: Per Job" +litst,0.0000,0 +ovenb,0.0000,0 +sante,0.0000,0 +savsp,0.0000,0 +swath,0.0000,0 +ybsbu,0.0000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_gpus/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_gpus/aggregate-Month-reference.csv new file mode 100644 index 0000000000..9ed245d5c0 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_gpus/aggregate-Month-reference.csv @@ -0,0 +1,14 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [ + + ], + "data": [ + + ], + "message": "Your user account does not have permission to view the requested data. If you\nbelieve that you should be able to see this information, then please select\n\"Submit Support Request\" in the \"Contact Us\" menu to request access.", + "code": 103 +} diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_gpus/aggregate-Month-usr.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_gpus/aggregate-Month-usr.csv new file mode 100644 index 0000000000..9e3b60de48 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_gpus/aggregate-Month-usr.csv @@ -0,0 +1,11 @@ +title +"GPU Count: Per Job: by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2016-12-22,2017-01-01 +--------- +"System Username","GPU Count: Per Job","Std Dev: GPU Count: Per Job" +whimb,0.0000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_gpus/aggregate-Quarter-cd.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_gpus/aggregate-Quarter-cd.csv new file mode 100644 index 0000000000..c2c6f87eac --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_gpus/aggregate-Quarter-cd.csv @@ -0,0 +1,75 @@ +title +"GPU Count: Per Job: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"System Username","GPU Count: Per Job","Std Dev: GPU Count: Per Job" +noror,0.1333,0.09108400682479477 +allga,0.0000,0 +alpsw,0.0000,0 +aytinis,0.0000,0 +blhbu,0.0000,0 +boowa,0.0000,0 +caspl,0.0000,0 +categ,0.0000,0 +chaff,0.0000,0 +coot1,0.0000,0 +corsh,0.0000,0 +crama,0.0000,0 +crane,0.0000,0 +dunli,0.0000,0 +duswa,0.0000,0 +egygo,0.0000,0 +evegr,0.0000,0 +ferdu,0.0000,0 +field,0.0000,0 +garwa,0.0000,0 +gloib,0.0000,0 +grath,0.0000,0 +grgsh,0.0000,0 +henha,0.0000,0 +honbu,0.0000,0 +hoowa,0.0000,0 +jackd,0.0000,0 +lanhach,0.0000,0 +lapwi,0.0000,0 +legsh,0.0000,0 +lesre,0.0000,0 +litau,0.0000,0 +litst,0.0000,0 +mamwa,0.0000,0 +meapi,0.0000,0 +misth,0.0000,0 +moorh,0.0000,0 +ovenb,0.0000,0 +pereg,0.0000,0 +pibgr,0.0000,0 +proubis,0.0000,0 +reebu,0.0000,0 +relpa,0.0000,0 +ribgu,0.0000,0 +rolle,0.0000,0 +sancr,0.0000,0 +sante,0.0000,0 +sarwa,0.0000,0 +savsp,0.0000,0 +shag1,0.0000,0 +shttr,0.0000,0 +siski,0.0000,0 +smew1,0.0000,0 +sogsh,0.0000,0 +sposa,0.0000,0 +swath,0.0000,0 +turdo,0.0000,0 +velsc,0.0000,0 +vertera,0.0000,0 +whimb,0.0000,0 +whtpl,0.0000,0 +whtsp,0.0000,0 +ybsbu,0.0000,0 +yebbu,0.0000,0 +yebsa,0.0000,0 +yebwa,0.0000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_gpus/aggregate-Quarter-cs.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_gpus/aggregate-Quarter-cs.csv new file mode 100644 index 0000000000..c2c6f87eac --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_gpus/aggregate-Quarter-cs.csv @@ -0,0 +1,75 @@ +title +"GPU Count: Per Job: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"System Username","GPU Count: Per Job","Std Dev: GPU Count: Per Job" +noror,0.1333,0.09108400682479477 +allga,0.0000,0 +alpsw,0.0000,0 +aytinis,0.0000,0 +blhbu,0.0000,0 +boowa,0.0000,0 +caspl,0.0000,0 +categ,0.0000,0 +chaff,0.0000,0 +coot1,0.0000,0 +corsh,0.0000,0 +crama,0.0000,0 +crane,0.0000,0 +dunli,0.0000,0 +duswa,0.0000,0 +egygo,0.0000,0 +evegr,0.0000,0 +ferdu,0.0000,0 +field,0.0000,0 +garwa,0.0000,0 +gloib,0.0000,0 +grath,0.0000,0 +grgsh,0.0000,0 +henha,0.0000,0 +honbu,0.0000,0 +hoowa,0.0000,0 +jackd,0.0000,0 +lanhach,0.0000,0 +lapwi,0.0000,0 +legsh,0.0000,0 +lesre,0.0000,0 +litau,0.0000,0 +litst,0.0000,0 +mamwa,0.0000,0 +meapi,0.0000,0 +misth,0.0000,0 +moorh,0.0000,0 +ovenb,0.0000,0 +pereg,0.0000,0 +pibgr,0.0000,0 +proubis,0.0000,0 +reebu,0.0000,0 +relpa,0.0000,0 +ribgu,0.0000,0 +rolle,0.0000,0 +sancr,0.0000,0 +sante,0.0000,0 +sarwa,0.0000,0 +savsp,0.0000,0 +shag1,0.0000,0 +shttr,0.0000,0 +siski,0.0000,0 +smew1,0.0000,0 +sogsh,0.0000,0 +sposa,0.0000,0 +swath,0.0000,0 +turdo,0.0000,0 +velsc,0.0000,0 +vertera,0.0000,0 +whimb,0.0000,0 +whtpl,0.0000,0 +whtsp,0.0000,0 +ybsbu,0.0000,0 +yebbu,0.0000,0 +yebsa,0.0000,0 +yebwa,0.0000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_gpus/aggregate-Quarter-pi.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_gpus/aggregate-Quarter-pi.csv new file mode 100644 index 0000000000..e14d79be2a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_gpus/aggregate-Quarter-pi.csv @@ -0,0 +1,16 @@ +title +"GPU Count: Per Job: by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2016-12-22,2017-01-01 +--------- +"System Username","GPU Count: Per Job","Std Dev: GPU Count: Per Job" +litst,0.0000,0 +ovenb,0.0000,0 +sante,0.0000,0 +savsp,0.0000,0 +swath,0.0000,0 +ybsbu,0.0000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_gpus/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_gpus/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..9ed245d5c0 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_gpus/aggregate-Quarter-reference.csv @@ -0,0 +1,14 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [ + + ], + "data": [ + + ], + "message": "Your user account does not have permission to view the requested data. If you\nbelieve that you should be able to see this information, then please select\n\"Submit Support Request\" in the \"Contact Us\" menu to request access.", + "code": 103 +} diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_gpus/aggregate-Quarter-usr.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_gpus/aggregate-Quarter-usr.csv new file mode 100644 index 0000000000..9e3b60de48 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_gpus/aggregate-Quarter-usr.csv @@ -0,0 +1,11 @@ +title +"GPU Count: Per Job: by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2016-12-22,2017-01-01 +--------- +"System Username","GPU Count: Per Job","Std Dev: GPU Count: Per Job" +whimb,0.0000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_gpus/aggregate-Year-cd.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_gpus/aggregate-Year-cd.csv new file mode 100644 index 0000000000..c2c6f87eac --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_gpus/aggregate-Year-cd.csv @@ -0,0 +1,75 @@ +title +"GPU Count: Per Job: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"System Username","GPU Count: Per Job","Std Dev: GPU Count: Per Job" +noror,0.1333,0.09108400682479477 +allga,0.0000,0 +alpsw,0.0000,0 +aytinis,0.0000,0 +blhbu,0.0000,0 +boowa,0.0000,0 +caspl,0.0000,0 +categ,0.0000,0 +chaff,0.0000,0 +coot1,0.0000,0 +corsh,0.0000,0 +crama,0.0000,0 +crane,0.0000,0 +dunli,0.0000,0 +duswa,0.0000,0 +egygo,0.0000,0 +evegr,0.0000,0 +ferdu,0.0000,0 +field,0.0000,0 +garwa,0.0000,0 +gloib,0.0000,0 +grath,0.0000,0 +grgsh,0.0000,0 +henha,0.0000,0 +honbu,0.0000,0 +hoowa,0.0000,0 +jackd,0.0000,0 +lanhach,0.0000,0 +lapwi,0.0000,0 +legsh,0.0000,0 +lesre,0.0000,0 +litau,0.0000,0 +litst,0.0000,0 +mamwa,0.0000,0 +meapi,0.0000,0 +misth,0.0000,0 +moorh,0.0000,0 +ovenb,0.0000,0 +pereg,0.0000,0 +pibgr,0.0000,0 +proubis,0.0000,0 +reebu,0.0000,0 +relpa,0.0000,0 +ribgu,0.0000,0 +rolle,0.0000,0 +sancr,0.0000,0 +sante,0.0000,0 +sarwa,0.0000,0 +savsp,0.0000,0 +shag1,0.0000,0 +shttr,0.0000,0 +siski,0.0000,0 +smew1,0.0000,0 +sogsh,0.0000,0 +sposa,0.0000,0 +swath,0.0000,0 +turdo,0.0000,0 +velsc,0.0000,0 +vertera,0.0000,0 +whimb,0.0000,0 +whtpl,0.0000,0 +whtsp,0.0000,0 +ybsbu,0.0000,0 +yebbu,0.0000,0 +yebsa,0.0000,0 +yebwa,0.0000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_gpus/aggregate-Year-cs.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_gpus/aggregate-Year-cs.csv new file mode 100644 index 0000000000..c2c6f87eac --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_gpus/aggregate-Year-cs.csv @@ -0,0 +1,75 @@ +title +"GPU Count: Per Job: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"System Username","GPU Count: Per Job","Std Dev: GPU Count: Per Job" +noror,0.1333,0.09108400682479477 +allga,0.0000,0 +alpsw,0.0000,0 +aytinis,0.0000,0 +blhbu,0.0000,0 +boowa,0.0000,0 +caspl,0.0000,0 +categ,0.0000,0 +chaff,0.0000,0 +coot1,0.0000,0 +corsh,0.0000,0 +crama,0.0000,0 +crane,0.0000,0 +dunli,0.0000,0 +duswa,0.0000,0 +egygo,0.0000,0 +evegr,0.0000,0 +ferdu,0.0000,0 +field,0.0000,0 +garwa,0.0000,0 +gloib,0.0000,0 +grath,0.0000,0 +grgsh,0.0000,0 +henha,0.0000,0 +honbu,0.0000,0 +hoowa,0.0000,0 +jackd,0.0000,0 +lanhach,0.0000,0 +lapwi,0.0000,0 +legsh,0.0000,0 +lesre,0.0000,0 +litau,0.0000,0 +litst,0.0000,0 +mamwa,0.0000,0 +meapi,0.0000,0 +misth,0.0000,0 +moorh,0.0000,0 +ovenb,0.0000,0 +pereg,0.0000,0 +pibgr,0.0000,0 +proubis,0.0000,0 +reebu,0.0000,0 +relpa,0.0000,0 +ribgu,0.0000,0 +rolle,0.0000,0 +sancr,0.0000,0 +sante,0.0000,0 +sarwa,0.0000,0 +savsp,0.0000,0 +shag1,0.0000,0 +shttr,0.0000,0 +siski,0.0000,0 +smew1,0.0000,0 +sogsh,0.0000,0 +sposa,0.0000,0 +swath,0.0000,0 +turdo,0.0000,0 +velsc,0.0000,0 +vertera,0.0000,0 +whimb,0.0000,0 +whtpl,0.0000,0 +whtsp,0.0000,0 +ybsbu,0.0000,0 +yebbu,0.0000,0 +yebsa,0.0000,0 +yebwa,0.0000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_gpus/aggregate-Year-pi.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_gpus/aggregate-Year-pi.csv new file mode 100644 index 0000000000..e14d79be2a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_gpus/aggregate-Year-pi.csv @@ -0,0 +1,16 @@ +title +"GPU Count: Per Job: by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2016-12-22,2017-01-01 +--------- +"System Username","GPU Count: Per Job","Std Dev: GPU Count: Per Job" +litst,0.0000,0 +ovenb,0.0000,0 +sante,0.0000,0 +savsp,0.0000,0 +swath,0.0000,0 +ybsbu,0.0000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_gpus/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_gpus/aggregate-Year-reference.csv new file mode 100644 index 0000000000..9ed245d5c0 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_gpus/aggregate-Year-reference.csv @@ -0,0 +1,14 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [ + + ], + "data": [ + + ], + "message": "Your user account does not have permission to view the requested data. If you\nbelieve that you should be able to see this information, then please select\n\"Submit Support Request\" in the \"Contact Us\" menu to request access.", + "code": 103 +} diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_gpus/aggregate-Year-usr.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_gpus/aggregate-Year-usr.csv new file mode 100644 index 0000000000..9e3b60de48 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_gpus/aggregate-Year-usr.csv @@ -0,0 +1,11 @@ +title +"GPU Count: Per Job: by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2016-12-22,2017-01-01 +--------- +"System Username","GPU Count: Per Job","Std Dev: GPU Count: Per Job" +whimb,0.0000,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_gpus/timeseries-Day-cd.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_gpus/timeseries-Day-cd.csv new file mode 100644 index 0000000000..af6d41263d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_gpus/timeseries-Day-cd.csv @@ -0,0 +1,20 @@ +title +"GPU Count: Per Job: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[noror] GPU Count: Per Job","[allga] GPU Count: Per Job","[alpsw] GPU Count: Per Job","[aytinis] GPU Count: Per Job","[blhbu] GPU Count: Per Job","[boowa] GPU Count: Per Job","[caspl] GPU Count: Per Job","[categ] GPU Count: Per Job","[chaff] GPU Count: Per Job","[coot1] GPU Count: Per Job","[corsh] GPU Count: Per Job","[crama] GPU Count: Per Job","[crane] GPU Count: Per Job","[dunli] GPU Count: Per Job","[duswa] GPU Count: Per Job","[egygo] GPU Count: Per Job","[evegr] GPU Count: Per Job","[ferdu] GPU Count: Per Job","[field] GPU Count: Per Job","[garwa] GPU Count: Per Job","[gloib] GPU Count: Per Job","[grath] GPU Count: Per Job","[grgsh] GPU Count: Per Job","[henha] GPU Count: Per Job","[honbu] GPU Count: Per Job","[hoowa] GPU Count: Per Job","[jackd] GPU Count: Per Job","[lanhach] GPU Count: Per Job","[lapwi] GPU Count: Per Job","[legsh] GPU Count: Per Job","[lesre] GPU Count: Per Job","[litau] GPU Count: Per Job","[litst] GPU Count: Per Job","[mamwa] GPU Count: Per Job","[meapi] GPU Count: Per Job","[misth] GPU Count: Per Job","[moorh] GPU Count: Per Job","[ovenb] GPU Count: Per Job","[pereg] GPU Count: Per Job","[pibgr] GPU Count: Per Job","[proubis] GPU Count: Per Job","[reebu] GPU Count: Per Job","[relpa] GPU Count: Per Job","[ribgu] GPU Count: Per Job","[rolle] GPU Count: Per Job","[sancr] GPU Count: Per Job","[sante] GPU Count: Per Job","[sarwa] GPU Count: Per Job","[savsp] GPU Count: Per Job","[shag1] GPU Count: Per Job","[shttr] GPU Count: Per Job","[siski] GPU Count: Per Job","[smew1] GPU Count: Per Job","[sogsh] GPU Count: Per Job","[sposa] GPU Count: Per Job","[swath] GPU Count: Per Job","[turdo] GPU Count: Per Job","[velsc] GPU Count: Per Job","[vertera] GPU Count: Per Job","[whimb] GPU Count: Per Job","[whtpl] GPU Count: Per Job","[whtsp] GPU Count: Per Job","[ybsbu] GPU Count: Per Job","[yebbu] GPU Count: Per Job","[yebsa] GPU Count: Per Job","[yebwa] GPU Count: Per Job" +2016-12-22,2.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0 +2016-12-23,2.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0 +2016-12-24,2.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0 +2016-12-25,2.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0 +2016-12-26,2.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0 +2016-12-27,2.0000,0,0,0,0,0.0000,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0.0000,0.0000,0,0,0.0000,0,0,0,0.0000,0,0,0,0.0000,0.0000,0,0,0,0.0000,0.0000,0,0,0,0,0.0000,0.0000,0,0,0,0,0.0000,0,0,0 +2016-12-28,2.0000,0,0,0.0000,0,0.0000,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0.0000,0.0000,0,0,0,0.0000,0.0000,0,0,0.0000,0,0,0,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0,0,0.0000,0,0,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0,0,0,0,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0 +2016-12-29,2.0000,0,0,0.0000,0,0.0000,0,0,0.0000,0,0.0000,0,0.0000,0,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0,0,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0,0.0000,0,0.0000,0.0000,0.0000,0.0000 +2016-12-30,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000 +2016-12-31,0.4000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0 +2017-01-01,0.1538,0,0.0000,0,0,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0,0,0.0000,0.0000,0.0000,0,0.0000,0,0,0.0000,0,0,0.0000,0.0000,0,0.0000,0.0000,0,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0,0.0000,0,0,0.0000,0.0000,0.0000,0.0000,0,0,0.0000,0.0000,0,0.0000,0,0.0000,0.0000,0,0.0000,0,0,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_gpus/timeseries-Day-cs.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_gpus/timeseries-Day-cs.csv new file mode 100644 index 0000000000..af6d41263d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_gpus/timeseries-Day-cs.csv @@ -0,0 +1,20 @@ +title +"GPU Count: Per Job: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[noror] GPU Count: Per Job","[allga] GPU Count: Per Job","[alpsw] GPU Count: Per Job","[aytinis] GPU Count: Per Job","[blhbu] GPU Count: Per Job","[boowa] GPU Count: Per Job","[caspl] GPU Count: Per Job","[categ] GPU Count: Per Job","[chaff] GPU Count: Per Job","[coot1] GPU Count: Per Job","[corsh] GPU Count: Per Job","[crama] GPU Count: Per Job","[crane] GPU Count: Per Job","[dunli] GPU Count: Per Job","[duswa] GPU Count: Per Job","[egygo] GPU Count: Per Job","[evegr] GPU Count: Per Job","[ferdu] GPU Count: Per Job","[field] GPU Count: Per Job","[garwa] GPU Count: Per Job","[gloib] GPU Count: Per Job","[grath] GPU Count: Per Job","[grgsh] GPU Count: Per Job","[henha] GPU Count: Per Job","[honbu] GPU Count: Per Job","[hoowa] GPU Count: Per Job","[jackd] GPU Count: Per Job","[lanhach] GPU Count: Per Job","[lapwi] GPU Count: Per Job","[legsh] GPU Count: Per Job","[lesre] GPU Count: Per Job","[litau] GPU Count: Per Job","[litst] GPU Count: Per Job","[mamwa] GPU Count: Per Job","[meapi] GPU Count: Per Job","[misth] GPU Count: Per Job","[moorh] GPU Count: Per Job","[ovenb] GPU Count: Per Job","[pereg] GPU Count: Per Job","[pibgr] GPU Count: Per Job","[proubis] GPU Count: Per Job","[reebu] GPU Count: Per Job","[relpa] GPU Count: Per Job","[ribgu] GPU Count: Per Job","[rolle] GPU Count: Per Job","[sancr] GPU Count: Per Job","[sante] GPU Count: Per Job","[sarwa] GPU Count: Per Job","[savsp] GPU Count: Per Job","[shag1] GPU Count: Per Job","[shttr] GPU Count: Per Job","[siski] GPU Count: Per Job","[smew1] GPU Count: Per Job","[sogsh] GPU Count: Per Job","[sposa] GPU Count: Per Job","[swath] GPU Count: Per Job","[turdo] GPU Count: Per Job","[velsc] GPU Count: Per Job","[vertera] GPU Count: Per Job","[whimb] GPU Count: Per Job","[whtpl] GPU Count: Per Job","[whtsp] GPU Count: Per Job","[ybsbu] GPU Count: Per Job","[yebbu] GPU Count: Per Job","[yebsa] GPU Count: Per Job","[yebwa] GPU Count: Per Job" +2016-12-22,2.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0 +2016-12-23,2.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0 +2016-12-24,2.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0 +2016-12-25,2.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0 +2016-12-26,2.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0 +2016-12-27,2.0000,0,0,0,0,0.0000,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0.0000,0.0000,0,0,0.0000,0,0,0,0.0000,0,0,0,0.0000,0.0000,0,0,0,0.0000,0.0000,0,0,0,0,0.0000,0.0000,0,0,0,0,0.0000,0,0,0 +2016-12-28,2.0000,0,0,0.0000,0,0.0000,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0.0000,0.0000,0,0,0,0.0000,0.0000,0,0,0.0000,0,0,0,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0,0,0.0000,0,0,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0,0,0,0,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0 +2016-12-29,2.0000,0,0,0.0000,0,0.0000,0,0,0.0000,0,0.0000,0,0.0000,0,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0,0,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0,0.0000,0,0.0000,0.0000,0.0000,0.0000 +2016-12-30,2.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000 +2016-12-31,0.4000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0 +2017-01-01,0.1538,0,0.0000,0,0,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0,0,0.0000,0.0000,0.0000,0,0.0000,0,0,0.0000,0,0,0.0000,0.0000,0,0.0000,0.0000,0,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0,0.0000,0,0,0.0000,0.0000,0.0000,0.0000,0,0,0.0000,0.0000,0,0.0000,0,0.0000,0.0000,0,0.0000,0,0,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_gpus/timeseries-Day-pi.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_gpus/timeseries-Day-pi.csv new file mode 100644 index 0000000000..b5945dfa49 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_gpus/timeseries-Day-pi.csv @@ -0,0 +1,20 @@ +title +"GPU Count: Per Job: by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2016-12-22,2017-01-01 +--------- +Day,"[litst] GPU Count: Per Job","[ovenb] GPU Count: Per Job","[sante] GPU Count: Per Job","[savsp] GPU Count: Per Job","[swath] GPU Count: Per Job","[ybsbu] GPU Count: Per Job" +2016-12-23,0,0,0.0000,0,0,0 +2016-12-24,0,0,0.0000,0,0,0 +2016-12-25,0,0,0.0000,0,0,0 +2016-12-26,0,0,0.0000,0,0,0 +2016-12-27,0,0.0000,0.0000,0,0,0.0000 +2016-12-28,0,0.0000,0.0000,0,0,0.0000 +2016-12-29,0,0.0000,0.0000,0,0.0000,0.0000 +2016-12-30,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2016-12-31,0.0000,0.0000,0,0.0000,0.0000,0.0000 +2017-01-01,0,0.0000,0,0.0000,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_gpus/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_gpus/timeseries-Day-reference.csv new file mode 100644 index 0000000000..9ed245d5c0 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_gpus/timeseries-Day-reference.csv @@ -0,0 +1,14 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [ + + ], + "data": [ + + ], + "message": "Your user account does not have permission to view the requested data. If you\nbelieve that you should be able to see this information, then please select\n\"Submit Support Request\" in the \"Contact Us\" menu to request access.", + "code": 103 +} diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_gpus/timeseries-Day-usr.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_gpus/timeseries-Day-usr.csv new file mode 100644 index 0000000000..e17e8182e8 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_gpus/timeseries-Day-usr.csv @@ -0,0 +1,13 @@ +title +"GPU Count: Per Job: by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2016-12-22,2017-01-01 +--------- +Day,"[whimb] GPU Count: Per Job" +2016-12-30,0.0000 +2016-12-31,0.0000 +2017-01-01,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_gpus/timeseries-Month-cd.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_gpus/timeseries-Month-cd.csv new file mode 100644 index 0000000000..b1f0032bb4 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_gpus/timeseries-Month-cd.csv @@ -0,0 +1,11 @@ +title +"GPU Count: Per Job: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[noror] GPU Count: Per Job","[allga] GPU Count: Per Job","[alpsw] GPU Count: Per Job","[aytinis] GPU Count: Per Job","[blhbu] GPU Count: Per Job","[boowa] GPU Count: Per Job","[caspl] GPU Count: Per Job","[categ] GPU Count: Per Job","[chaff] GPU Count: Per Job","[coot1] GPU Count: Per Job","[corsh] GPU Count: Per Job","[crama] GPU Count: Per Job","[crane] GPU Count: Per Job","[dunli] GPU Count: Per Job","[duswa] GPU Count: Per Job","[egygo] GPU Count: Per Job","[evegr] GPU Count: Per Job","[ferdu] GPU Count: Per Job","[field] GPU Count: Per Job","[garwa] GPU Count: Per Job","[gloib] GPU Count: Per Job","[grath] GPU Count: Per Job","[grgsh] GPU Count: Per Job","[henha] GPU Count: Per Job","[honbu] GPU Count: Per Job","[hoowa] GPU Count: Per Job","[jackd] GPU Count: Per Job","[lanhach] GPU Count: Per Job","[lapwi] GPU Count: Per Job","[legsh] GPU Count: Per Job","[lesre] GPU Count: Per Job","[litau] GPU Count: Per Job","[litst] GPU Count: Per Job","[mamwa] GPU Count: Per Job","[meapi] GPU Count: Per Job","[misth] GPU Count: Per Job","[moorh] GPU Count: Per Job","[ovenb] GPU Count: Per Job","[pereg] GPU Count: Per Job","[pibgr] GPU Count: Per Job","[proubis] GPU Count: Per Job","[reebu] GPU Count: Per Job","[relpa] GPU Count: Per Job","[ribgu] GPU Count: Per Job","[rolle] GPU Count: Per Job","[sancr] GPU Count: Per Job","[sante] GPU Count: Per Job","[sarwa] GPU Count: Per Job","[savsp] GPU Count: Per Job","[shag1] GPU Count: Per Job","[shttr] GPU Count: Per Job","[siski] GPU Count: Per Job","[smew1] GPU Count: Per Job","[sogsh] GPU Count: Per Job","[sposa] GPU Count: Per Job","[swath] GPU Count: Per Job","[turdo] GPU Count: Per Job","[velsc] GPU Count: Per Job","[vertera] GPU Count: Per Job","[whimb] GPU Count: Per Job","[whtpl] GPU Count: Per Job","[whtsp] GPU Count: Per Job","[ybsbu] GPU Count: Per Job","[yebbu] GPU Count: Per Job","[yebsa] GPU Count: Per Job","[yebwa] GPU Count: Per Job" +2016-12,0.4000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2017-01,0.1538,0,0.0000,0,0,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0,0,0.0000,0.0000,0.0000,0,0.0000,0,0,0.0000,0,0,0.0000,0.0000,0,0.0000,0.0000,0,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0,0.0000,0,0,0.0000,0.0000,0.0000,0.0000,0,0,0.0000,0.0000,0,0.0000,0,0.0000,0.0000,0,0.0000,0,0,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_gpus/timeseries-Month-cs.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_gpus/timeseries-Month-cs.csv new file mode 100644 index 0000000000..b1f0032bb4 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_gpus/timeseries-Month-cs.csv @@ -0,0 +1,11 @@ +title +"GPU Count: Per Job: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[noror] GPU Count: Per Job","[allga] GPU Count: Per Job","[alpsw] GPU Count: Per Job","[aytinis] GPU Count: Per Job","[blhbu] GPU Count: Per Job","[boowa] GPU Count: Per Job","[caspl] GPU Count: Per Job","[categ] GPU Count: Per Job","[chaff] GPU Count: Per Job","[coot1] GPU Count: Per Job","[corsh] GPU Count: Per Job","[crama] GPU Count: Per Job","[crane] GPU Count: Per Job","[dunli] GPU Count: Per Job","[duswa] GPU Count: Per Job","[egygo] GPU Count: Per Job","[evegr] GPU Count: Per Job","[ferdu] GPU Count: Per Job","[field] GPU Count: Per Job","[garwa] GPU Count: Per Job","[gloib] GPU Count: Per Job","[grath] GPU Count: Per Job","[grgsh] GPU Count: Per Job","[henha] GPU Count: Per Job","[honbu] GPU Count: Per Job","[hoowa] GPU Count: Per Job","[jackd] GPU Count: Per Job","[lanhach] GPU Count: Per Job","[lapwi] GPU Count: Per Job","[legsh] GPU Count: Per Job","[lesre] GPU Count: Per Job","[litau] GPU Count: Per Job","[litst] GPU Count: Per Job","[mamwa] GPU Count: Per Job","[meapi] GPU Count: Per Job","[misth] GPU Count: Per Job","[moorh] GPU Count: Per Job","[ovenb] GPU Count: Per Job","[pereg] GPU Count: Per Job","[pibgr] GPU Count: Per Job","[proubis] GPU Count: Per Job","[reebu] GPU Count: Per Job","[relpa] GPU Count: Per Job","[ribgu] GPU Count: Per Job","[rolle] GPU Count: Per Job","[sancr] GPU Count: Per Job","[sante] GPU Count: Per Job","[sarwa] GPU Count: Per Job","[savsp] GPU Count: Per Job","[shag1] GPU Count: Per Job","[shttr] GPU Count: Per Job","[siski] GPU Count: Per Job","[smew1] GPU Count: Per Job","[sogsh] GPU Count: Per Job","[sposa] GPU Count: Per Job","[swath] GPU Count: Per Job","[turdo] GPU Count: Per Job","[velsc] GPU Count: Per Job","[vertera] GPU Count: Per Job","[whimb] GPU Count: Per Job","[whtpl] GPU Count: Per Job","[whtsp] GPU Count: Per Job","[ybsbu] GPU Count: Per Job","[yebbu] GPU Count: Per Job","[yebsa] GPU Count: Per Job","[yebwa] GPU Count: Per Job" +2016-12,0.4000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2017-01,0.1538,0,0.0000,0,0,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0,0,0.0000,0.0000,0.0000,0,0.0000,0,0,0.0000,0,0,0.0000,0.0000,0,0.0000,0.0000,0,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0,0.0000,0,0,0.0000,0.0000,0.0000,0.0000,0,0,0.0000,0.0000,0,0.0000,0,0.0000,0.0000,0,0.0000,0,0,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_gpus/timeseries-Month-pi.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_gpus/timeseries-Month-pi.csv new file mode 100644 index 0000000000..ae71ea2d56 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_gpus/timeseries-Month-pi.csv @@ -0,0 +1,12 @@ +title +"GPU Count: Per Job: by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2016-12-22,2017-01-01 +--------- +Month,"[litst] GPU Count: Per Job","[ovenb] GPU Count: Per Job","[sante] GPU Count: Per Job","[savsp] GPU Count: Per Job","[swath] GPU Count: Per Job","[ybsbu] GPU Count: Per Job" +2016-12,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2017-01,0,0.0000,0,0.0000,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_gpus/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_gpus/timeseries-Month-reference.csv new file mode 100644 index 0000000000..9ed245d5c0 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_gpus/timeseries-Month-reference.csv @@ -0,0 +1,14 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [ + + ], + "data": [ + + ], + "message": "Your user account does not have permission to view the requested data. If you\nbelieve that you should be able to see this information, then please select\n\"Submit Support Request\" in the \"Contact Us\" menu to request access.", + "code": 103 +} diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_gpus/timeseries-Month-usr.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_gpus/timeseries-Month-usr.csv new file mode 100644 index 0000000000..0f82fff9ba --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_gpus/timeseries-Month-usr.csv @@ -0,0 +1,12 @@ +title +"GPU Count: Per Job: by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2016-12-22,2017-01-01 +--------- +Month,"[whimb] GPU Count: Per Job" +2016-12,0.0000 +2017-01,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_gpus/timeseries-Quarter-cd.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_gpus/timeseries-Quarter-cd.csv new file mode 100644 index 0000000000..2fbf6f044a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_gpus/timeseries-Quarter-cd.csv @@ -0,0 +1,11 @@ +title +"GPU Count: Per Job: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[noror] GPU Count: Per Job","[allga] GPU Count: Per Job","[alpsw] GPU Count: Per Job","[aytinis] GPU Count: Per Job","[blhbu] GPU Count: Per Job","[boowa] GPU Count: Per Job","[caspl] GPU Count: Per Job","[categ] GPU Count: Per Job","[chaff] GPU Count: Per Job","[coot1] GPU Count: Per Job","[corsh] GPU Count: Per Job","[crama] GPU Count: Per Job","[crane] GPU Count: Per Job","[dunli] GPU Count: Per Job","[duswa] GPU Count: Per Job","[egygo] GPU Count: Per Job","[evegr] GPU Count: Per Job","[ferdu] GPU Count: Per Job","[field] GPU Count: Per Job","[garwa] GPU Count: Per Job","[gloib] GPU Count: Per Job","[grath] GPU Count: Per Job","[grgsh] GPU Count: Per Job","[henha] GPU Count: Per Job","[honbu] GPU Count: Per Job","[hoowa] GPU Count: Per Job","[jackd] GPU Count: Per Job","[lanhach] GPU Count: Per Job","[lapwi] GPU Count: Per Job","[legsh] GPU Count: Per Job","[lesre] GPU Count: Per Job","[litau] GPU Count: Per Job","[litst] GPU Count: Per Job","[mamwa] GPU Count: Per Job","[meapi] GPU Count: Per Job","[misth] GPU Count: Per Job","[moorh] GPU Count: Per Job","[ovenb] GPU Count: Per Job","[pereg] GPU Count: Per Job","[pibgr] GPU Count: Per Job","[proubis] GPU Count: Per Job","[reebu] GPU Count: Per Job","[relpa] GPU Count: Per Job","[ribgu] GPU Count: Per Job","[rolle] GPU Count: Per Job","[sancr] GPU Count: Per Job","[sante] GPU Count: Per Job","[sarwa] GPU Count: Per Job","[savsp] GPU Count: Per Job","[shag1] GPU Count: Per Job","[shttr] GPU Count: Per Job","[siski] GPU Count: Per Job","[smew1] GPU Count: Per Job","[sogsh] GPU Count: Per Job","[sposa] GPU Count: Per Job","[swath] GPU Count: Per Job","[turdo] GPU Count: Per Job","[velsc] GPU Count: Per Job","[vertera] GPU Count: Per Job","[whimb] GPU Count: Per Job","[whtpl] GPU Count: Per Job","[whtsp] GPU Count: Per Job","[ybsbu] GPU Count: Per Job","[yebbu] GPU Count: Per Job","[yebsa] GPU Count: Per Job","[yebwa] GPU Count: Per Job" +"2016 Q4",0.4000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +"2017 Q1",0.1538,0,0.0000,0,0,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0,0,0.0000,0.0000,0.0000,0,0.0000,0,0,0.0000,0,0,0.0000,0.0000,0,0.0000,0.0000,0,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0,0.0000,0,0,0.0000,0.0000,0.0000,0.0000,0,0,0.0000,0.0000,0,0.0000,0,0.0000,0.0000,0,0.0000,0,0,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_gpus/timeseries-Quarter-cs.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_gpus/timeseries-Quarter-cs.csv new file mode 100644 index 0000000000..2fbf6f044a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_gpus/timeseries-Quarter-cs.csv @@ -0,0 +1,11 @@ +title +"GPU Count: Per Job: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[noror] GPU Count: Per Job","[allga] GPU Count: Per Job","[alpsw] GPU Count: Per Job","[aytinis] GPU Count: Per Job","[blhbu] GPU Count: Per Job","[boowa] GPU Count: Per Job","[caspl] GPU Count: Per Job","[categ] GPU Count: Per Job","[chaff] GPU Count: Per Job","[coot1] GPU Count: Per Job","[corsh] GPU Count: Per Job","[crama] GPU Count: Per Job","[crane] GPU Count: Per Job","[dunli] GPU Count: Per Job","[duswa] GPU Count: Per Job","[egygo] GPU Count: Per Job","[evegr] GPU Count: Per Job","[ferdu] GPU Count: Per Job","[field] GPU Count: Per Job","[garwa] GPU Count: Per Job","[gloib] GPU Count: Per Job","[grath] GPU Count: Per Job","[grgsh] GPU Count: Per Job","[henha] GPU Count: Per Job","[honbu] GPU Count: Per Job","[hoowa] GPU Count: Per Job","[jackd] GPU Count: Per Job","[lanhach] GPU Count: Per Job","[lapwi] GPU Count: Per Job","[legsh] GPU Count: Per Job","[lesre] GPU Count: Per Job","[litau] GPU Count: Per Job","[litst] GPU Count: Per Job","[mamwa] GPU Count: Per Job","[meapi] GPU Count: Per Job","[misth] GPU Count: Per Job","[moorh] GPU Count: Per Job","[ovenb] GPU Count: Per Job","[pereg] GPU Count: Per Job","[pibgr] GPU Count: Per Job","[proubis] GPU Count: Per Job","[reebu] GPU Count: Per Job","[relpa] GPU Count: Per Job","[ribgu] GPU Count: Per Job","[rolle] GPU Count: Per Job","[sancr] GPU Count: Per Job","[sante] GPU Count: Per Job","[sarwa] GPU Count: Per Job","[savsp] GPU Count: Per Job","[shag1] GPU Count: Per Job","[shttr] GPU Count: Per Job","[siski] GPU Count: Per Job","[smew1] GPU Count: Per Job","[sogsh] GPU Count: Per Job","[sposa] GPU Count: Per Job","[swath] GPU Count: Per Job","[turdo] GPU Count: Per Job","[velsc] GPU Count: Per Job","[vertera] GPU Count: Per Job","[whimb] GPU Count: Per Job","[whtpl] GPU Count: Per Job","[whtsp] GPU Count: Per Job","[ybsbu] GPU Count: Per Job","[yebbu] GPU Count: Per Job","[yebsa] GPU Count: Per Job","[yebwa] GPU Count: Per Job" +"2016 Q4",0.4000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +"2017 Q1",0.1538,0,0.0000,0,0,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0,0,0.0000,0.0000,0.0000,0,0.0000,0,0,0.0000,0,0,0.0000,0.0000,0,0.0000,0.0000,0,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0,0.0000,0,0,0.0000,0.0000,0.0000,0.0000,0,0,0.0000,0.0000,0,0.0000,0,0.0000,0.0000,0,0.0000,0,0,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_gpus/timeseries-Quarter-pi.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_gpus/timeseries-Quarter-pi.csv new file mode 100644 index 0000000000..cfbc2defef --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_gpus/timeseries-Quarter-pi.csv @@ -0,0 +1,12 @@ +title +"GPU Count: Per Job: by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[litst] GPU Count: Per Job","[ovenb] GPU Count: Per Job","[sante] GPU Count: Per Job","[savsp] GPU Count: Per Job","[swath] GPU Count: Per Job","[ybsbu] GPU Count: Per Job" +"2016 Q4",0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +"2017 Q1",0,0.0000,0,0.0000,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_gpus/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_gpus/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..9ed245d5c0 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_gpus/timeseries-Quarter-reference.csv @@ -0,0 +1,14 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [ + + ], + "data": [ + + ], + "message": "Your user account does not have permission to view the requested data. If you\nbelieve that you should be able to see this information, then please select\n\"Submit Support Request\" in the \"Contact Us\" menu to request access.", + "code": 103 +} diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_gpus/timeseries-Quarter-usr.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_gpus/timeseries-Quarter-usr.csv new file mode 100644 index 0000000000..661ea72105 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_gpus/timeseries-Quarter-usr.csv @@ -0,0 +1,12 @@ +title +"GPU Count: Per Job: by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[whimb] GPU Count: Per Job" +"2016 Q4",0.0000 +"2017 Q1",0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_gpus/timeseries-Year-cd.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_gpus/timeseries-Year-cd.csv new file mode 100644 index 0000000000..0f46e1d057 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_gpus/timeseries-Year-cd.csv @@ -0,0 +1,11 @@ +title +"GPU Count: Per Job: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[noror] GPU Count: Per Job","[allga] GPU Count: Per Job","[alpsw] GPU Count: Per Job","[aytinis] GPU Count: Per Job","[blhbu] GPU Count: Per Job","[boowa] GPU Count: Per Job","[caspl] GPU Count: Per Job","[categ] GPU Count: Per Job","[chaff] GPU Count: Per Job","[coot1] GPU Count: Per Job","[corsh] GPU Count: Per Job","[crama] GPU Count: Per Job","[crane] GPU Count: Per Job","[dunli] GPU Count: Per Job","[duswa] GPU Count: Per Job","[egygo] GPU Count: Per Job","[evegr] GPU Count: Per Job","[ferdu] GPU Count: Per Job","[field] GPU Count: Per Job","[garwa] GPU Count: Per Job","[gloib] GPU Count: Per Job","[grath] GPU Count: Per Job","[grgsh] GPU Count: Per Job","[henha] GPU Count: Per Job","[honbu] GPU Count: Per Job","[hoowa] GPU Count: Per Job","[jackd] GPU Count: Per Job","[lanhach] GPU Count: Per Job","[lapwi] GPU Count: Per Job","[legsh] GPU Count: Per Job","[lesre] GPU Count: Per Job","[litau] GPU Count: Per Job","[litst] GPU Count: Per Job","[mamwa] GPU Count: Per Job","[meapi] GPU Count: Per Job","[misth] GPU Count: Per Job","[moorh] GPU Count: Per Job","[ovenb] GPU Count: Per Job","[pereg] GPU Count: Per Job","[pibgr] GPU Count: Per Job","[proubis] GPU Count: Per Job","[reebu] GPU Count: Per Job","[relpa] GPU Count: Per Job","[ribgu] GPU Count: Per Job","[rolle] GPU Count: Per Job","[sancr] GPU Count: Per Job","[sante] GPU Count: Per Job","[sarwa] GPU Count: Per Job","[savsp] GPU Count: Per Job","[shag1] GPU Count: Per Job","[shttr] GPU Count: Per Job","[siski] GPU Count: Per Job","[smew1] GPU Count: Per Job","[sogsh] GPU Count: Per Job","[sposa] GPU Count: Per Job","[swath] GPU Count: Per Job","[turdo] GPU Count: Per Job","[velsc] GPU Count: Per Job","[vertera] GPU Count: Per Job","[whimb] GPU Count: Per Job","[whtpl] GPU Count: Per Job","[whtsp] GPU Count: Per Job","[ybsbu] GPU Count: Per Job","[yebbu] GPU Count: Per Job","[yebsa] GPU Count: Per Job","[yebwa] GPU Count: Per Job" +2016,0.4000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2017,0.1538,0,0.0000,0,0,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0,0,0.0000,0.0000,0.0000,0,0.0000,0,0,0.0000,0,0,0.0000,0.0000,0,0.0000,0.0000,0,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0,0.0000,0,0,0.0000,0.0000,0.0000,0.0000,0,0,0.0000,0.0000,0,0.0000,0,0.0000,0.0000,0,0.0000,0,0,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_gpus/timeseries-Year-cs.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_gpus/timeseries-Year-cs.csv new file mode 100644 index 0000000000..0f46e1d057 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_gpus/timeseries-Year-cs.csv @@ -0,0 +1,11 @@ +title +"GPU Count: Per Job: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[noror] GPU Count: Per Job","[allga] GPU Count: Per Job","[alpsw] GPU Count: Per Job","[aytinis] GPU Count: Per Job","[blhbu] GPU Count: Per Job","[boowa] GPU Count: Per Job","[caspl] GPU Count: Per Job","[categ] GPU Count: Per Job","[chaff] GPU Count: Per Job","[coot1] GPU Count: Per Job","[corsh] GPU Count: Per Job","[crama] GPU Count: Per Job","[crane] GPU Count: Per Job","[dunli] GPU Count: Per Job","[duswa] GPU Count: Per Job","[egygo] GPU Count: Per Job","[evegr] GPU Count: Per Job","[ferdu] GPU Count: Per Job","[field] GPU Count: Per Job","[garwa] GPU Count: Per Job","[gloib] GPU Count: Per Job","[grath] GPU Count: Per Job","[grgsh] GPU Count: Per Job","[henha] GPU Count: Per Job","[honbu] GPU Count: Per Job","[hoowa] GPU Count: Per Job","[jackd] GPU Count: Per Job","[lanhach] GPU Count: Per Job","[lapwi] GPU Count: Per Job","[legsh] GPU Count: Per Job","[lesre] GPU Count: Per Job","[litau] GPU Count: Per Job","[litst] GPU Count: Per Job","[mamwa] GPU Count: Per Job","[meapi] GPU Count: Per Job","[misth] GPU Count: Per Job","[moorh] GPU Count: Per Job","[ovenb] GPU Count: Per Job","[pereg] GPU Count: Per Job","[pibgr] GPU Count: Per Job","[proubis] GPU Count: Per Job","[reebu] GPU Count: Per Job","[relpa] GPU Count: Per Job","[ribgu] GPU Count: Per Job","[rolle] GPU Count: Per Job","[sancr] GPU Count: Per Job","[sante] GPU Count: Per Job","[sarwa] GPU Count: Per Job","[savsp] GPU Count: Per Job","[shag1] GPU Count: Per Job","[shttr] GPU Count: Per Job","[siski] GPU Count: Per Job","[smew1] GPU Count: Per Job","[sogsh] GPU Count: Per Job","[sposa] GPU Count: Per Job","[swath] GPU Count: Per Job","[turdo] GPU Count: Per Job","[velsc] GPU Count: Per Job","[vertera] GPU Count: Per Job","[whimb] GPU Count: Per Job","[whtpl] GPU Count: Per Job","[whtsp] GPU Count: Per Job","[ybsbu] GPU Count: Per Job","[yebbu] GPU Count: Per Job","[yebsa] GPU Count: Per Job","[yebwa] GPU Count: Per Job" +2016,0.4000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2017,0.1538,0,0.0000,0,0,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0,0,0.0000,0.0000,0.0000,0,0.0000,0,0,0.0000,0,0,0.0000,0.0000,0,0.0000,0.0000,0,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0,0.0000,0,0,0.0000,0.0000,0.0000,0.0000,0,0,0.0000,0.0000,0,0.0000,0,0.0000,0.0000,0,0.0000,0,0,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_gpus/timeseries-Year-pi.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_gpus/timeseries-Year-pi.csv new file mode 100644 index 0000000000..f9f3674a30 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_gpus/timeseries-Year-pi.csv @@ -0,0 +1,12 @@ +title +"GPU Count: Per Job: by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2016-12-22,2017-01-01 +--------- +Year,"[litst] GPU Count: Per Job","[ovenb] GPU Count: Per Job","[sante] GPU Count: Per Job","[savsp] GPU Count: Per Job","[swath] GPU Count: Per Job","[ybsbu] GPU Count: Per Job" +2016,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2017,0,0.0000,0,0.0000,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_gpus/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_gpus/timeseries-Year-reference.csv new file mode 100644 index 0000000000..9ed245d5c0 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_gpus/timeseries-Year-reference.csv @@ -0,0 +1,14 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [ + + ], + "data": [ + + ], + "message": "Your user account does not have permission to view the requested data. If you\nbelieve that you should be able to see this information, then please select\n\"Submit Support Request\" in the \"Contact Us\" menu to request access.", + "code": 103 +} diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_gpus/timeseries-Year-usr.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_gpus/timeseries-Year-usr.csv new file mode 100644 index 0000000000..f01135e4e1 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_gpus/timeseries-Year-usr.csv @@ -0,0 +1,12 @@ +title +"GPU Count: Per Job: by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2016-12-22,2017-01-01 +--------- +Year,"[whimb] GPU Count: Per Job" +2016,0.0000 +2017,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_job_size_weighted_by_gpu_hours/aggregate-Day-cd.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_job_size_weighted_by_gpu_hours/aggregate-Day-cd.csv new file mode 100644 index 0000000000..7ad23d3776 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_job_size_weighted_by_gpu_hours/aggregate-Day-cd.csv @@ -0,0 +1,75 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Job Size: Weighted By GPU Hours (GPU Count)" +noror,12.0000 +allga,0.0000 +alpsw,0.0000 +aytinis,0.0000 +blhbu,0.0000 +boowa,0.0000 +caspl,0.0000 +categ,0.0000 +chaff,0.0000 +coot1,0.0000 +corsh,0.0000 +crama,0.0000 +crane,0.0000 +dunli,0.0000 +duswa,0.0000 +egygo,0.0000 +evegr,0.0000 +ferdu,0.0000 +field,0.0000 +garwa,0.0000 +gloib,0.0000 +grath,0.0000 +grgsh,0.0000 +henha,0.0000 +honbu,0.0000 +hoowa,0.0000 +jackd,0.0000 +lanhach,0.0000 +lapwi,0.0000 +legsh,0.0000 +lesre,0.0000 +litau,0.0000 +litst,0.0000 +mamwa,0.0000 +meapi,0.0000 +misth,0.0000 +moorh,0.0000 +ovenb,0.0000 +pereg,0.0000 +pibgr,0.0000 +proubis,0.0000 +reebu,0.0000 +relpa,0.0000 +ribgu,0.0000 +rolle,0.0000 +sancr,0.0000 +sante,0.0000 +sarwa,0.0000 +savsp,0.0000 +shag1,0.0000 +shttr,0.0000 +siski,0.0000 +smew1,0.0000 +sogsh,0.0000 +sposa,0.0000 +swath,0.0000 +turdo,0.0000 +velsc,0.0000 +vertera,0.0000 +whimb,0.0000 +whtpl,0.0000 +whtsp,0.0000 +ybsbu,0.0000 +yebbu,0.0000 +yebsa,0.0000 +yebwa,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_job_size_weighted_by_gpu_hours/aggregate-Day-cs.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_job_size_weighted_by_gpu_hours/aggregate-Day-cs.csv new file mode 100644 index 0000000000..7ad23d3776 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_job_size_weighted_by_gpu_hours/aggregate-Day-cs.csv @@ -0,0 +1,75 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Job Size: Weighted By GPU Hours (GPU Count)" +noror,12.0000 +allga,0.0000 +alpsw,0.0000 +aytinis,0.0000 +blhbu,0.0000 +boowa,0.0000 +caspl,0.0000 +categ,0.0000 +chaff,0.0000 +coot1,0.0000 +corsh,0.0000 +crama,0.0000 +crane,0.0000 +dunli,0.0000 +duswa,0.0000 +egygo,0.0000 +evegr,0.0000 +ferdu,0.0000 +field,0.0000 +garwa,0.0000 +gloib,0.0000 +grath,0.0000 +grgsh,0.0000 +henha,0.0000 +honbu,0.0000 +hoowa,0.0000 +jackd,0.0000 +lanhach,0.0000 +lapwi,0.0000 +legsh,0.0000 +lesre,0.0000 +litau,0.0000 +litst,0.0000 +mamwa,0.0000 +meapi,0.0000 +misth,0.0000 +moorh,0.0000 +ovenb,0.0000 +pereg,0.0000 +pibgr,0.0000 +proubis,0.0000 +reebu,0.0000 +relpa,0.0000 +ribgu,0.0000 +rolle,0.0000 +sancr,0.0000 +sante,0.0000 +sarwa,0.0000 +savsp,0.0000 +shag1,0.0000 +shttr,0.0000 +siski,0.0000 +smew1,0.0000 +sogsh,0.0000 +sposa,0.0000 +swath,0.0000 +turdo,0.0000 +velsc,0.0000 +vertera,0.0000 +whimb,0.0000 +whtpl,0.0000 +whtsp,0.0000 +ybsbu,0.0000 +yebbu,0.0000 +yebsa,0.0000 +yebwa,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_job_size_weighted_by_gpu_hours/aggregate-Day-pi.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_job_size_weighted_by_gpu_hours/aggregate-Day-pi.csv new file mode 100644 index 0000000000..ef0bda7e8e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_job_size_weighted_by_gpu_hours/aggregate-Day-pi.csv @@ -0,0 +1,16 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Job Size: Weighted By GPU Hours (GPU Count)" +litst,0.0000 +ovenb,0.0000 +sante,0.0000 +savsp,0.0000 +swath,0.0000 +ybsbu,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_job_size_weighted_by_gpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_job_size_weighted_by_gpu_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..9ed245d5c0 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_job_size_weighted_by_gpu_hours/aggregate-Day-reference.csv @@ -0,0 +1,14 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [ + + ], + "data": [ + + ], + "message": "Your user account does not have permission to view the requested data. If you\nbelieve that you should be able to see this information, then please select\n\"Submit Support Request\" in the \"Contact Us\" menu to request access.", + "code": 103 +} diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_job_size_weighted_by_gpu_hours/aggregate-Day-usr.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_job_size_weighted_by_gpu_hours/aggregate-Day-usr.csv new file mode 100644 index 0000000000..cc59089bdd --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_job_size_weighted_by_gpu_hours/aggregate-Day-usr.csv @@ -0,0 +1,11 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Job Size: Weighted By GPU Hours (GPU Count)" +whimb,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_job_size_weighted_by_gpu_hours/aggregate-Month-cd.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_job_size_weighted_by_gpu_hours/aggregate-Month-cd.csv new file mode 100644 index 0000000000..7ad23d3776 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_job_size_weighted_by_gpu_hours/aggregate-Month-cd.csv @@ -0,0 +1,75 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Job Size: Weighted By GPU Hours (GPU Count)" +noror,12.0000 +allga,0.0000 +alpsw,0.0000 +aytinis,0.0000 +blhbu,0.0000 +boowa,0.0000 +caspl,0.0000 +categ,0.0000 +chaff,0.0000 +coot1,0.0000 +corsh,0.0000 +crama,0.0000 +crane,0.0000 +dunli,0.0000 +duswa,0.0000 +egygo,0.0000 +evegr,0.0000 +ferdu,0.0000 +field,0.0000 +garwa,0.0000 +gloib,0.0000 +grath,0.0000 +grgsh,0.0000 +henha,0.0000 +honbu,0.0000 +hoowa,0.0000 +jackd,0.0000 +lanhach,0.0000 +lapwi,0.0000 +legsh,0.0000 +lesre,0.0000 +litau,0.0000 +litst,0.0000 +mamwa,0.0000 +meapi,0.0000 +misth,0.0000 +moorh,0.0000 +ovenb,0.0000 +pereg,0.0000 +pibgr,0.0000 +proubis,0.0000 +reebu,0.0000 +relpa,0.0000 +ribgu,0.0000 +rolle,0.0000 +sancr,0.0000 +sante,0.0000 +sarwa,0.0000 +savsp,0.0000 +shag1,0.0000 +shttr,0.0000 +siski,0.0000 +smew1,0.0000 +sogsh,0.0000 +sposa,0.0000 +swath,0.0000 +turdo,0.0000 +velsc,0.0000 +vertera,0.0000 +whimb,0.0000 +whtpl,0.0000 +whtsp,0.0000 +ybsbu,0.0000 +yebbu,0.0000 +yebsa,0.0000 +yebwa,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_job_size_weighted_by_gpu_hours/aggregate-Month-cs.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_job_size_weighted_by_gpu_hours/aggregate-Month-cs.csv new file mode 100644 index 0000000000..7ad23d3776 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_job_size_weighted_by_gpu_hours/aggregate-Month-cs.csv @@ -0,0 +1,75 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Job Size: Weighted By GPU Hours (GPU Count)" +noror,12.0000 +allga,0.0000 +alpsw,0.0000 +aytinis,0.0000 +blhbu,0.0000 +boowa,0.0000 +caspl,0.0000 +categ,0.0000 +chaff,0.0000 +coot1,0.0000 +corsh,0.0000 +crama,0.0000 +crane,0.0000 +dunli,0.0000 +duswa,0.0000 +egygo,0.0000 +evegr,0.0000 +ferdu,0.0000 +field,0.0000 +garwa,0.0000 +gloib,0.0000 +grath,0.0000 +grgsh,0.0000 +henha,0.0000 +honbu,0.0000 +hoowa,0.0000 +jackd,0.0000 +lanhach,0.0000 +lapwi,0.0000 +legsh,0.0000 +lesre,0.0000 +litau,0.0000 +litst,0.0000 +mamwa,0.0000 +meapi,0.0000 +misth,0.0000 +moorh,0.0000 +ovenb,0.0000 +pereg,0.0000 +pibgr,0.0000 +proubis,0.0000 +reebu,0.0000 +relpa,0.0000 +ribgu,0.0000 +rolle,0.0000 +sancr,0.0000 +sante,0.0000 +sarwa,0.0000 +savsp,0.0000 +shag1,0.0000 +shttr,0.0000 +siski,0.0000 +smew1,0.0000 +sogsh,0.0000 +sposa,0.0000 +swath,0.0000 +turdo,0.0000 +velsc,0.0000 +vertera,0.0000 +whimb,0.0000 +whtpl,0.0000 +whtsp,0.0000 +ybsbu,0.0000 +yebbu,0.0000 +yebsa,0.0000 +yebwa,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_job_size_weighted_by_gpu_hours/aggregate-Month-pi.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_job_size_weighted_by_gpu_hours/aggregate-Month-pi.csv new file mode 100644 index 0000000000..ef0bda7e8e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_job_size_weighted_by_gpu_hours/aggregate-Month-pi.csv @@ -0,0 +1,16 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Job Size: Weighted By GPU Hours (GPU Count)" +litst,0.0000 +ovenb,0.0000 +sante,0.0000 +savsp,0.0000 +swath,0.0000 +ybsbu,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_job_size_weighted_by_gpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_job_size_weighted_by_gpu_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..9ed245d5c0 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_job_size_weighted_by_gpu_hours/aggregate-Month-reference.csv @@ -0,0 +1,14 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [ + + ], + "data": [ + + ], + "message": "Your user account does not have permission to view the requested data. If you\nbelieve that you should be able to see this information, then please select\n\"Submit Support Request\" in the \"Contact Us\" menu to request access.", + "code": 103 +} diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_job_size_weighted_by_gpu_hours/aggregate-Month-usr.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_job_size_weighted_by_gpu_hours/aggregate-Month-usr.csv new file mode 100644 index 0000000000..cc59089bdd --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_job_size_weighted_by_gpu_hours/aggregate-Month-usr.csv @@ -0,0 +1,11 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Job Size: Weighted By GPU Hours (GPU Count)" +whimb,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_job_size_weighted_by_gpu_hours/aggregate-Quarter-cd.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_job_size_weighted_by_gpu_hours/aggregate-Quarter-cd.csv new file mode 100644 index 0000000000..7ad23d3776 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_job_size_weighted_by_gpu_hours/aggregate-Quarter-cd.csv @@ -0,0 +1,75 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Job Size: Weighted By GPU Hours (GPU Count)" +noror,12.0000 +allga,0.0000 +alpsw,0.0000 +aytinis,0.0000 +blhbu,0.0000 +boowa,0.0000 +caspl,0.0000 +categ,0.0000 +chaff,0.0000 +coot1,0.0000 +corsh,0.0000 +crama,0.0000 +crane,0.0000 +dunli,0.0000 +duswa,0.0000 +egygo,0.0000 +evegr,0.0000 +ferdu,0.0000 +field,0.0000 +garwa,0.0000 +gloib,0.0000 +grath,0.0000 +grgsh,0.0000 +henha,0.0000 +honbu,0.0000 +hoowa,0.0000 +jackd,0.0000 +lanhach,0.0000 +lapwi,0.0000 +legsh,0.0000 +lesre,0.0000 +litau,0.0000 +litst,0.0000 +mamwa,0.0000 +meapi,0.0000 +misth,0.0000 +moorh,0.0000 +ovenb,0.0000 +pereg,0.0000 +pibgr,0.0000 +proubis,0.0000 +reebu,0.0000 +relpa,0.0000 +ribgu,0.0000 +rolle,0.0000 +sancr,0.0000 +sante,0.0000 +sarwa,0.0000 +savsp,0.0000 +shag1,0.0000 +shttr,0.0000 +siski,0.0000 +smew1,0.0000 +sogsh,0.0000 +sposa,0.0000 +swath,0.0000 +turdo,0.0000 +velsc,0.0000 +vertera,0.0000 +whimb,0.0000 +whtpl,0.0000 +whtsp,0.0000 +ybsbu,0.0000 +yebbu,0.0000 +yebsa,0.0000 +yebwa,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_job_size_weighted_by_gpu_hours/aggregate-Quarter-cs.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_job_size_weighted_by_gpu_hours/aggregate-Quarter-cs.csv new file mode 100644 index 0000000000..7ad23d3776 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_job_size_weighted_by_gpu_hours/aggregate-Quarter-cs.csv @@ -0,0 +1,75 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Job Size: Weighted By GPU Hours (GPU Count)" +noror,12.0000 +allga,0.0000 +alpsw,0.0000 +aytinis,0.0000 +blhbu,0.0000 +boowa,0.0000 +caspl,0.0000 +categ,0.0000 +chaff,0.0000 +coot1,0.0000 +corsh,0.0000 +crama,0.0000 +crane,0.0000 +dunli,0.0000 +duswa,0.0000 +egygo,0.0000 +evegr,0.0000 +ferdu,0.0000 +field,0.0000 +garwa,0.0000 +gloib,0.0000 +grath,0.0000 +grgsh,0.0000 +henha,0.0000 +honbu,0.0000 +hoowa,0.0000 +jackd,0.0000 +lanhach,0.0000 +lapwi,0.0000 +legsh,0.0000 +lesre,0.0000 +litau,0.0000 +litst,0.0000 +mamwa,0.0000 +meapi,0.0000 +misth,0.0000 +moorh,0.0000 +ovenb,0.0000 +pereg,0.0000 +pibgr,0.0000 +proubis,0.0000 +reebu,0.0000 +relpa,0.0000 +ribgu,0.0000 +rolle,0.0000 +sancr,0.0000 +sante,0.0000 +sarwa,0.0000 +savsp,0.0000 +shag1,0.0000 +shttr,0.0000 +siski,0.0000 +smew1,0.0000 +sogsh,0.0000 +sposa,0.0000 +swath,0.0000 +turdo,0.0000 +velsc,0.0000 +vertera,0.0000 +whimb,0.0000 +whtpl,0.0000 +whtsp,0.0000 +ybsbu,0.0000 +yebbu,0.0000 +yebsa,0.0000 +yebwa,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_job_size_weighted_by_gpu_hours/aggregate-Quarter-pi.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_job_size_weighted_by_gpu_hours/aggregate-Quarter-pi.csv new file mode 100644 index 0000000000..ef0bda7e8e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_job_size_weighted_by_gpu_hours/aggregate-Quarter-pi.csv @@ -0,0 +1,16 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Job Size: Weighted By GPU Hours (GPU Count)" +litst,0.0000 +ovenb,0.0000 +sante,0.0000 +savsp,0.0000 +swath,0.0000 +ybsbu,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_job_size_weighted_by_gpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_job_size_weighted_by_gpu_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..9ed245d5c0 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_job_size_weighted_by_gpu_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,14 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [ + + ], + "data": [ + + ], + "message": "Your user account does not have permission to view the requested data. If you\nbelieve that you should be able to see this information, then please select\n\"Submit Support Request\" in the \"Contact Us\" menu to request access.", + "code": 103 +} diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_job_size_weighted_by_gpu_hours/aggregate-Quarter-usr.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_job_size_weighted_by_gpu_hours/aggregate-Quarter-usr.csv new file mode 100644 index 0000000000..cc59089bdd --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_job_size_weighted_by_gpu_hours/aggregate-Quarter-usr.csv @@ -0,0 +1,11 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Job Size: Weighted By GPU Hours (GPU Count)" +whimb,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_job_size_weighted_by_gpu_hours/aggregate-Year-cd.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_job_size_weighted_by_gpu_hours/aggregate-Year-cd.csv new file mode 100644 index 0000000000..7ad23d3776 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_job_size_weighted_by_gpu_hours/aggregate-Year-cd.csv @@ -0,0 +1,75 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Job Size: Weighted By GPU Hours (GPU Count)" +noror,12.0000 +allga,0.0000 +alpsw,0.0000 +aytinis,0.0000 +blhbu,0.0000 +boowa,0.0000 +caspl,0.0000 +categ,0.0000 +chaff,0.0000 +coot1,0.0000 +corsh,0.0000 +crama,0.0000 +crane,0.0000 +dunli,0.0000 +duswa,0.0000 +egygo,0.0000 +evegr,0.0000 +ferdu,0.0000 +field,0.0000 +garwa,0.0000 +gloib,0.0000 +grath,0.0000 +grgsh,0.0000 +henha,0.0000 +honbu,0.0000 +hoowa,0.0000 +jackd,0.0000 +lanhach,0.0000 +lapwi,0.0000 +legsh,0.0000 +lesre,0.0000 +litau,0.0000 +litst,0.0000 +mamwa,0.0000 +meapi,0.0000 +misth,0.0000 +moorh,0.0000 +ovenb,0.0000 +pereg,0.0000 +pibgr,0.0000 +proubis,0.0000 +reebu,0.0000 +relpa,0.0000 +ribgu,0.0000 +rolle,0.0000 +sancr,0.0000 +sante,0.0000 +sarwa,0.0000 +savsp,0.0000 +shag1,0.0000 +shttr,0.0000 +siski,0.0000 +smew1,0.0000 +sogsh,0.0000 +sposa,0.0000 +swath,0.0000 +turdo,0.0000 +velsc,0.0000 +vertera,0.0000 +whimb,0.0000 +whtpl,0.0000 +whtsp,0.0000 +ybsbu,0.0000 +yebbu,0.0000 +yebsa,0.0000 +yebwa,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_job_size_weighted_by_gpu_hours/aggregate-Year-cs.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_job_size_weighted_by_gpu_hours/aggregate-Year-cs.csv new file mode 100644 index 0000000000..7ad23d3776 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_job_size_weighted_by_gpu_hours/aggregate-Year-cs.csv @@ -0,0 +1,75 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Job Size: Weighted By GPU Hours (GPU Count)" +noror,12.0000 +allga,0.0000 +alpsw,0.0000 +aytinis,0.0000 +blhbu,0.0000 +boowa,0.0000 +caspl,0.0000 +categ,0.0000 +chaff,0.0000 +coot1,0.0000 +corsh,0.0000 +crama,0.0000 +crane,0.0000 +dunli,0.0000 +duswa,0.0000 +egygo,0.0000 +evegr,0.0000 +ferdu,0.0000 +field,0.0000 +garwa,0.0000 +gloib,0.0000 +grath,0.0000 +grgsh,0.0000 +henha,0.0000 +honbu,0.0000 +hoowa,0.0000 +jackd,0.0000 +lanhach,0.0000 +lapwi,0.0000 +legsh,0.0000 +lesre,0.0000 +litau,0.0000 +litst,0.0000 +mamwa,0.0000 +meapi,0.0000 +misth,0.0000 +moorh,0.0000 +ovenb,0.0000 +pereg,0.0000 +pibgr,0.0000 +proubis,0.0000 +reebu,0.0000 +relpa,0.0000 +ribgu,0.0000 +rolle,0.0000 +sancr,0.0000 +sante,0.0000 +sarwa,0.0000 +savsp,0.0000 +shag1,0.0000 +shttr,0.0000 +siski,0.0000 +smew1,0.0000 +sogsh,0.0000 +sposa,0.0000 +swath,0.0000 +turdo,0.0000 +velsc,0.0000 +vertera,0.0000 +whimb,0.0000 +whtpl,0.0000 +whtsp,0.0000 +ybsbu,0.0000 +yebbu,0.0000 +yebsa,0.0000 +yebwa,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_job_size_weighted_by_gpu_hours/aggregate-Year-pi.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_job_size_weighted_by_gpu_hours/aggregate-Year-pi.csv new file mode 100644 index 0000000000..ef0bda7e8e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_job_size_weighted_by_gpu_hours/aggregate-Year-pi.csv @@ -0,0 +1,16 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Job Size: Weighted By GPU Hours (GPU Count)" +litst,0.0000 +ovenb,0.0000 +sante,0.0000 +savsp,0.0000 +swath,0.0000 +ybsbu,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_job_size_weighted_by_gpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_job_size_weighted_by_gpu_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..9ed245d5c0 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_job_size_weighted_by_gpu_hours/aggregate-Year-reference.csv @@ -0,0 +1,14 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [ + + ], + "data": [ + + ], + "message": "Your user account does not have permission to view the requested data. If you\nbelieve that you should be able to see this information, then please select\n\"Submit Support Request\" in the \"Contact Us\" menu to request access.", + "code": 103 +} diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_job_size_weighted_by_gpu_hours/aggregate-Year-usr.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_job_size_weighted_by_gpu_hours/aggregate-Year-usr.csv new file mode 100644 index 0000000000..cc59089bdd --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_job_size_weighted_by_gpu_hours/aggregate-Year-usr.csv @@ -0,0 +1,11 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2016-12-22,2017-01-01 +--------- +"System Username","Job Size: Weighted By GPU Hours (GPU Count)" +whimb,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_job_size_weighted_by_gpu_hours/timeseries-Day-cd.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_job_size_weighted_by_gpu_hours/timeseries-Day-cd.csv new file mode 100644 index 0000000000..de2ec579c2 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_job_size_weighted_by_gpu_hours/timeseries-Day-cd.csv @@ -0,0 +1,20 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[noror] Job Size: Weighted By GPU Hours (GPU Count)","[allga] Job Size: Weighted By GPU Hours (GPU Count)","[alpsw] Job Size: Weighted By GPU Hours (GPU Count)","[aytinis] Job Size: Weighted By GPU Hours (GPU Count)","[blhbu] Job Size: Weighted By GPU Hours (GPU Count)","[boowa] Job Size: Weighted By GPU Hours (GPU Count)","[caspl] Job Size: Weighted By GPU Hours (GPU Count)","[categ] Job Size: Weighted By GPU Hours (GPU Count)","[chaff] Job Size: Weighted By GPU Hours (GPU Count)","[coot1] Job Size: Weighted By GPU Hours (GPU Count)","[corsh] Job Size: Weighted By GPU Hours (GPU Count)","[crama] Job Size: Weighted By GPU Hours (GPU Count)","[crane] Job Size: Weighted By GPU Hours (GPU Count)","[dunli] Job Size: Weighted By GPU Hours (GPU Count)","[duswa] Job Size: Weighted By GPU Hours (GPU Count)","[egygo] Job Size: Weighted By GPU Hours (GPU Count)","[evegr] Job Size: Weighted By GPU Hours (GPU Count)","[ferdu] Job Size: Weighted By GPU Hours (GPU Count)","[field] Job Size: Weighted By GPU Hours (GPU Count)","[garwa] Job Size: Weighted By GPU Hours (GPU Count)","[gloib] Job Size: Weighted By GPU Hours (GPU Count)","[grath] Job Size: Weighted By GPU Hours (GPU Count)","[grgsh] Job Size: Weighted By GPU Hours (GPU Count)","[henha] Job Size: Weighted By GPU Hours (GPU Count)","[honbu] Job Size: Weighted By GPU Hours (GPU Count)","[hoowa] Job Size: Weighted By GPU Hours (GPU Count)","[jackd] Job Size: Weighted By GPU Hours (GPU Count)","[lanhach] Job Size: Weighted By GPU Hours (GPU Count)","[lapwi] Job Size: Weighted By GPU Hours (GPU Count)","[legsh] Job Size: Weighted By GPU Hours (GPU Count)","[lesre] Job Size: Weighted By GPU Hours (GPU Count)","[litau] Job Size: Weighted By GPU Hours (GPU Count)","[litst] Job Size: Weighted By GPU Hours (GPU Count)","[mamwa] Job Size: Weighted By GPU Hours (GPU Count)","[meapi] Job Size: Weighted By GPU Hours (GPU Count)","[misth] Job Size: Weighted By GPU Hours (GPU Count)","[moorh] Job Size: Weighted By GPU Hours (GPU Count)","[ovenb] Job Size: Weighted By GPU Hours (GPU Count)","[pereg] Job Size: Weighted By GPU Hours (GPU Count)","[pibgr] Job Size: Weighted By GPU Hours (GPU Count)","[proubis] Job Size: Weighted By GPU Hours (GPU Count)","[reebu] Job Size: Weighted By GPU Hours (GPU Count)","[relpa] Job Size: Weighted By GPU Hours (GPU Count)","[ribgu] Job Size: Weighted By GPU Hours (GPU Count)","[rolle] Job Size: Weighted By GPU Hours (GPU Count)","[sancr] Job Size: Weighted By GPU Hours (GPU Count)","[sante] Job Size: Weighted By GPU Hours (GPU Count)","[sarwa] Job Size: Weighted By GPU Hours (GPU Count)","[savsp] Job Size: Weighted By GPU Hours (GPU Count)","[shag1] Job Size: Weighted By GPU Hours (GPU Count)","[shttr] Job Size: Weighted By GPU Hours (GPU Count)","[siski] Job Size: Weighted By GPU Hours (GPU Count)","[smew1] Job Size: Weighted By GPU Hours (GPU Count)","[sogsh] Job Size: Weighted By GPU Hours (GPU Count)","[sposa] Job Size: Weighted By GPU Hours (GPU Count)","[swath] Job Size: Weighted By GPU Hours (GPU Count)","[turdo] Job Size: Weighted By GPU Hours (GPU Count)","[velsc] Job Size: Weighted By GPU Hours (GPU Count)","[vertera] Job Size: Weighted By GPU Hours (GPU Count)","[whimb] Job Size: Weighted By GPU Hours (GPU Count)","[whtpl] Job Size: Weighted By GPU Hours (GPU Count)","[whtsp] Job Size: Weighted By GPU Hours (GPU Count)","[ybsbu] Job Size: Weighted By GPU Hours (GPU Count)","[yebbu] Job Size: Weighted By GPU Hours (GPU Count)","[yebsa] Job Size: Weighted By GPU Hours (GPU Count)","[yebwa] Job Size: Weighted By GPU Hours (GPU Count)" +2016-12-22,12.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0 +2016-12-23,12.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0 +2016-12-24,12.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0 +2016-12-25,12.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0 +2016-12-26,12.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0 +2016-12-27,12.0000,0,0,0,0,0.0000,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0.0000,0.0000,0,0,0.0000,0,0,0,0.0000,0,0,0,0.0000,0.0000,0,0,0,0.0000,0.0000,0,0,0,0,0.0000,0.0000,0,0,0,0,0.0000,0,0,0 +2016-12-28,12.0000,0,0,0.0000,0,0.0000,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0.0000,0.0000,0,0,0,0.0000,0.0000,0,0,0.0000,0,0,0,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0,0,0.0000,0,0,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0,0,0,0,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0 +2016-12-29,12.0000,0,0,0.0000,0,0.0000,0,0,0.0000,0,0.0000,0,0.0000,0,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0,0,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0,0.0000,0,0.0000,0.0000,0.0000,0.0000 +2016-12-30,12.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000 +2016-12-31,12.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0 +2017-01-01,12.0000,0,0.0000,0,0,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0,0,0.0000,0.0000,0.0000,0,0.0000,0,0,0.0000,0,0,0.0000,0.0000,0,0.0000,0.0000,0,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0,0.0000,0,0,0.0000,0.0000,0.0000,0.0000,0,0,0.0000,0.0000,0,0.0000,0,0.0000,0.0000,0,0.0000,0,0,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_job_size_weighted_by_gpu_hours/timeseries-Day-cs.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_job_size_weighted_by_gpu_hours/timeseries-Day-cs.csv new file mode 100644 index 0000000000..de2ec579c2 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_job_size_weighted_by_gpu_hours/timeseries-Day-cs.csv @@ -0,0 +1,20 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[noror] Job Size: Weighted By GPU Hours (GPU Count)","[allga] Job Size: Weighted By GPU Hours (GPU Count)","[alpsw] Job Size: Weighted By GPU Hours (GPU Count)","[aytinis] Job Size: Weighted By GPU Hours (GPU Count)","[blhbu] Job Size: Weighted By GPU Hours (GPU Count)","[boowa] Job Size: Weighted By GPU Hours (GPU Count)","[caspl] Job Size: Weighted By GPU Hours (GPU Count)","[categ] Job Size: Weighted By GPU Hours (GPU Count)","[chaff] Job Size: Weighted By GPU Hours (GPU Count)","[coot1] Job Size: Weighted By GPU Hours (GPU Count)","[corsh] Job Size: Weighted By GPU Hours (GPU Count)","[crama] Job Size: Weighted By GPU Hours (GPU Count)","[crane] Job Size: Weighted By GPU Hours (GPU Count)","[dunli] Job Size: Weighted By GPU Hours (GPU Count)","[duswa] Job Size: Weighted By GPU Hours (GPU Count)","[egygo] Job Size: Weighted By GPU Hours (GPU Count)","[evegr] Job Size: Weighted By GPU Hours (GPU Count)","[ferdu] Job Size: Weighted By GPU Hours (GPU Count)","[field] Job Size: Weighted By GPU Hours (GPU Count)","[garwa] Job Size: Weighted By GPU Hours (GPU Count)","[gloib] Job Size: Weighted By GPU Hours (GPU Count)","[grath] Job Size: Weighted By GPU Hours (GPU Count)","[grgsh] Job Size: Weighted By GPU Hours (GPU Count)","[henha] Job Size: Weighted By GPU Hours (GPU Count)","[honbu] Job Size: Weighted By GPU Hours (GPU Count)","[hoowa] Job Size: Weighted By GPU Hours (GPU Count)","[jackd] Job Size: Weighted By GPU Hours (GPU Count)","[lanhach] Job Size: Weighted By GPU Hours (GPU Count)","[lapwi] Job Size: Weighted By GPU Hours (GPU Count)","[legsh] Job Size: Weighted By GPU Hours (GPU Count)","[lesre] Job Size: Weighted By GPU Hours (GPU Count)","[litau] Job Size: Weighted By GPU Hours (GPU Count)","[litst] Job Size: Weighted By GPU Hours (GPU Count)","[mamwa] Job Size: Weighted By GPU Hours (GPU Count)","[meapi] Job Size: Weighted By GPU Hours (GPU Count)","[misth] Job Size: Weighted By GPU Hours (GPU Count)","[moorh] Job Size: Weighted By GPU Hours (GPU Count)","[ovenb] Job Size: Weighted By GPU Hours (GPU Count)","[pereg] Job Size: Weighted By GPU Hours (GPU Count)","[pibgr] Job Size: Weighted By GPU Hours (GPU Count)","[proubis] Job Size: Weighted By GPU Hours (GPU Count)","[reebu] Job Size: Weighted By GPU Hours (GPU Count)","[relpa] Job Size: Weighted By GPU Hours (GPU Count)","[ribgu] Job Size: Weighted By GPU Hours (GPU Count)","[rolle] Job Size: Weighted By GPU Hours (GPU Count)","[sancr] Job Size: Weighted By GPU Hours (GPU Count)","[sante] Job Size: Weighted By GPU Hours (GPU Count)","[sarwa] Job Size: Weighted By GPU Hours (GPU Count)","[savsp] Job Size: Weighted By GPU Hours (GPU Count)","[shag1] Job Size: Weighted By GPU Hours (GPU Count)","[shttr] Job Size: Weighted By GPU Hours (GPU Count)","[siski] Job Size: Weighted By GPU Hours (GPU Count)","[smew1] Job Size: Weighted By GPU Hours (GPU Count)","[sogsh] Job Size: Weighted By GPU Hours (GPU Count)","[sposa] Job Size: Weighted By GPU Hours (GPU Count)","[swath] Job Size: Weighted By GPU Hours (GPU Count)","[turdo] Job Size: Weighted By GPU Hours (GPU Count)","[velsc] Job Size: Weighted By GPU Hours (GPU Count)","[vertera] Job Size: Weighted By GPU Hours (GPU Count)","[whimb] Job Size: Weighted By GPU Hours (GPU Count)","[whtpl] Job Size: Weighted By GPU Hours (GPU Count)","[whtsp] Job Size: Weighted By GPU Hours (GPU Count)","[ybsbu] Job Size: Weighted By GPU Hours (GPU Count)","[yebbu] Job Size: Weighted By GPU Hours (GPU Count)","[yebsa] Job Size: Weighted By GPU Hours (GPU Count)","[yebwa] Job Size: Weighted By GPU Hours (GPU Count)" +2016-12-22,12.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0 +2016-12-23,12.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0 +2016-12-24,12.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0 +2016-12-25,12.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0 +2016-12-26,12.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0 +2016-12-27,12.0000,0,0,0,0,0.0000,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0.0000,0.0000,0,0,0.0000,0,0,0,0.0000,0,0,0,0.0000,0.0000,0,0,0,0.0000,0.0000,0,0,0,0,0.0000,0.0000,0,0,0,0,0.0000,0,0,0 +2016-12-28,12.0000,0,0,0.0000,0,0.0000,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0.0000,0.0000,0,0,0,0.0000,0.0000,0,0,0.0000,0,0,0,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0,0,0.0000,0,0,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0,0,0,0,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0 +2016-12-29,12.0000,0,0,0.0000,0,0.0000,0,0,0.0000,0,0.0000,0,0.0000,0,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0,0,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0,0.0000,0,0.0000,0.0000,0.0000,0.0000 +2016-12-30,12.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000 +2016-12-31,12.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0 +2017-01-01,12.0000,0,0.0000,0,0,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0,0,0.0000,0.0000,0.0000,0,0.0000,0,0,0.0000,0,0,0.0000,0.0000,0,0.0000,0.0000,0,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0,0.0000,0,0,0.0000,0.0000,0.0000,0.0000,0,0,0.0000,0.0000,0,0.0000,0,0.0000,0.0000,0,0.0000,0,0,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_job_size_weighted_by_gpu_hours/timeseries-Day-pi.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_job_size_weighted_by_gpu_hours/timeseries-Day-pi.csv new file mode 100644 index 0000000000..a1fe2d5597 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_job_size_weighted_by_gpu_hours/timeseries-Day-pi.csv @@ -0,0 +1,20 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2016-12-22,2017-01-01 +--------- +Day,"[litst] Job Size: Weighted By GPU Hours (GPU Count)","[ovenb] Job Size: Weighted By GPU Hours (GPU Count)","[sante] Job Size: Weighted By GPU Hours (GPU Count)","[savsp] Job Size: Weighted By GPU Hours (GPU Count)","[swath] Job Size: Weighted By GPU Hours (GPU Count)","[ybsbu] Job Size: Weighted By GPU Hours (GPU Count)" +2016-12-23,0,0,0.0000,0,0,0 +2016-12-24,0,0,0.0000,0,0,0 +2016-12-25,0,0,0.0000,0,0,0 +2016-12-26,0,0,0.0000,0,0,0 +2016-12-27,0,0.0000,0.0000,0,0,0.0000 +2016-12-28,0,0.0000,0.0000,0,0,0.0000 +2016-12-29,0,0.0000,0.0000,0,0.0000,0.0000 +2016-12-30,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2016-12-31,0.0000,0.0000,0,0.0000,0.0000,0.0000 +2017-01-01,0,0.0000,0,0.0000,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_job_size_weighted_by_gpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_job_size_weighted_by_gpu_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..9ed245d5c0 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_job_size_weighted_by_gpu_hours/timeseries-Day-reference.csv @@ -0,0 +1,14 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [ + + ], + "data": [ + + ], + "message": "Your user account does not have permission to view the requested data. If you\nbelieve that you should be able to see this information, then please select\n\"Submit Support Request\" in the \"Contact Us\" menu to request access.", + "code": 103 +} diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_job_size_weighted_by_gpu_hours/timeseries-Day-usr.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_job_size_weighted_by_gpu_hours/timeseries-Day-usr.csv new file mode 100644 index 0000000000..05b0edb470 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_job_size_weighted_by_gpu_hours/timeseries-Day-usr.csv @@ -0,0 +1,13 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2016-12-22,2017-01-01 +--------- +Day,"[whimb] Job Size: Weighted By GPU Hours (GPU Count)" +2016-12-30,0.0000 +2016-12-31,0.0000 +2017-01-01,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_job_size_weighted_by_gpu_hours/timeseries-Month-cd.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_job_size_weighted_by_gpu_hours/timeseries-Month-cd.csv new file mode 100644 index 0000000000..a272d18c1d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_job_size_weighted_by_gpu_hours/timeseries-Month-cd.csv @@ -0,0 +1,11 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[noror] Job Size: Weighted By GPU Hours (GPU Count)","[allga] Job Size: Weighted By GPU Hours (GPU Count)","[alpsw] Job Size: Weighted By GPU Hours (GPU Count)","[aytinis] Job Size: Weighted By GPU Hours (GPU Count)","[blhbu] Job Size: Weighted By GPU Hours (GPU Count)","[boowa] Job Size: Weighted By GPU Hours (GPU Count)","[caspl] Job Size: Weighted By GPU Hours (GPU Count)","[categ] Job Size: Weighted By GPU Hours (GPU Count)","[chaff] Job Size: Weighted By GPU Hours (GPU Count)","[coot1] Job Size: Weighted By GPU Hours (GPU Count)","[corsh] Job Size: Weighted By GPU Hours (GPU Count)","[crama] Job Size: Weighted By GPU Hours (GPU Count)","[crane] Job Size: Weighted By GPU Hours (GPU Count)","[dunli] Job Size: Weighted By GPU Hours (GPU Count)","[duswa] Job Size: Weighted By GPU Hours (GPU Count)","[egygo] Job Size: Weighted By GPU Hours (GPU Count)","[evegr] Job Size: Weighted By GPU Hours (GPU Count)","[ferdu] Job Size: Weighted By GPU Hours (GPU Count)","[field] Job Size: Weighted By GPU Hours (GPU Count)","[garwa] Job Size: Weighted By GPU Hours (GPU Count)","[gloib] Job Size: Weighted By GPU Hours (GPU Count)","[grath] Job Size: Weighted By GPU Hours (GPU Count)","[grgsh] Job Size: Weighted By GPU Hours (GPU Count)","[henha] Job Size: Weighted By GPU Hours (GPU Count)","[honbu] Job Size: Weighted By GPU Hours (GPU Count)","[hoowa] Job Size: Weighted By GPU Hours (GPU Count)","[jackd] Job Size: Weighted By GPU Hours (GPU Count)","[lanhach] Job Size: Weighted By GPU Hours (GPU Count)","[lapwi] Job Size: Weighted By GPU Hours (GPU Count)","[legsh] Job Size: Weighted By GPU Hours (GPU Count)","[lesre] Job Size: Weighted By GPU Hours (GPU Count)","[litau] Job Size: Weighted By GPU Hours (GPU Count)","[litst] Job Size: Weighted By GPU Hours (GPU Count)","[mamwa] Job Size: Weighted By GPU Hours (GPU Count)","[meapi] Job Size: Weighted By GPU Hours (GPU Count)","[misth] Job Size: Weighted By GPU Hours (GPU Count)","[moorh] Job Size: Weighted By GPU Hours (GPU Count)","[ovenb] Job Size: Weighted By GPU Hours (GPU Count)","[pereg] Job Size: Weighted By GPU Hours (GPU Count)","[pibgr] Job Size: Weighted By GPU Hours (GPU Count)","[proubis] Job Size: Weighted By GPU Hours (GPU Count)","[reebu] Job Size: Weighted By GPU Hours (GPU Count)","[relpa] Job Size: Weighted By GPU Hours (GPU Count)","[ribgu] Job Size: Weighted By GPU Hours (GPU Count)","[rolle] Job Size: Weighted By GPU Hours (GPU Count)","[sancr] Job Size: Weighted By GPU Hours (GPU Count)","[sante] Job Size: Weighted By GPU Hours (GPU Count)","[sarwa] Job Size: Weighted By GPU Hours (GPU Count)","[savsp] Job Size: Weighted By GPU Hours (GPU Count)","[shag1] Job Size: Weighted By GPU Hours (GPU Count)","[shttr] Job Size: Weighted By GPU Hours (GPU Count)","[siski] Job Size: Weighted By GPU Hours (GPU Count)","[smew1] Job Size: Weighted By GPU Hours (GPU Count)","[sogsh] Job Size: Weighted By GPU Hours (GPU Count)","[sposa] Job Size: Weighted By GPU Hours (GPU Count)","[swath] Job Size: Weighted By GPU Hours (GPU Count)","[turdo] Job Size: Weighted By GPU Hours (GPU Count)","[velsc] Job Size: Weighted By GPU Hours (GPU Count)","[vertera] Job Size: Weighted By GPU Hours (GPU Count)","[whimb] Job Size: Weighted By GPU Hours (GPU Count)","[whtpl] Job Size: Weighted By GPU Hours (GPU Count)","[whtsp] Job Size: Weighted By GPU Hours (GPU Count)","[ybsbu] Job Size: Weighted By GPU Hours (GPU Count)","[yebbu] Job Size: Weighted By GPU Hours (GPU Count)","[yebsa] Job Size: Weighted By GPU Hours (GPU Count)","[yebwa] Job Size: Weighted By GPU Hours (GPU Count)" +2016-12,12.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2017-01,12.0000,0,0.0000,0,0,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0,0,0.0000,0.0000,0.0000,0,0.0000,0,0,0.0000,0,0,0.0000,0.0000,0,0.0000,0.0000,0,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0,0.0000,0,0,0.0000,0.0000,0.0000,0.0000,0,0,0.0000,0.0000,0,0.0000,0,0.0000,0.0000,0,0.0000,0,0,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_job_size_weighted_by_gpu_hours/timeseries-Month-cs.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_job_size_weighted_by_gpu_hours/timeseries-Month-cs.csv new file mode 100644 index 0000000000..a272d18c1d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_job_size_weighted_by_gpu_hours/timeseries-Month-cs.csv @@ -0,0 +1,11 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[noror] Job Size: Weighted By GPU Hours (GPU Count)","[allga] Job Size: Weighted By GPU Hours (GPU Count)","[alpsw] Job Size: Weighted By GPU Hours (GPU Count)","[aytinis] Job Size: Weighted By GPU Hours (GPU Count)","[blhbu] Job Size: Weighted By GPU Hours (GPU Count)","[boowa] Job Size: Weighted By GPU Hours (GPU Count)","[caspl] Job Size: Weighted By GPU Hours (GPU Count)","[categ] Job Size: Weighted By GPU Hours (GPU Count)","[chaff] Job Size: Weighted By GPU Hours (GPU Count)","[coot1] Job Size: Weighted By GPU Hours (GPU Count)","[corsh] Job Size: Weighted By GPU Hours (GPU Count)","[crama] Job Size: Weighted By GPU Hours (GPU Count)","[crane] Job Size: Weighted By GPU Hours (GPU Count)","[dunli] Job Size: Weighted By GPU Hours (GPU Count)","[duswa] Job Size: Weighted By GPU Hours (GPU Count)","[egygo] Job Size: Weighted By GPU Hours (GPU Count)","[evegr] Job Size: Weighted By GPU Hours (GPU Count)","[ferdu] Job Size: Weighted By GPU Hours (GPU Count)","[field] Job Size: Weighted By GPU Hours (GPU Count)","[garwa] Job Size: Weighted By GPU Hours (GPU Count)","[gloib] Job Size: Weighted By GPU Hours (GPU Count)","[grath] Job Size: Weighted By GPU Hours (GPU Count)","[grgsh] Job Size: Weighted By GPU Hours (GPU Count)","[henha] Job Size: Weighted By GPU Hours (GPU Count)","[honbu] Job Size: Weighted By GPU Hours (GPU Count)","[hoowa] Job Size: Weighted By GPU Hours (GPU Count)","[jackd] Job Size: Weighted By GPU Hours (GPU Count)","[lanhach] Job Size: Weighted By GPU Hours (GPU Count)","[lapwi] Job Size: Weighted By GPU Hours (GPU Count)","[legsh] Job Size: Weighted By GPU Hours (GPU Count)","[lesre] Job Size: Weighted By GPU Hours (GPU Count)","[litau] Job Size: Weighted By GPU Hours (GPU Count)","[litst] Job Size: Weighted By GPU Hours (GPU Count)","[mamwa] Job Size: Weighted By GPU Hours (GPU Count)","[meapi] Job Size: Weighted By GPU Hours (GPU Count)","[misth] Job Size: Weighted By GPU Hours (GPU Count)","[moorh] Job Size: Weighted By GPU Hours (GPU Count)","[ovenb] Job Size: Weighted By GPU Hours (GPU Count)","[pereg] Job Size: Weighted By GPU Hours (GPU Count)","[pibgr] Job Size: Weighted By GPU Hours (GPU Count)","[proubis] Job Size: Weighted By GPU Hours (GPU Count)","[reebu] Job Size: Weighted By GPU Hours (GPU Count)","[relpa] Job Size: Weighted By GPU Hours (GPU Count)","[ribgu] Job Size: Weighted By GPU Hours (GPU Count)","[rolle] Job Size: Weighted By GPU Hours (GPU Count)","[sancr] Job Size: Weighted By GPU Hours (GPU Count)","[sante] Job Size: Weighted By GPU Hours (GPU Count)","[sarwa] Job Size: Weighted By GPU Hours (GPU Count)","[savsp] Job Size: Weighted By GPU Hours (GPU Count)","[shag1] Job Size: Weighted By GPU Hours (GPU Count)","[shttr] Job Size: Weighted By GPU Hours (GPU Count)","[siski] Job Size: Weighted By GPU Hours (GPU Count)","[smew1] Job Size: Weighted By GPU Hours (GPU Count)","[sogsh] Job Size: Weighted By GPU Hours (GPU Count)","[sposa] Job Size: Weighted By GPU Hours (GPU Count)","[swath] Job Size: Weighted By GPU Hours (GPU Count)","[turdo] Job Size: Weighted By GPU Hours (GPU Count)","[velsc] Job Size: Weighted By GPU Hours (GPU Count)","[vertera] Job Size: Weighted By GPU Hours (GPU Count)","[whimb] Job Size: Weighted By GPU Hours (GPU Count)","[whtpl] Job Size: Weighted By GPU Hours (GPU Count)","[whtsp] Job Size: Weighted By GPU Hours (GPU Count)","[ybsbu] Job Size: Weighted By GPU Hours (GPU Count)","[yebbu] Job Size: Weighted By GPU Hours (GPU Count)","[yebsa] Job Size: Weighted By GPU Hours (GPU Count)","[yebwa] Job Size: Weighted By GPU Hours (GPU Count)" +2016-12,12.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2017-01,12.0000,0,0.0000,0,0,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0,0,0.0000,0.0000,0.0000,0,0.0000,0,0,0.0000,0,0,0.0000,0.0000,0,0.0000,0.0000,0,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0,0.0000,0,0,0.0000,0.0000,0.0000,0.0000,0,0,0.0000,0.0000,0,0.0000,0,0.0000,0.0000,0,0.0000,0,0,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_job_size_weighted_by_gpu_hours/timeseries-Month-pi.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_job_size_weighted_by_gpu_hours/timeseries-Month-pi.csv new file mode 100644 index 0000000000..cc776ae42c --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_job_size_weighted_by_gpu_hours/timeseries-Month-pi.csv @@ -0,0 +1,12 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2016-12-22,2017-01-01 +--------- +Month,"[litst] Job Size: Weighted By GPU Hours (GPU Count)","[ovenb] Job Size: Weighted By GPU Hours (GPU Count)","[sante] Job Size: Weighted By GPU Hours (GPU Count)","[savsp] Job Size: Weighted By GPU Hours (GPU Count)","[swath] Job Size: Weighted By GPU Hours (GPU Count)","[ybsbu] Job Size: Weighted By GPU Hours (GPU Count)" +2016-12,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2017-01,0,0.0000,0,0.0000,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_job_size_weighted_by_gpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_job_size_weighted_by_gpu_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..9ed245d5c0 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_job_size_weighted_by_gpu_hours/timeseries-Month-reference.csv @@ -0,0 +1,14 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [ + + ], + "data": [ + + ], + "message": "Your user account does not have permission to view the requested data. If you\nbelieve that you should be able to see this information, then please select\n\"Submit Support Request\" in the \"Contact Us\" menu to request access.", + "code": 103 +} diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_job_size_weighted_by_gpu_hours/timeseries-Month-usr.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_job_size_weighted_by_gpu_hours/timeseries-Month-usr.csv new file mode 100644 index 0000000000..239199a0d2 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_job_size_weighted_by_gpu_hours/timeseries-Month-usr.csv @@ -0,0 +1,12 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2016-12-22,2017-01-01 +--------- +Month,"[whimb] Job Size: Weighted By GPU Hours (GPU Count)" +2016-12,0.0000 +2017-01,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_job_size_weighted_by_gpu_hours/timeseries-Quarter-cd.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_job_size_weighted_by_gpu_hours/timeseries-Quarter-cd.csv new file mode 100644 index 0000000000..1b33a2c520 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_job_size_weighted_by_gpu_hours/timeseries-Quarter-cd.csv @@ -0,0 +1,11 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[noror] Job Size: Weighted By GPU Hours (GPU Count)","[allga] Job Size: Weighted By GPU Hours (GPU Count)","[alpsw] Job Size: Weighted By GPU Hours (GPU Count)","[aytinis] Job Size: Weighted By GPU Hours (GPU Count)","[blhbu] Job Size: Weighted By GPU Hours (GPU Count)","[boowa] Job Size: Weighted By GPU Hours (GPU Count)","[caspl] Job Size: Weighted By GPU Hours (GPU Count)","[categ] Job Size: Weighted By GPU Hours (GPU Count)","[chaff] Job Size: Weighted By GPU Hours (GPU Count)","[coot1] Job Size: Weighted By GPU Hours (GPU Count)","[corsh] Job Size: Weighted By GPU Hours (GPU Count)","[crama] Job Size: Weighted By GPU Hours (GPU Count)","[crane] Job Size: Weighted By GPU Hours (GPU Count)","[dunli] Job Size: Weighted By GPU Hours (GPU Count)","[duswa] Job Size: Weighted By GPU Hours (GPU Count)","[egygo] Job Size: Weighted By GPU Hours (GPU Count)","[evegr] Job Size: Weighted By GPU Hours (GPU Count)","[ferdu] Job Size: Weighted By GPU Hours (GPU Count)","[field] Job Size: Weighted By GPU Hours (GPU Count)","[garwa] Job Size: Weighted By GPU Hours (GPU Count)","[gloib] Job Size: Weighted By GPU Hours (GPU Count)","[grath] Job Size: Weighted By GPU Hours (GPU Count)","[grgsh] Job Size: Weighted By GPU Hours (GPU Count)","[henha] Job Size: Weighted By GPU Hours (GPU Count)","[honbu] Job Size: Weighted By GPU Hours (GPU Count)","[hoowa] Job Size: Weighted By GPU Hours (GPU Count)","[jackd] Job Size: Weighted By GPU Hours (GPU Count)","[lanhach] Job Size: Weighted By GPU Hours (GPU Count)","[lapwi] Job Size: Weighted By GPU Hours (GPU Count)","[legsh] Job Size: Weighted By GPU Hours (GPU Count)","[lesre] Job Size: Weighted By GPU Hours (GPU Count)","[litau] Job Size: Weighted By GPU Hours (GPU Count)","[litst] Job Size: Weighted By GPU Hours (GPU Count)","[mamwa] Job Size: Weighted By GPU Hours (GPU Count)","[meapi] Job Size: Weighted By GPU Hours (GPU Count)","[misth] Job Size: Weighted By GPU Hours (GPU Count)","[moorh] Job Size: Weighted By GPU Hours (GPU Count)","[ovenb] Job Size: Weighted By GPU Hours (GPU Count)","[pereg] Job Size: Weighted By GPU Hours (GPU Count)","[pibgr] Job Size: Weighted By GPU Hours (GPU Count)","[proubis] Job Size: Weighted By GPU Hours (GPU Count)","[reebu] Job Size: Weighted By GPU Hours (GPU Count)","[relpa] Job Size: Weighted By GPU Hours (GPU Count)","[ribgu] Job Size: Weighted By GPU Hours (GPU Count)","[rolle] Job Size: Weighted By GPU Hours (GPU Count)","[sancr] Job Size: Weighted By GPU Hours (GPU Count)","[sante] Job Size: Weighted By GPU Hours (GPU Count)","[sarwa] Job Size: Weighted By GPU Hours (GPU Count)","[savsp] Job Size: Weighted By GPU Hours (GPU Count)","[shag1] Job Size: Weighted By GPU Hours (GPU Count)","[shttr] Job Size: Weighted By GPU Hours (GPU Count)","[siski] Job Size: Weighted By GPU Hours (GPU Count)","[smew1] Job Size: Weighted By GPU Hours (GPU Count)","[sogsh] Job Size: Weighted By GPU Hours (GPU Count)","[sposa] Job Size: Weighted By GPU Hours (GPU Count)","[swath] Job Size: Weighted By GPU Hours (GPU Count)","[turdo] Job Size: Weighted By GPU Hours (GPU Count)","[velsc] Job Size: Weighted By GPU Hours (GPU Count)","[vertera] Job Size: Weighted By GPU Hours (GPU Count)","[whimb] Job Size: Weighted By GPU Hours (GPU Count)","[whtpl] Job Size: Weighted By GPU Hours (GPU Count)","[whtsp] Job Size: Weighted By GPU Hours (GPU Count)","[ybsbu] Job Size: Weighted By GPU Hours (GPU Count)","[yebbu] Job Size: Weighted By GPU Hours (GPU Count)","[yebsa] Job Size: Weighted By GPU Hours (GPU Count)","[yebwa] Job Size: Weighted By GPU Hours (GPU Count)" +"2016 Q4",12.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +"2017 Q1",12.0000,0,0.0000,0,0,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0,0,0.0000,0.0000,0.0000,0,0.0000,0,0,0.0000,0,0,0.0000,0.0000,0,0.0000,0.0000,0,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0,0.0000,0,0,0.0000,0.0000,0.0000,0.0000,0,0,0.0000,0.0000,0,0.0000,0,0.0000,0.0000,0,0.0000,0,0,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_job_size_weighted_by_gpu_hours/timeseries-Quarter-cs.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_job_size_weighted_by_gpu_hours/timeseries-Quarter-cs.csv new file mode 100644 index 0000000000..1b33a2c520 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_job_size_weighted_by_gpu_hours/timeseries-Quarter-cs.csv @@ -0,0 +1,11 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[noror] Job Size: Weighted By GPU Hours (GPU Count)","[allga] Job Size: Weighted By GPU Hours (GPU Count)","[alpsw] Job Size: Weighted By GPU Hours (GPU Count)","[aytinis] Job Size: Weighted By GPU Hours (GPU Count)","[blhbu] Job Size: Weighted By GPU Hours (GPU Count)","[boowa] Job Size: Weighted By GPU Hours (GPU Count)","[caspl] Job Size: Weighted By GPU Hours (GPU Count)","[categ] Job Size: Weighted By GPU Hours (GPU Count)","[chaff] Job Size: Weighted By GPU Hours (GPU Count)","[coot1] Job Size: Weighted By GPU Hours (GPU Count)","[corsh] Job Size: Weighted By GPU Hours (GPU Count)","[crama] Job Size: Weighted By GPU Hours (GPU Count)","[crane] Job Size: Weighted By GPU Hours (GPU Count)","[dunli] Job Size: Weighted By GPU Hours (GPU Count)","[duswa] Job Size: Weighted By GPU Hours (GPU Count)","[egygo] Job Size: Weighted By GPU Hours (GPU Count)","[evegr] Job Size: Weighted By GPU Hours (GPU Count)","[ferdu] Job Size: Weighted By GPU Hours (GPU Count)","[field] Job Size: Weighted By GPU Hours (GPU Count)","[garwa] Job Size: Weighted By GPU Hours (GPU Count)","[gloib] Job Size: Weighted By GPU Hours (GPU Count)","[grath] Job Size: Weighted By GPU Hours (GPU Count)","[grgsh] Job Size: Weighted By GPU Hours (GPU Count)","[henha] Job Size: Weighted By GPU Hours (GPU Count)","[honbu] Job Size: Weighted By GPU Hours (GPU Count)","[hoowa] Job Size: Weighted By GPU Hours (GPU Count)","[jackd] Job Size: Weighted By GPU Hours (GPU Count)","[lanhach] Job Size: Weighted By GPU Hours (GPU Count)","[lapwi] Job Size: Weighted By GPU Hours (GPU Count)","[legsh] Job Size: Weighted By GPU Hours (GPU Count)","[lesre] Job Size: Weighted By GPU Hours (GPU Count)","[litau] Job Size: Weighted By GPU Hours (GPU Count)","[litst] Job Size: Weighted By GPU Hours (GPU Count)","[mamwa] Job Size: Weighted By GPU Hours (GPU Count)","[meapi] Job Size: Weighted By GPU Hours (GPU Count)","[misth] Job Size: Weighted By GPU Hours (GPU Count)","[moorh] Job Size: Weighted By GPU Hours (GPU Count)","[ovenb] Job Size: Weighted By GPU Hours (GPU Count)","[pereg] Job Size: Weighted By GPU Hours (GPU Count)","[pibgr] Job Size: Weighted By GPU Hours (GPU Count)","[proubis] Job Size: Weighted By GPU Hours (GPU Count)","[reebu] Job Size: Weighted By GPU Hours (GPU Count)","[relpa] Job Size: Weighted By GPU Hours (GPU Count)","[ribgu] Job Size: Weighted By GPU Hours (GPU Count)","[rolle] Job Size: Weighted By GPU Hours (GPU Count)","[sancr] Job Size: Weighted By GPU Hours (GPU Count)","[sante] Job Size: Weighted By GPU Hours (GPU Count)","[sarwa] Job Size: Weighted By GPU Hours (GPU Count)","[savsp] Job Size: Weighted By GPU Hours (GPU Count)","[shag1] Job Size: Weighted By GPU Hours (GPU Count)","[shttr] Job Size: Weighted By GPU Hours (GPU Count)","[siski] Job Size: Weighted By GPU Hours (GPU Count)","[smew1] Job Size: Weighted By GPU Hours (GPU Count)","[sogsh] Job Size: Weighted By GPU Hours (GPU Count)","[sposa] Job Size: Weighted By GPU Hours (GPU Count)","[swath] Job Size: Weighted By GPU Hours (GPU Count)","[turdo] Job Size: Weighted By GPU Hours (GPU Count)","[velsc] Job Size: Weighted By GPU Hours (GPU Count)","[vertera] Job Size: Weighted By GPU Hours (GPU Count)","[whimb] Job Size: Weighted By GPU Hours (GPU Count)","[whtpl] Job Size: Weighted By GPU Hours (GPU Count)","[whtsp] Job Size: Weighted By GPU Hours (GPU Count)","[ybsbu] Job Size: Weighted By GPU Hours (GPU Count)","[yebbu] Job Size: Weighted By GPU Hours (GPU Count)","[yebsa] Job Size: Weighted By GPU Hours (GPU Count)","[yebwa] Job Size: Weighted By GPU Hours (GPU Count)" +"2016 Q4",12.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +"2017 Q1",12.0000,0,0.0000,0,0,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0,0,0.0000,0.0000,0.0000,0,0.0000,0,0,0.0000,0,0,0.0000,0.0000,0,0.0000,0.0000,0,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0,0.0000,0,0,0.0000,0.0000,0.0000,0.0000,0,0,0.0000,0.0000,0,0.0000,0,0.0000,0.0000,0,0.0000,0,0,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_job_size_weighted_by_gpu_hours/timeseries-Quarter-pi.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_job_size_weighted_by_gpu_hours/timeseries-Quarter-pi.csv new file mode 100644 index 0000000000..32c87fe996 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_job_size_weighted_by_gpu_hours/timeseries-Quarter-pi.csv @@ -0,0 +1,12 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[litst] Job Size: Weighted By GPU Hours (GPU Count)","[ovenb] Job Size: Weighted By GPU Hours (GPU Count)","[sante] Job Size: Weighted By GPU Hours (GPU Count)","[savsp] Job Size: Weighted By GPU Hours (GPU Count)","[swath] Job Size: Weighted By GPU Hours (GPU Count)","[ybsbu] Job Size: Weighted By GPU Hours (GPU Count)" +"2016 Q4",0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +"2017 Q1",0,0.0000,0,0.0000,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_job_size_weighted_by_gpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_job_size_weighted_by_gpu_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..9ed245d5c0 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_job_size_weighted_by_gpu_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,14 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [ + + ], + "data": [ + + ], + "message": "Your user account does not have permission to view the requested data. If you\nbelieve that you should be able to see this information, then please select\n\"Submit Support Request\" in the \"Contact Us\" menu to request access.", + "code": 103 +} diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_job_size_weighted_by_gpu_hours/timeseries-Quarter-usr.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_job_size_weighted_by_gpu_hours/timeseries-Quarter-usr.csv new file mode 100644 index 0000000000..82a5add92d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_job_size_weighted_by_gpu_hours/timeseries-Quarter-usr.csv @@ -0,0 +1,12 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[whimb] Job Size: Weighted By GPU Hours (GPU Count)" +"2016 Q4",0.0000 +"2017 Q1",0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_job_size_weighted_by_gpu_hours/timeseries-Year-cd.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_job_size_weighted_by_gpu_hours/timeseries-Year-cd.csv new file mode 100644 index 0000000000..a56057e9be --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_job_size_weighted_by_gpu_hours/timeseries-Year-cd.csv @@ -0,0 +1,11 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[noror] Job Size: Weighted By GPU Hours (GPU Count)","[allga] Job Size: Weighted By GPU Hours (GPU Count)","[alpsw] Job Size: Weighted By GPU Hours (GPU Count)","[aytinis] Job Size: Weighted By GPU Hours (GPU Count)","[blhbu] Job Size: Weighted By GPU Hours (GPU Count)","[boowa] Job Size: Weighted By GPU Hours (GPU Count)","[caspl] Job Size: Weighted By GPU Hours (GPU Count)","[categ] Job Size: Weighted By GPU Hours (GPU Count)","[chaff] Job Size: Weighted By GPU Hours (GPU Count)","[coot1] Job Size: Weighted By GPU Hours (GPU Count)","[corsh] Job Size: Weighted By GPU Hours (GPU Count)","[crama] Job Size: Weighted By GPU Hours (GPU Count)","[crane] Job Size: Weighted By GPU Hours (GPU Count)","[dunli] Job Size: Weighted By GPU Hours (GPU Count)","[duswa] Job Size: Weighted By GPU Hours (GPU Count)","[egygo] Job Size: Weighted By GPU Hours (GPU Count)","[evegr] Job Size: Weighted By GPU Hours (GPU Count)","[ferdu] Job Size: Weighted By GPU Hours (GPU Count)","[field] Job Size: Weighted By GPU Hours (GPU Count)","[garwa] Job Size: Weighted By GPU Hours (GPU Count)","[gloib] Job Size: Weighted By GPU Hours (GPU Count)","[grath] Job Size: Weighted By GPU Hours (GPU Count)","[grgsh] Job Size: Weighted By GPU Hours (GPU Count)","[henha] Job Size: Weighted By GPU Hours (GPU Count)","[honbu] Job Size: Weighted By GPU Hours (GPU Count)","[hoowa] Job Size: Weighted By GPU Hours (GPU Count)","[jackd] Job Size: Weighted By GPU Hours (GPU Count)","[lanhach] Job Size: Weighted By GPU Hours (GPU Count)","[lapwi] Job Size: Weighted By GPU Hours (GPU Count)","[legsh] Job Size: Weighted By GPU Hours (GPU Count)","[lesre] Job Size: Weighted By GPU Hours (GPU Count)","[litau] Job Size: Weighted By GPU Hours (GPU Count)","[litst] Job Size: Weighted By GPU Hours (GPU Count)","[mamwa] Job Size: Weighted By GPU Hours (GPU Count)","[meapi] Job Size: Weighted By GPU Hours (GPU Count)","[misth] Job Size: Weighted By GPU Hours (GPU Count)","[moorh] Job Size: Weighted By GPU Hours (GPU Count)","[ovenb] Job Size: Weighted By GPU Hours (GPU Count)","[pereg] Job Size: Weighted By GPU Hours (GPU Count)","[pibgr] Job Size: Weighted By GPU Hours (GPU Count)","[proubis] Job Size: Weighted By GPU Hours (GPU Count)","[reebu] Job Size: Weighted By GPU Hours (GPU Count)","[relpa] Job Size: Weighted By GPU Hours (GPU Count)","[ribgu] Job Size: Weighted By GPU Hours (GPU Count)","[rolle] Job Size: Weighted By GPU Hours (GPU Count)","[sancr] Job Size: Weighted By GPU Hours (GPU Count)","[sante] Job Size: Weighted By GPU Hours (GPU Count)","[sarwa] Job Size: Weighted By GPU Hours (GPU Count)","[savsp] Job Size: Weighted By GPU Hours (GPU Count)","[shag1] Job Size: Weighted By GPU Hours (GPU Count)","[shttr] Job Size: Weighted By GPU Hours (GPU Count)","[siski] Job Size: Weighted By GPU Hours (GPU Count)","[smew1] Job Size: Weighted By GPU Hours (GPU Count)","[sogsh] Job Size: Weighted By GPU Hours (GPU Count)","[sposa] Job Size: Weighted By GPU Hours (GPU Count)","[swath] Job Size: Weighted By GPU Hours (GPU Count)","[turdo] Job Size: Weighted By GPU Hours (GPU Count)","[velsc] Job Size: Weighted By GPU Hours (GPU Count)","[vertera] Job Size: Weighted By GPU Hours (GPU Count)","[whimb] Job Size: Weighted By GPU Hours (GPU Count)","[whtpl] Job Size: Weighted By GPU Hours (GPU Count)","[whtsp] Job Size: Weighted By GPU Hours (GPU Count)","[ybsbu] Job Size: Weighted By GPU Hours (GPU Count)","[yebbu] Job Size: Weighted By GPU Hours (GPU Count)","[yebsa] Job Size: Weighted By GPU Hours (GPU Count)","[yebwa] Job Size: Weighted By GPU Hours (GPU Count)" +2016,12.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2017,12.0000,0,0.0000,0,0,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0,0,0.0000,0.0000,0.0000,0,0.0000,0,0,0.0000,0,0,0.0000,0.0000,0,0.0000,0.0000,0,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0,0.0000,0,0,0.0000,0.0000,0.0000,0.0000,0,0,0.0000,0.0000,0,0.0000,0,0.0000,0.0000,0,0.0000,0,0,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_job_size_weighted_by_gpu_hours/timeseries-Year-cs.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_job_size_weighted_by_gpu_hours/timeseries-Year-cs.csv new file mode 100644 index 0000000000..a56057e9be --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_job_size_weighted_by_gpu_hours/timeseries-Year-cs.csv @@ -0,0 +1,11 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[noror] Job Size: Weighted By GPU Hours (GPU Count)","[allga] Job Size: Weighted By GPU Hours (GPU Count)","[alpsw] Job Size: Weighted By GPU Hours (GPU Count)","[aytinis] Job Size: Weighted By GPU Hours (GPU Count)","[blhbu] Job Size: Weighted By GPU Hours (GPU Count)","[boowa] Job Size: Weighted By GPU Hours (GPU Count)","[caspl] Job Size: Weighted By GPU Hours (GPU Count)","[categ] Job Size: Weighted By GPU Hours (GPU Count)","[chaff] Job Size: Weighted By GPU Hours (GPU Count)","[coot1] Job Size: Weighted By GPU Hours (GPU Count)","[corsh] Job Size: Weighted By GPU Hours (GPU Count)","[crama] Job Size: Weighted By GPU Hours (GPU Count)","[crane] Job Size: Weighted By GPU Hours (GPU Count)","[dunli] Job Size: Weighted By GPU Hours (GPU Count)","[duswa] Job Size: Weighted By GPU Hours (GPU Count)","[egygo] Job Size: Weighted By GPU Hours (GPU Count)","[evegr] Job Size: Weighted By GPU Hours (GPU Count)","[ferdu] Job Size: Weighted By GPU Hours (GPU Count)","[field] Job Size: Weighted By GPU Hours (GPU Count)","[garwa] Job Size: Weighted By GPU Hours (GPU Count)","[gloib] Job Size: Weighted By GPU Hours (GPU Count)","[grath] Job Size: Weighted By GPU Hours (GPU Count)","[grgsh] Job Size: Weighted By GPU Hours (GPU Count)","[henha] Job Size: Weighted By GPU Hours (GPU Count)","[honbu] Job Size: Weighted By GPU Hours (GPU Count)","[hoowa] Job Size: Weighted By GPU Hours (GPU Count)","[jackd] Job Size: Weighted By GPU Hours (GPU Count)","[lanhach] Job Size: Weighted By GPU Hours (GPU Count)","[lapwi] Job Size: Weighted By GPU Hours (GPU Count)","[legsh] Job Size: Weighted By GPU Hours (GPU Count)","[lesre] Job Size: Weighted By GPU Hours (GPU Count)","[litau] Job Size: Weighted By GPU Hours (GPU Count)","[litst] Job Size: Weighted By GPU Hours (GPU Count)","[mamwa] Job Size: Weighted By GPU Hours (GPU Count)","[meapi] Job Size: Weighted By GPU Hours (GPU Count)","[misth] Job Size: Weighted By GPU Hours (GPU Count)","[moorh] Job Size: Weighted By GPU Hours (GPU Count)","[ovenb] Job Size: Weighted By GPU Hours (GPU Count)","[pereg] Job Size: Weighted By GPU Hours (GPU Count)","[pibgr] Job Size: Weighted By GPU Hours (GPU Count)","[proubis] Job Size: Weighted By GPU Hours (GPU Count)","[reebu] Job Size: Weighted By GPU Hours (GPU Count)","[relpa] Job Size: Weighted By GPU Hours (GPU Count)","[ribgu] Job Size: Weighted By GPU Hours (GPU Count)","[rolle] Job Size: Weighted By GPU Hours (GPU Count)","[sancr] Job Size: Weighted By GPU Hours (GPU Count)","[sante] Job Size: Weighted By GPU Hours (GPU Count)","[sarwa] Job Size: Weighted By GPU Hours (GPU Count)","[savsp] Job Size: Weighted By GPU Hours (GPU Count)","[shag1] Job Size: Weighted By GPU Hours (GPU Count)","[shttr] Job Size: Weighted By GPU Hours (GPU Count)","[siski] Job Size: Weighted By GPU Hours (GPU Count)","[smew1] Job Size: Weighted By GPU Hours (GPU Count)","[sogsh] Job Size: Weighted By GPU Hours (GPU Count)","[sposa] Job Size: Weighted By GPU Hours (GPU Count)","[swath] Job Size: Weighted By GPU Hours (GPU Count)","[turdo] Job Size: Weighted By GPU Hours (GPU Count)","[velsc] Job Size: Weighted By GPU Hours (GPU Count)","[vertera] Job Size: Weighted By GPU Hours (GPU Count)","[whimb] Job Size: Weighted By GPU Hours (GPU Count)","[whtpl] Job Size: Weighted By GPU Hours (GPU Count)","[whtsp] Job Size: Weighted By GPU Hours (GPU Count)","[ybsbu] Job Size: Weighted By GPU Hours (GPU Count)","[yebbu] Job Size: Weighted By GPU Hours (GPU Count)","[yebsa] Job Size: Weighted By GPU Hours (GPU Count)","[yebwa] Job Size: Weighted By GPU Hours (GPU Count)" +2016,12.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2017,12.0000,0,0.0000,0,0,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0,0,0.0000,0.0000,0.0000,0,0.0000,0,0,0.0000,0,0,0.0000,0.0000,0,0.0000,0.0000,0,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0,0.0000,0,0,0.0000,0.0000,0.0000,0.0000,0,0,0.0000,0.0000,0,0.0000,0,0.0000,0.0000,0,0.0000,0,0,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_job_size_weighted_by_gpu_hours/timeseries-Year-pi.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_job_size_weighted_by_gpu_hours/timeseries-Year-pi.csv new file mode 100644 index 0000000000..d1dfcdd995 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_job_size_weighted_by_gpu_hours/timeseries-Year-pi.csv @@ -0,0 +1,12 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2016-12-22,2017-01-01 +--------- +Year,"[litst] Job Size: Weighted By GPU Hours (GPU Count)","[ovenb] Job Size: Weighted By GPU Hours (GPU Count)","[sante] Job Size: Weighted By GPU Hours (GPU Count)","[savsp] Job Size: Weighted By GPU Hours (GPU Count)","[swath] Job Size: Weighted By GPU Hours (GPU Count)","[ybsbu] Job Size: Weighted By GPU Hours (GPU Count)" +2016,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2017,0,0.0000,0,0.0000,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_job_size_weighted_by_gpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_job_size_weighted_by_gpu_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..9ed245d5c0 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_job_size_weighted_by_gpu_hours/timeseries-Year-reference.csv @@ -0,0 +1,14 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [ + + ], + "data": [ + + ], + "message": "Your user account does not have permission to view the requested data. If you\nbelieve that you should be able to see this information, then please select\n\"Submit Support Request\" in the \"Contact Us\" menu to request access.", + "code": 103 +} diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_job_size_weighted_by_gpu_hours/timeseries-Year-usr.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_job_size_weighted_by_gpu_hours/timeseries-Year-usr.csv new file mode 100644 index 0000000000..0b69effc48 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/avg_job_size_weighted_by_gpu_hours/timeseries-Year-usr.csv @@ -0,0 +1,12 @@ +title +"Job Size: Weighted By GPU Hours (GPU Count): by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2016-12-22,2017-01-01 +--------- +Year,"[whimb] Job Size: Weighted By GPU Hours (GPU Count)" +2016,0.0000 +2017,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/total_gpu_hours/aggregate-Day-cd.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/total_gpu_hours/aggregate-Day-cd.csv new file mode 100644 index 0000000000..1c07c5387d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/total_gpu_hours/aggregate-Day-cd.csv @@ -0,0 +1,75 @@ +title +"GPU Hours: Total: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"System Username","GPU Hours: Total" +noror,506.9128 +allga,0.0000 +alpsw,0.0000 +aytinis,0.0000 +blhbu,0.0000 +boowa,0.0000 +caspl,0.0000 +categ,0.0000 +chaff,0.0000 +coot1,0.0000 +corsh,0.0000 +crama,0.0000 +crane,0.0000 +dunli,0.0000 +duswa,0.0000 +egygo,0.0000 +evegr,0.0000 +ferdu,0.0000 +field,0.0000 +garwa,0.0000 +gloib,0.0000 +grath,0.0000 +grgsh,0.0000 +henha,0.0000 +honbu,0.0000 +hoowa,0.0000 +jackd,0.0000 +lanhach,0.0000 +lapwi,0.0000 +legsh,0.0000 +lesre,0.0000 +litau,0.0000 +litst,0.0000 +mamwa,0.0000 +meapi,0.0000 +misth,0.0000 +moorh,0.0000 +ovenb,0.0000 +pereg,0.0000 +pibgr,0.0000 +proubis,0.0000 +reebu,0.0000 +relpa,0.0000 +ribgu,0.0000 +rolle,0.0000 +sancr,0.0000 +sante,0.0000 +sarwa,0.0000 +savsp,0.0000 +shag1,0.0000 +shttr,0.0000 +siski,0.0000 +smew1,0.0000 +sogsh,0.0000 +sposa,0.0000 +swath,0.0000 +turdo,0.0000 +velsc,0.0000 +vertera,0.0000 +whimb,0.0000 +whtpl,0.0000 +whtsp,0.0000 +ybsbu,0.0000 +yebbu,0.0000 +yebsa,0.0000 +yebwa,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/total_gpu_hours/aggregate-Day-cs.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/total_gpu_hours/aggregate-Day-cs.csv new file mode 100644 index 0000000000..1c07c5387d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/total_gpu_hours/aggregate-Day-cs.csv @@ -0,0 +1,75 @@ +title +"GPU Hours: Total: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"System Username","GPU Hours: Total" +noror,506.9128 +allga,0.0000 +alpsw,0.0000 +aytinis,0.0000 +blhbu,0.0000 +boowa,0.0000 +caspl,0.0000 +categ,0.0000 +chaff,0.0000 +coot1,0.0000 +corsh,0.0000 +crama,0.0000 +crane,0.0000 +dunli,0.0000 +duswa,0.0000 +egygo,0.0000 +evegr,0.0000 +ferdu,0.0000 +field,0.0000 +garwa,0.0000 +gloib,0.0000 +grath,0.0000 +grgsh,0.0000 +henha,0.0000 +honbu,0.0000 +hoowa,0.0000 +jackd,0.0000 +lanhach,0.0000 +lapwi,0.0000 +legsh,0.0000 +lesre,0.0000 +litau,0.0000 +litst,0.0000 +mamwa,0.0000 +meapi,0.0000 +misth,0.0000 +moorh,0.0000 +ovenb,0.0000 +pereg,0.0000 +pibgr,0.0000 +proubis,0.0000 +reebu,0.0000 +relpa,0.0000 +ribgu,0.0000 +rolle,0.0000 +sancr,0.0000 +sante,0.0000 +sarwa,0.0000 +savsp,0.0000 +shag1,0.0000 +shttr,0.0000 +siski,0.0000 +smew1,0.0000 +sogsh,0.0000 +sposa,0.0000 +swath,0.0000 +turdo,0.0000 +velsc,0.0000 +vertera,0.0000 +whimb,0.0000 +whtpl,0.0000 +whtsp,0.0000 +ybsbu,0.0000 +yebbu,0.0000 +yebsa,0.0000 +yebwa,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/total_gpu_hours/aggregate-Day-pi.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/total_gpu_hours/aggregate-Day-pi.csv new file mode 100644 index 0000000000..b3c02de7c8 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/total_gpu_hours/aggregate-Day-pi.csv @@ -0,0 +1,16 @@ +title +"GPU Hours: Total: by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2016-12-22,2017-01-01 +--------- +"System Username","GPU Hours: Total" +litst,0.0000 +ovenb,0.0000 +sante,0.0000 +savsp,0.0000 +swath,0.0000 +ybsbu,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/total_gpu_hours/aggregate-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/total_gpu_hours/aggregate-Day-reference.csv new file mode 100644 index 0000000000..9ed245d5c0 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/total_gpu_hours/aggregate-Day-reference.csv @@ -0,0 +1,14 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [ + + ], + "data": [ + + ], + "message": "Your user account does not have permission to view the requested data. If you\nbelieve that you should be able to see this information, then please select\n\"Submit Support Request\" in the \"Contact Us\" menu to request access.", + "code": 103 +} diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/total_gpu_hours/aggregate-Day-usr.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/total_gpu_hours/aggregate-Day-usr.csv new file mode 100644 index 0000000000..e542bc700e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/total_gpu_hours/aggregate-Day-usr.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Total: by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2016-12-22,2017-01-01 +--------- +"System Username","GPU Hours: Total" +whimb,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/total_gpu_hours/aggregate-Month-cd.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/total_gpu_hours/aggregate-Month-cd.csv new file mode 100644 index 0000000000..1c07c5387d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/total_gpu_hours/aggregate-Month-cd.csv @@ -0,0 +1,75 @@ +title +"GPU Hours: Total: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"System Username","GPU Hours: Total" +noror,506.9128 +allga,0.0000 +alpsw,0.0000 +aytinis,0.0000 +blhbu,0.0000 +boowa,0.0000 +caspl,0.0000 +categ,0.0000 +chaff,0.0000 +coot1,0.0000 +corsh,0.0000 +crama,0.0000 +crane,0.0000 +dunli,0.0000 +duswa,0.0000 +egygo,0.0000 +evegr,0.0000 +ferdu,0.0000 +field,0.0000 +garwa,0.0000 +gloib,0.0000 +grath,0.0000 +grgsh,0.0000 +henha,0.0000 +honbu,0.0000 +hoowa,0.0000 +jackd,0.0000 +lanhach,0.0000 +lapwi,0.0000 +legsh,0.0000 +lesre,0.0000 +litau,0.0000 +litst,0.0000 +mamwa,0.0000 +meapi,0.0000 +misth,0.0000 +moorh,0.0000 +ovenb,0.0000 +pereg,0.0000 +pibgr,0.0000 +proubis,0.0000 +reebu,0.0000 +relpa,0.0000 +ribgu,0.0000 +rolle,0.0000 +sancr,0.0000 +sante,0.0000 +sarwa,0.0000 +savsp,0.0000 +shag1,0.0000 +shttr,0.0000 +siski,0.0000 +smew1,0.0000 +sogsh,0.0000 +sposa,0.0000 +swath,0.0000 +turdo,0.0000 +velsc,0.0000 +vertera,0.0000 +whimb,0.0000 +whtpl,0.0000 +whtsp,0.0000 +ybsbu,0.0000 +yebbu,0.0000 +yebsa,0.0000 +yebwa,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/total_gpu_hours/aggregate-Month-cs.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/total_gpu_hours/aggregate-Month-cs.csv new file mode 100644 index 0000000000..1c07c5387d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/total_gpu_hours/aggregate-Month-cs.csv @@ -0,0 +1,75 @@ +title +"GPU Hours: Total: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"System Username","GPU Hours: Total" +noror,506.9128 +allga,0.0000 +alpsw,0.0000 +aytinis,0.0000 +blhbu,0.0000 +boowa,0.0000 +caspl,0.0000 +categ,0.0000 +chaff,0.0000 +coot1,0.0000 +corsh,0.0000 +crama,0.0000 +crane,0.0000 +dunli,0.0000 +duswa,0.0000 +egygo,0.0000 +evegr,0.0000 +ferdu,0.0000 +field,0.0000 +garwa,0.0000 +gloib,0.0000 +grath,0.0000 +grgsh,0.0000 +henha,0.0000 +honbu,0.0000 +hoowa,0.0000 +jackd,0.0000 +lanhach,0.0000 +lapwi,0.0000 +legsh,0.0000 +lesre,0.0000 +litau,0.0000 +litst,0.0000 +mamwa,0.0000 +meapi,0.0000 +misth,0.0000 +moorh,0.0000 +ovenb,0.0000 +pereg,0.0000 +pibgr,0.0000 +proubis,0.0000 +reebu,0.0000 +relpa,0.0000 +ribgu,0.0000 +rolle,0.0000 +sancr,0.0000 +sante,0.0000 +sarwa,0.0000 +savsp,0.0000 +shag1,0.0000 +shttr,0.0000 +siski,0.0000 +smew1,0.0000 +sogsh,0.0000 +sposa,0.0000 +swath,0.0000 +turdo,0.0000 +velsc,0.0000 +vertera,0.0000 +whimb,0.0000 +whtpl,0.0000 +whtsp,0.0000 +ybsbu,0.0000 +yebbu,0.0000 +yebsa,0.0000 +yebwa,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/total_gpu_hours/aggregate-Month-pi.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/total_gpu_hours/aggregate-Month-pi.csv new file mode 100644 index 0000000000..b3c02de7c8 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/total_gpu_hours/aggregate-Month-pi.csv @@ -0,0 +1,16 @@ +title +"GPU Hours: Total: by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2016-12-22,2017-01-01 +--------- +"System Username","GPU Hours: Total" +litst,0.0000 +ovenb,0.0000 +sante,0.0000 +savsp,0.0000 +swath,0.0000 +ybsbu,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/total_gpu_hours/aggregate-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/total_gpu_hours/aggregate-Month-reference.csv new file mode 100644 index 0000000000..9ed245d5c0 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/total_gpu_hours/aggregate-Month-reference.csv @@ -0,0 +1,14 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [ + + ], + "data": [ + + ], + "message": "Your user account does not have permission to view the requested data. If you\nbelieve that you should be able to see this information, then please select\n\"Submit Support Request\" in the \"Contact Us\" menu to request access.", + "code": 103 +} diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/total_gpu_hours/aggregate-Month-usr.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/total_gpu_hours/aggregate-Month-usr.csv new file mode 100644 index 0000000000..e542bc700e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/total_gpu_hours/aggregate-Month-usr.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Total: by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2016-12-22,2017-01-01 +--------- +"System Username","GPU Hours: Total" +whimb,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/total_gpu_hours/aggregate-Quarter-cd.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/total_gpu_hours/aggregate-Quarter-cd.csv new file mode 100644 index 0000000000..1c07c5387d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/total_gpu_hours/aggregate-Quarter-cd.csv @@ -0,0 +1,75 @@ +title +"GPU Hours: Total: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"System Username","GPU Hours: Total" +noror,506.9128 +allga,0.0000 +alpsw,0.0000 +aytinis,0.0000 +blhbu,0.0000 +boowa,0.0000 +caspl,0.0000 +categ,0.0000 +chaff,0.0000 +coot1,0.0000 +corsh,0.0000 +crama,0.0000 +crane,0.0000 +dunli,0.0000 +duswa,0.0000 +egygo,0.0000 +evegr,0.0000 +ferdu,0.0000 +field,0.0000 +garwa,0.0000 +gloib,0.0000 +grath,0.0000 +grgsh,0.0000 +henha,0.0000 +honbu,0.0000 +hoowa,0.0000 +jackd,0.0000 +lanhach,0.0000 +lapwi,0.0000 +legsh,0.0000 +lesre,0.0000 +litau,0.0000 +litst,0.0000 +mamwa,0.0000 +meapi,0.0000 +misth,0.0000 +moorh,0.0000 +ovenb,0.0000 +pereg,0.0000 +pibgr,0.0000 +proubis,0.0000 +reebu,0.0000 +relpa,0.0000 +ribgu,0.0000 +rolle,0.0000 +sancr,0.0000 +sante,0.0000 +sarwa,0.0000 +savsp,0.0000 +shag1,0.0000 +shttr,0.0000 +siski,0.0000 +smew1,0.0000 +sogsh,0.0000 +sposa,0.0000 +swath,0.0000 +turdo,0.0000 +velsc,0.0000 +vertera,0.0000 +whimb,0.0000 +whtpl,0.0000 +whtsp,0.0000 +ybsbu,0.0000 +yebbu,0.0000 +yebsa,0.0000 +yebwa,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/total_gpu_hours/aggregate-Quarter-cs.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/total_gpu_hours/aggregate-Quarter-cs.csv new file mode 100644 index 0000000000..1c07c5387d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/total_gpu_hours/aggregate-Quarter-cs.csv @@ -0,0 +1,75 @@ +title +"GPU Hours: Total: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"System Username","GPU Hours: Total" +noror,506.9128 +allga,0.0000 +alpsw,0.0000 +aytinis,0.0000 +blhbu,0.0000 +boowa,0.0000 +caspl,0.0000 +categ,0.0000 +chaff,0.0000 +coot1,0.0000 +corsh,0.0000 +crama,0.0000 +crane,0.0000 +dunli,0.0000 +duswa,0.0000 +egygo,0.0000 +evegr,0.0000 +ferdu,0.0000 +field,0.0000 +garwa,0.0000 +gloib,0.0000 +grath,0.0000 +grgsh,0.0000 +henha,0.0000 +honbu,0.0000 +hoowa,0.0000 +jackd,0.0000 +lanhach,0.0000 +lapwi,0.0000 +legsh,0.0000 +lesre,0.0000 +litau,0.0000 +litst,0.0000 +mamwa,0.0000 +meapi,0.0000 +misth,0.0000 +moorh,0.0000 +ovenb,0.0000 +pereg,0.0000 +pibgr,0.0000 +proubis,0.0000 +reebu,0.0000 +relpa,0.0000 +ribgu,0.0000 +rolle,0.0000 +sancr,0.0000 +sante,0.0000 +sarwa,0.0000 +savsp,0.0000 +shag1,0.0000 +shttr,0.0000 +siski,0.0000 +smew1,0.0000 +sogsh,0.0000 +sposa,0.0000 +swath,0.0000 +turdo,0.0000 +velsc,0.0000 +vertera,0.0000 +whimb,0.0000 +whtpl,0.0000 +whtsp,0.0000 +ybsbu,0.0000 +yebbu,0.0000 +yebsa,0.0000 +yebwa,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/total_gpu_hours/aggregate-Quarter-pi.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/total_gpu_hours/aggregate-Quarter-pi.csv new file mode 100644 index 0000000000..b3c02de7c8 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/total_gpu_hours/aggregate-Quarter-pi.csv @@ -0,0 +1,16 @@ +title +"GPU Hours: Total: by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2016-12-22,2017-01-01 +--------- +"System Username","GPU Hours: Total" +litst,0.0000 +ovenb,0.0000 +sante,0.0000 +savsp,0.0000 +swath,0.0000 +ybsbu,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/total_gpu_hours/aggregate-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/total_gpu_hours/aggregate-Quarter-reference.csv new file mode 100644 index 0000000000..9ed245d5c0 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/total_gpu_hours/aggregate-Quarter-reference.csv @@ -0,0 +1,14 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [ + + ], + "data": [ + + ], + "message": "Your user account does not have permission to view the requested data. If you\nbelieve that you should be able to see this information, then please select\n\"Submit Support Request\" in the \"Contact Us\" menu to request access.", + "code": 103 +} diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/total_gpu_hours/aggregate-Quarter-usr.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/total_gpu_hours/aggregate-Quarter-usr.csv new file mode 100644 index 0000000000..e542bc700e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/total_gpu_hours/aggregate-Quarter-usr.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Total: by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2016-12-22,2017-01-01 +--------- +"System Username","GPU Hours: Total" +whimb,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/total_gpu_hours/aggregate-Year-cd.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/total_gpu_hours/aggregate-Year-cd.csv new file mode 100644 index 0000000000..1c07c5387d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/total_gpu_hours/aggregate-Year-cd.csv @@ -0,0 +1,75 @@ +title +"GPU Hours: Total: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"System Username","GPU Hours: Total" +noror,506.9128 +allga,0.0000 +alpsw,0.0000 +aytinis,0.0000 +blhbu,0.0000 +boowa,0.0000 +caspl,0.0000 +categ,0.0000 +chaff,0.0000 +coot1,0.0000 +corsh,0.0000 +crama,0.0000 +crane,0.0000 +dunli,0.0000 +duswa,0.0000 +egygo,0.0000 +evegr,0.0000 +ferdu,0.0000 +field,0.0000 +garwa,0.0000 +gloib,0.0000 +grath,0.0000 +grgsh,0.0000 +henha,0.0000 +honbu,0.0000 +hoowa,0.0000 +jackd,0.0000 +lanhach,0.0000 +lapwi,0.0000 +legsh,0.0000 +lesre,0.0000 +litau,0.0000 +litst,0.0000 +mamwa,0.0000 +meapi,0.0000 +misth,0.0000 +moorh,0.0000 +ovenb,0.0000 +pereg,0.0000 +pibgr,0.0000 +proubis,0.0000 +reebu,0.0000 +relpa,0.0000 +ribgu,0.0000 +rolle,0.0000 +sancr,0.0000 +sante,0.0000 +sarwa,0.0000 +savsp,0.0000 +shag1,0.0000 +shttr,0.0000 +siski,0.0000 +smew1,0.0000 +sogsh,0.0000 +sposa,0.0000 +swath,0.0000 +turdo,0.0000 +velsc,0.0000 +vertera,0.0000 +whimb,0.0000 +whtpl,0.0000 +whtsp,0.0000 +ybsbu,0.0000 +yebbu,0.0000 +yebsa,0.0000 +yebwa,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/total_gpu_hours/aggregate-Year-cs.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/total_gpu_hours/aggregate-Year-cs.csv new file mode 100644 index 0000000000..1c07c5387d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/total_gpu_hours/aggregate-Year-cs.csv @@ -0,0 +1,75 @@ +title +"GPU Hours: Total: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +"System Username","GPU Hours: Total" +noror,506.9128 +allga,0.0000 +alpsw,0.0000 +aytinis,0.0000 +blhbu,0.0000 +boowa,0.0000 +caspl,0.0000 +categ,0.0000 +chaff,0.0000 +coot1,0.0000 +corsh,0.0000 +crama,0.0000 +crane,0.0000 +dunli,0.0000 +duswa,0.0000 +egygo,0.0000 +evegr,0.0000 +ferdu,0.0000 +field,0.0000 +garwa,0.0000 +gloib,0.0000 +grath,0.0000 +grgsh,0.0000 +henha,0.0000 +honbu,0.0000 +hoowa,0.0000 +jackd,0.0000 +lanhach,0.0000 +lapwi,0.0000 +legsh,0.0000 +lesre,0.0000 +litau,0.0000 +litst,0.0000 +mamwa,0.0000 +meapi,0.0000 +misth,0.0000 +moorh,0.0000 +ovenb,0.0000 +pereg,0.0000 +pibgr,0.0000 +proubis,0.0000 +reebu,0.0000 +relpa,0.0000 +ribgu,0.0000 +rolle,0.0000 +sancr,0.0000 +sante,0.0000 +sarwa,0.0000 +savsp,0.0000 +shag1,0.0000 +shttr,0.0000 +siski,0.0000 +smew1,0.0000 +sogsh,0.0000 +sposa,0.0000 +swath,0.0000 +turdo,0.0000 +velsc,0.0000 +vertera,0.0000 +whimb,0.0000 +whtpl,0.0000 +whtsp,0.0000 +ybsbu,0.0000 +yebbu,0.0000 +yebsa,0.0000 +yebwa,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/total_gpu_hours/aggregate-Year-pi.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/total_gpu_hours/aggregate-Year-pi.csv new file mode 100644 index 0000000000..b3c02de7c8 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/total_gpu_hours/aggregate-Year-pi.csv @@ -0,0 +1,16 @@ +title +"GPU Hours: Total: by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2016-12-22,2017-01-01 +--------- +"System Username","GPU Hours: Total" +litst,0.0000 +ovenb,0.0000 +sante,0.0000 +savsp,0.0000 +swath,0.0000 +ybsbu,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/total_gpu_hours/aggregate-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/total_gpu_hours/aggregate-Year-reference.csv new file mode 100644 index 0000000000..9ed245d5c0 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/total_gpu_hours/aggregate-Year-reference.csv @@ -0,0 +1,14 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [ + + ], + "data": [ + + ], + "message": "Your user account does not have permission to view the requested data. If you\nbelieve that you should be able to see this information, then please select\n\"Submit Support Request\" in the \"Contact Us\" menu to request access.", + "code": 103 +} diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/total_gpu_hours/aggregate-Year-usr.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/total_gpu_hours/aggregate-Year-usr.csv new file mode 100644 index 0000000000..e542bc700e --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/total_gpu_hours/aggregate-Year-usr.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Total: by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2016-12-22,2017-01-01 +--------- +"System Username","GPU Hours: Total" +whimb,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/total_gpu_hours/timeseries-Day-cd.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/total_gpu_hours/timeseries-Day-cd.csv new file mode 100644 index 0000000000..191e00009f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/total_gpu_hours/timeseries-Day-cd.csv @@ -0,0 +1,20 @@ +title +"GPU Hours: Total: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[noror] GPU Hours: Total","[allga] GPU Hours: Total","[alpsw] GPU Hours: Total","[aytinis] GPU Hours: Total","[blhbu] GPU Hours: Total","[boowa] GPU Hours: Total","[caspl] GPU Hours: Total","[categ] GPU Hours: Total","[chaff] GPU Hours: Total","[coot1] GPU Hours: Total","[corsh] GPU Hours: Total","[crama] GPU Hours: Total","[crane] GPU Hours: Total","[dunli] GPU Hours: Total","[duswa] GPU Hours: Total","[egygo] GPU Hours: Total","[evegr] GPU Hours: Total","[ferdu] GPU Hours: Total","[field] GPU Hours: Total","[garwa] GPU Hours: Total","[gloib] GPU Hours: Total","[grath] GPU Hours: Total","[grgsh] GPU Hours: Total","[henha] GPU Hours: Total","[honbu] GPU Hours: Total","[hoowa] GPU Hours: Total","[jackd] GPU Hours: Total","[lanhach] GPU Hours: Total","[lapwi] GPU Hours: Total","[legsh] GPU Hours: Total","[lesre] GPU Hours: Total","[litau] GPU Hours: Total","[litst] GPU Hours: Total","[mamwa] GPU Hours: Total","[meapi] GPU Hours: Total","[misth] GPU Hours: Total","[moorh] GPU Hours: Total","[ovenb] GPU Hours: Total","[pereg] GPU Hours: Total","[pibgr] GPU Hours: Total","[proubis] GPU Hours: Total","[reebu] GPU Hours: Total","[relpa] GPU Hours: Total","[ribgu] GPU Hours: Total","[rolle] GPU Hours: Total","[sancr] GPU Hours: Total","[sante] GPU Hours: Total","[sarwa] GPU Hours: Total","[savsp] GPU Hours: Total","[shag1] GPU Hours: Total","[shttr] GPU Hours: Total","[siski] GPU Hours: Total","[smew1] GPU Hours: Total","[sogsh] GPU Hours: Total","[sposa] GPU Hours: Total","[swath] GPU Hours: Total","[turdo] GPU Hours: Total","[velsc] GPU Hours: Total","[vertera] GPU Hours: Total","[whimb] GPU Hours: Total","[whtpl] GPU Hours: Total","[whtsp] GPU Hours: Total","[ybsbu] GPU Hours: Total","[yebbu] GPU Hours: Total","[yebsa] GPU Hours: Total","[yebwa] GPU Hours: Total" +2016-12-22,33.4928,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0 +2016-12-23,48.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0 +2016-12-24,48.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0 +2016-12-25,48.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0 +2016-12-26,48.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0 +2016-12-27,48.0000,0,0,0,0,0.0000,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0.0000,0.0000,0,0,0.0000,0,0,0,0.0000,0,0,0,0.0000,0.0000,0,0,0,0.0000,0.0000,0,0,0,0,0.0000,0.0000,0,0,0,0,0.0000,0,0,0 +2016-12-28,48.0000,0,0,0.0000,0,0.0000,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0.0000,0.0000,0,0,0,0.0000,0.0000,0,0,0.0000,0,0,0,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0,0,0.0000,0,0,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0,0,0,0,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0 +2016-12-29,48.0000,0,0,0.0000,0,0.0000,0,0,0.0000,0,0.0000,0,0.0000,0,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0,0,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0,0.0000,0,0.0000,0.0000,0.0000,0.0000 +2016-12-30,48.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000 +2016-12-31,48.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0 +2017-01-01,41.4200,0,0.0000,0,0,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0,0,0.0000,0.0000,0.0000,0,0.0000,0,0,0.0000,0,0,0.0000,0.0000,0,0.0000,0.0000,0,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0,0.0000,0,0,0.0000,0.0000,0.0000,0.0000,0,0,0.0000,0.0000,0,0.0000,0,0.0000,0.0000,0,0.0000,0,0,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/total_gpu_hours/timeseries-Day-cs.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/total_gpu_hours/timeseries-Day-cs.csv new file mode 100644 index 0000000000..191e00009f --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/total_gpu_hours/timeseries-Day-cs.csv @@ -0,0 +1,20 @@ +title +"GPU Hours: Total: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Day,"[noror] GPU Hours: Total","[allga] GPU Hours: Total","[alpsw] GPU Hours: Total","[aytinis] GPU Hours: Total","[blhbu] GPU Hours: Total","[boowa] GPU Hours: Total","[caspl] GPU Hours: Total","[categ] GPU Hours: Total","[chaff] GPU Hours: Total","[coot1] GPU Hours: Total","[corsh] GPU Hours: Total","[crama] GPU Hours: Total","[crane] GPU Hours: Total","[dunli] GPU Hours: Total","[duswa] GPU Hours: Total","[egygo] GPU Hours: Total","[evegr] GPU Hours: Total","[ferdu] GPU Hours: Total","[field] GPU Hours: Total","[garwa] GPU Hours: Total","[gloib] GPU Hours: Total","[grath] GPU Hours: Total","[grgsh] GPU Hours: Total","[henha] GPU Hours: Total","[honbu] GPU Hours: Total","[hoowa] GPU Hours: Total","[jackd] GPU Hours: Total","[lanhach] GPU Hours: Total","[lapwi] GPU Hours: Total","[legsh] GPU Hours: Total","[lesre] GPU Hours: Total","[litau] GPU Hours: Total","[litst] GPU Hours: Total","[mamwa] GPU Hours: Total","[meapi] GPU Hours: Total","[misth] GPU Hours: Total","[moorh] GPU Hours: Total","[ovenb] GPU Hours: Total","[pereg] GPU Hours: Total","[pibgr] GPU Hours: Total","[proubis] GPU Hours: Total","[reebu] GPU Hours: Total","[relpa] GPU Hours: Total","[ribgu] GPU Hours: Total","[rolle] GPU Hours: Total","[sancr] GPU Hours: Total","[sante] GPU Hours: Total","[sarwa] GPU Hours: Total","[savsp] GPU Hours: Total","[shag1] GPU Hours: Total","[shttr] GPU Hours: Total","[siski] GPU Hours: Total","[smew1] GPU Hours: Total","[sogsh] GPU Hours: Total","[sposa] GPU Hours: Total","[swath] GPU Hours: Total","[turdo] GPU Hours: Total","[velsc] GPU Hours: Total","[vertera] GPU Hours: Total","[whimb] GPU Hours: Total","[whtpl] GPU Hours: Total","[whtsp] GPU Hours: Total","[ybsbu] GPU Hours: Total","[yebbu] GPU Hours: Total","[yebsa] GPU Hours: Total","[yebwa] GPU Hours: Total" +2016-12-22,33.4928,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0 +2016-12-23,48.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0 +2016-12-24,48.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0 +2016-12-25,48.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0 +2016-12-26,48.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0 +2016-12-27,48.0000,0,0,0,0,0.0000,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0.0000,0,0,0,0,0.0000,0,0,0,0,0,0,0,0,0.0000,0.0000,0,0,0.0000,0,0,0,0.0000,0,0,0,0.0000,0.0000,0,0,0,0.0000,0.0000,0,0,0,0,0.0000,0.0000,0,0,0,0,0.0000,0,0,0 +2016-12-28,48.0000,0,0,0.0000,0,0.0000,0,0,0.0000,0,0,0,0,0,0,0,0,0,0,0.0000,0.0000,0,0,0,0.0000,0.0000,0,0,0.0000,0,0,0,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0,0,0.0000,0,0,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0,0,0,0,0.0000,0.0000,0,0,0.0000,0,0.0000,0,0,0 +2016-12-29,48.0000,0,0,0.0000,0,0.0000,0,0,0.0000,0,0.0000,0,0.0000,0,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0,0,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0,0.0000,0,0.0000,0.0000,0.0000,0.0000 +2016-12-30,48.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000 +2016-12-31,48.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0.0000,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0.0000,0.0000,0.0000,0.0000,0 +2017-01-01,41.4200,0,0.0000,0,0,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0,0,0.0000,0.0000,0.0000,0,0.0000,0,0,0.0000,0,0,0.0000,0.0000,0,0.0000,0.0000,0,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0,0.0000,0,0,0.0000,0.0000,0.0000,0.0000,0,0,0.0000,0.0000,0,0.0000,0,0.0000,0.0000,0,0.0000,0,0,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/total_gpu_hours/timeseries-Day-pi.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/total_gpu_hours/timeseries-Day-pi.csv new file mode 100644 index 0000000000..077f95179a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/total_gpu_hours/timeseries-Day-pi.csv @@ -0,0 +1,20 @@ +title +"GPU Hours: Total: by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2016-12-22,2017-01-01 +--------- +Day,"[litst] GPU Hours: Total","[ovenb] GPU Hours: Total","[sante] GPU Hours: Total","[savsp] GPU Hours: Total","[swath] GPU Hours: Total","[ybsbu] GPU Hours: Total" +2016-12-23,0,0,0.0000,0,0,0 +2016-12-24,0,0,0.0000,0,0,0 +2016-12-25,0,0,0.0000,0,0,0 +2016-12-26,0,0,0.0000,0,0,0 +2016-12-27,0,0.0000,0.0000,0,0,0.0000 +2016-12-28,0,0.0000,0.0000,0,0,0.0000 +2016-12-29,0,0.0000,0.0000,0,0.0000,0.0000 +2016-12-30,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2016-12-31,0.0000,0.0000,0,0.0000,0.0000,0.0000 +2017-01-01,0,0.0000,0,0.0000,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/total_gpu_hours/timeseries-Day-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/total_gpu_hours/timeseries-Day-reference.csv new file mode 100644 index 0000000000..9ed245d5c0 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/total_gpu_hours/timeseries-Day-reference.csv @@ -0,0 +1,14 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [ + + ], + "data": [ + + ], + "message": "Your user account does not have permission to view the requested data. If you\nbelieve that you should be able to see this information, then please select\n\"Submit Support Request\" in the \"Contact Us\" menu to request access.", + "code": 103 +} diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/total_gpu_hours/timeseries-Day-usr.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/total_gpu_hours/timeseries-Day-usr.csv new file mode 100644 index 0000000000..1bd87ab109 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/total_gpu_hours/timeseries-Day-usr.csv @@ -0,0 +1,13 @@ +title +"GPU Hours: Total: by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2016-12-22,2017-01-01 +--------- +Day,"[whimb] GPU Hours: Total" +2016-12-30,0.0000 +2016-12-31,0.0000 +2017-01-01,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/total_gpu_hours/timeseries-Month-cd.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/total_gpu_hours/timeseries-Month-cd.csv new file mode 100644 index 0000000000..8a6892474a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/total_gpu_hours/timeseries-Month-cd.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Total: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[noror] GPU Hours: Total","[allga] GPU Hours: Total","[alpsw] GPU Hours: Total","[aytinis] GPU Hours: Total","[blhbu] GPU Hours: Total","[boowa] GPU Hours: Total","[caspl] GPU Hours: Total","[categ] GPU Hours: Total","[chaff] GPU Hours: Total","[coot1] GPU Hours: Total","[corsh] GPU Hours: Total","[crama] GPU Hours: Total","[crane] GPU Hours: Total","[dunli] GPU Hours: Total","[duswa] GPU Hours: Total","[egygo] GPU Hours: Total","[evegr] GPU Hours: Total","[ferdu] GPU Hours: Total","[field] GPU Hours: Total","[garwa] GPU Hours: Total","[gloib] GPU Hours: Total","[grath] GPU Hours: Total","[grgsh] GPU Hours: Total","[henha] GPU Hours: Total","[honbu] GPU Hours: Total","[hoowa] GPU Hours: Total","[jackd] GPU Hours: Total","[lanhach] GPU Hours: Total","[lapwi] GPU Hours: Total","[legsh] GPU Hours: Total","[lesre] GPU Hours: Total","[litau] GPU Hours: Total","[litst] GPU Hours: Total","[mamwa] GPU Hours: Total","[meapi] GPU Hours: Total","[misth] GPU Hours: Total","[moorh] GPU Hours: Total","[ovenb] GPU Hours: Total","[pereg] GPU Hours: Total","[pibgr] GPU Hours: Total","[proubis] GPU Hours: Total","[reebu] GPU Hours: Total","[relpa] GPU Hours: Total","[ribgu] GPU Hours: Total","[rolle] GPU Hours: Total","[sancr] GPU Hours: Total","[sante] GPU Hours: Total","[sarwa] GPU Hours: Total","[savsp] GPU Hours: Total","[shag1] GPU Hours: Total","[shttr] GPU Hours: Total","[siski] GPU Hours: Total","[smew1] GPU Hours: Total","[sogsh] GPU Hours: Total","[sposa] GPU Hours: Total","[swath] GPU Hours: Total","[turdo] GPU Hours: Total","[velsc] GPU Hours: Total","[vertera] GPU Hours: Total","[whimb] GPU Hours: Total","[whtpl] GPU Hours: Total","[whtsp] GPU Hours: Total","[ybsbu] GPU Hours: Total","[yebbu] GPU Hours: Total","[yebsa] GPU Hours: Total","[yebwa] GPU Hours: Total" +2016-12,465.4928,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2017-01,41.4200,0,0.0000,0,0,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0,0,0.0000,0.0000,0.0000,0,0.0000,0,0,0.0000,0,0,0.0000,0.0000,0,0.0000,0.0000,0,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0,0.0000,0,0,0.0000,0.0000,0.0000,0.0000,0,0,0.0000,0.0000,0,0.0000,0,0.0000,0.0000,0,0.0000,0,0,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/total_gpu_hours/timeseries-Month-cs.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/total_gpu_hours/timeseries-Month-cs.csv new file mode 100644 index 0000000000..8a6892474a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/total_gpu_hours/timeseries-Month-cs.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Total: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Month,"[noror] GPU Hours: Total","[allga] GPU Hours: Total","[alpsw] GPU Hours: Total","[aytinis] GPU Hours: Total","[blhbu] GPU Hours: Total","[boowa] GPU Hours: Total","[caspl] GPU Hours: Total","[categ] GPU Hours: Total","[chaff] GPU Hours: Total","[coot1] GPU Hours: Total","[corsh] GPU Hours: Total","[crama] GPU Hours: Total","[crane] GPU Hours: Total","[dunli] GPU Hours: Total","[duswa] GPU Hours: Total","[egygo] GPU Hours: Total","[evegr] GPU Hours: Total","[ferdu] GPU Hours: Total","[field] GPU Hours: Total","[garwa] GPU Hours: Total","[gloib] GPU Hours: Total","[grath] GPU Hours: Total","[grgsh] GPU Hours: Total","[henha] GPU Hours: Total","[honbu] GPU Hours: Total","[hoowa] GPU Hours: Total","[jackd] GPU Hours: Total","[lanhach] GPU Hours: Total","[lapwi] GPU Hours: Total","[legsh] GPU Hours: Total","[lesre] GPU Hours: Total","[litau] GPU Hours: Total","[litst] GPU Hours: Total","[mamwa] GPU Hours: Total","[meapi] GPU Hours: Total","[misth] GPU Hours: Total","[moorh] GPU Hours: Total","[ovenb] GPU Hours: Total","[pereg] GPU Hours: Total","[pibgr] GPU Hours: Total","[proubis] GPU Hours: Total","[reebu] GPU Hours: Total","[relpa] GPU Hours: Total","[ribgu] GPU Hours: Total","[rolle] GPU Hours: Total","[sancr] GPU Hours: Total","[sante] GPU Hours: Total","[sarwa] GPU Hours: Total","[savsp] GPU Hours: Total","[shag1] GPU Hours: Total","[shttr] GPU Hours: Total","[siski] GPU Hours: Total","[smew1] GPU Hours: Total","[sogsh] GPU Hours: Total","[sposa] GPU Hours: Total","[swath] GPU Hours: Total","[turdo] GPU Hours: Total","[velsc] GPU Hours: Total","[vertera] GPU Hours: Total","[whimb] GPU Hours: Total","[whtpl] GPU Hours: Total","[whtsp] GPU Hours: Total","[ybsbu] GPU Hours: Total","[yebbu] GPU Hours: Total","[yebsa] GPU Hours: Total","[yebwa] GPU Hours: Total" +2016-12,465.4928,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2017-01,41.4200,0,0.0000,0,0,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0,0,0.0000,0.0000,0.0000,0,0.0000,0,0,0.0000,0,0,0.0000,0.0000,0,0.0000,0.0000,0,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0,0.0000,0,0,0.0000,0.0000,0.0000,0.0000,0,0,0.0000,0.0000,0,0.0000,0,0.0000,0.0000,0,0.0000,0,0,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/total_gpu_hours/timeseries-Month-pi.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/total_gpu_hours/timeseries-Month-pi.csv new file mode 100644 index 0000000000..9b7e0e5494 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/total_gpu_hours/timeseries-Month-pi.csv @@ -0,0 +1,12 @@ +title +"GPU Hours: Total: by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2016-12-22,2017-01-01 +--------- +Month,"[litst] GPU Hours: Total","[ovenb] GPU Hours: Total","[sante] GPU Hours: Total","[savsp] GPU Hours: Total","[swath] GPU Hours: Total","[ybsbu] GPU Hours: Total" +2016-12,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2017-01,0,0.0000,0,0.0000,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/total_gpu_hours/timeseries-Month-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/total_gpu_hours/timeseries-Month-reference.csv new file mode 100644 index 0000000000..9ed245d5c0 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/total_gpu_hours/timeseries-Month-reference.csv @@ -0,0 +1,14 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [ + + ], + "data": [ + + ], + "message": "Your user account does not have permission to view the requested data. If you\nbelieve that you should be able to see this information, then please select\n\"Submit Support Request\" in the \"Contact Us\" menu to request access.", + "code": 103 +} diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/total_gpu_hours/timeseries-Month-usr.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/total_gpu_hours/timeseries-Month-usr.csv new file mode 100644 index 0000000000..3138a9b874 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/total_gpu_hours/timeseries-Month-usr.csv @@ -0,0 +1,12 @@ +title +"GPU Hours: Total: by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2016-12-22,2017-01-01 +--------- +Month,"[whimb] GPU Hours: Total" +2016-12,0.0000 +2017-01,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/total_gpu_hours/timeseries-Quarter-cd.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/total_gpu_hours/timeseries-Quarter-cd.csv new file mode 100644 index 0000000000..02d822c5ea --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/total_gpu_hours/timeseries-Quarter-cd.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Total: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[noror] GPU Hours: Total","[allga] GPU Hours: Total","[alpsw] GPU Hours: Total","[aytinis] GPU Hours: Total","[blhbu] GPU Hours: Total","[boowa] GPU Hours: Total","[caspl] GPU Hours: Total","[categ] GPU Hours: Total","[chaff] GPU Hours: Total","[coot1] GPU Hours: Total","[corsh] GPU Hours: Total","[crama] GPU Hours: Total","[crane] GPU Hours: Total","[dunli] GPU Hours: Total","[duswa] GPU Hours: Total","[egygo] GPU Hours: Total","[evegr] GPU Hours: Total","[ferdu] GPU Hours: Total","[field] GPU Hours: Total","[garwa] GPU Hours: Total","[gloib] GPU Hours: Total","[grath] GPU Hours: Total","[grgsh] GPU Hours: Total","[henha] GPU Hours: Total","[honbu] GPU Hours: Total","[hoowa] GPU Hours: Total","[jackd] GPU Hours: Total","[lanhach] GPU Hours: Total","[lapwi] GPU Hours: Total","[legsh] GPU Hours: Total","[lesre] GPU Hours: Total","[litau] GPU Hours: Total","[litst] GPU Hours: Total","[mamwa] GPU Hours: Total","[meapi] GPU Hours: Total","[misth] GPU Hours: Total","[moorh] GPU Hours: Total","[ovenb] GPU Hours: Total","[pereg] GPU Hours: Total","[pibgr] GPU Hours: Total","[proubis] GPU Hours: Total","[reebu] GPU Hours: Total","[relpa] GPU Hours: Total","[ribgu] GPU Hours: Total","[rolle] GPU Hours: Total","[sancr] GPU Hours: Total","[sante] GPU Hours: Total","[sarwa] GPU Hours: Total","[savsp] GPU Hours: Total","[shag1] GPU Hours: Total","[shttr] GPU Hours: Total","[siski] GPU Hours: Total","[smew1] GPU Hours: Total","[sogsh] GPU Hours: Total","[sposa] GPU Hours: Total","[swath] GPU Hours: Total","[turdo] GPU Hours: Total","[velsc] GPU Hours: Total","[vertera] GPU Hours: Total","[whimb] GPU Hours: Total","[whtpl] GPU Hours: Total","[whtsp] GPU Hours: Total","[ybsbu] GPU Hours: Total","[yebbu] GPU Hours: Total","[yebsa] GPU Hours: Total","[yebwa] GPU Hours: Total" +"2016 Q4",465.4928,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +"2017 Q1",41.4200,0,0.0000,0,0,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0,0,0.0000,0.0000,0.0000,0,0.0000,0,0,0.0000,0,0,0.0000,0.0000,0,0.0000,0.0000,0,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0,0.0000,0,0,0.0000,0.0000,0.0000,0.0000,0,0,0.0000,0.0000,0,0.0000,0,0.0000,0.0000,0,0.0000,0,0,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/total_gpu_hours/timeseries-Quarter-cs.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/total_gpu_hours/timeseries-Quarter-cs.csv new file mode 100644 index 0000000000..02d822c5ea --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/total_gpu_hours/timeseries-Quarter-cs.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Total: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[noror] GPU Hours: Total","[allga] GPU Hours: Total","[alpsw] GPU Hours: Total","[aytinis] GPU Hours: Total","[blhbu] GPU Hours: Total","[boowa] GPU Hours: Total","[caspl] GPU Hours: Total","[categ] GPU Hours: Total","[chaff] GPU Hours: Total","[coot1] GPU Hours: Total","[corsh] GPU Hours: Total","[crama] GPU Hours: Total","[crane] GPU Hours: Total","[dunli] GPU Hours: Total","[duswa] GPU Hours: Total","[egygo] GPU Hours: Total","[evegr] GPU Hours: Total","[ferdu] GPU Hours: Total","[field] GPU Hours: Total","[garwa] GPU Hours: Total","[gloib] GPU Hours: Total","[grath] GPU Hours: Total","[grgsh] GPU Hours: Total","[henha] GPU Hours: Total","[honbu] GPU Hours: Total","[hoowa] GPU Hours: Total","[jackd] GPU Hours: Total","[lanhach] GPU Hours: Total","[lapwi] GPU Hours: Total","[legsh] GPU Hours: Total","[lesre] GPU Hours: Total","[litau] GPU Hours: Total","[litst] GPU Hours: Total","[mamwa] GPU Hours: Total","[meapi] GPU Hours: Total","[misth] GPU Hours: Total","[moorh] GPU Hours: Total","[ovenb] GPU Hours: Total","[pereg] GPU Hours: Total","[pibgr] GPU Hours: Total","[proubis] GPU Hours: Total","[reebu] GPU Hours: Total","[relpa] GPU Hours: Total","[ribgu] GPU Hours: Total","[rolle] GPU Hours: Total","[sancr] GPU Hours: Total","[sante] GPU Hours: Total","[sarwa] GPU Hours: Total","[savsp] GPU Hours: Total","[shag1] GPU Hours: Total","[shttr] GPU Hours: Total","[siski] GPU Hours: Total","[smew1] GPU Hours: Total","[sogsh] GPU Hours: Total","[sposa] GPU Hours: Total","[swath] GPU Hours: Total","[turdo] GPU Hours: Total","[velsc] GPU Hours: Total","[vertera] GPU Hours: Total","[whimb] GPU Hours: Total","[whtpl] GPU Hours: Total","[whtsp] GPU Hours: Total","[ybsbu] GPU Hours: Total","[yebbu] GPU Hours: Total","[yebsa] GPU Hours: Total","[yebwa] GPU Hours: Total" +"2016 Q4",465.4928,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +"2017 Q1",41.4200,0,0.0000,0,0,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0,0,0.0000,0.0000,0.0000,0,0.0000,0,0,0.0000,0,0,0.0000,0.0000,0,0.0000,0.0000,0,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0,0.0000,0,0,0.0000,0.0000,0.0000,0.0000,0,0,0.0000,0.0000,0,0.0000,0,0.0000,0.0000,0,0.0000,0,0,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/total_gpu_hours/timeseries-Quarter-pi.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/total_gpu_hours/timeseries-Quarter-pi.csv new file mode 100644 index 0000000000..6c1457d625 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/total_gpu_hours/timeseries-Quarter-pi.csv @@ -0,0 +1,12 @@ +title +"GPU Hours: Total: by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[litst] GPU Hours: Total","[ovenb] GPU Hours: Total","[sante] GPU Hours: Total","[savsp] GPU Hours: Total","[swath] GPU Hours: Total","[ybsbu] GPU Hours: Total" +"2016 Q4",0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +"2017 Q1",0,0.0000,0,0.0000,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/total_gpu_hours/timeseries-Quarter-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/total_gpu_hours/timeseries-Quarter-reference.csv new file mode 100644 index 0000000000..9ed245d5c0 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/total_gpu_hours/timeseries-Quarter-reference.csv @@ -0,0 +1,14 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [ + + ], + "data": [ + + ], + "message": "Your user account does not have permission to view the requested data. If you\nbelieve that you should be able to see this information, then please select\n\"Submit Support Request\" in the \"Contact Us\" menu to request access.", + "code": 103 +} diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/total_gpu_hours/timeseries-Quarter-usr.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/total_gpu_hours/timeseries-Quarter-usr.csv new file mode 100644 index 0000000000..893e9ef464 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/total_gpu_hours/timeseries-Quarter-usr.csv @@ -0,0 +1,12 @@ +title +"GPU Hours: Total: by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2016-12-22,2017-01-01 +--------- +Quarter,"[whimb] GPU Hours: Total" +"2016 Q4",0.0000 +"2017 Q1",0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/total_gpu_hours/timeseries-Year-cd.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/total_gpu_hours/timeseries-Year-cd.csv new file mode 100644 index 0000000000..49cba0629a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/total_gpu_hours/timeseries-Year-cd.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Total: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[noror] GPU Hours: Total","[allga] GPU Hours: Total","[alpsw] GPU Hours: Total","[aytinis] GPU Hours: Total","[blhbu] GPU Hours: Total","[boowa] GPU Hours: Total","[caspl] GPU Hours: Total","[categ] GPU Hours: Total","[chaff] GPU Hours: Total","[coot1] GPU Hours: Total","[corsh] GPU Hours: Total","[crama] GPU Hours: Total","[crane] GPU Hours: Total","[dunli] GPU Hours: Total","[duswa] GPU Hours: Total","[egygo] GPU Hours: Total","[evegr] GPU Hours: Total","[ferdu] GPU Hours: Total","[field] GPU Hours: Total","[garwa] GPU Hours: Total","[gloib] GPU Hours: Total","[grath] GPU Hours: Total","[grgsh] GPU Hours: Total","[henha] GPU Hours: Total","[honbu] GPU Hours: Total","[hoowa] GPU Hours: Total","[jackd] GPU Hours: Total","[lanhach] GPU Hours: Total","[lapwi] GPU Hours: Total","[legsh] GPU Hours: Total","[lesre] GPU Hours: Total","[litau] GPU Hours: Total","[litst] GPU Hours: Total","[mamwa] GPU Hours: Total","[meapi] GPU Hours: Total","[misth] GPU Hours: Total","[moorh] GPU Hours: Total","[ovenb] GPU Hours: Total","[pereg] GPU Hours: Total","[pibgr] GPU Hours: Total","[proubis] GPU Hours: Total","[reebu] GPU Hours: Total","[relpa] GPU Hours: Total","[ribgu] GPU Hours: Total","[rolle] GPU Hours: Total","[sancr] GPU Hours: Total","[sante] GPU Hours: Total","[sarwa] GPU Hours: Total","[savsp] GPU Hours: Total","[shag1] GPU Hours: Total","[shttr] GPU Hours: Total","[siski] GPU Hours: Total","[smew1] GPU Hours: Total","[sogsh] GPU Hours: Total","[sposa] GPU Hours: Total","[swath] GPU Hours: Total","[turdo] GPU Hours: Total","[velsc] GPU Hours: Total","[vertera] GPU Hours: Total","[whimb] GPU Hours: Total","[whtpl] GPU Hours: Total","[whtsp] GPU Hours: Total","[ybsbu] GPU Hours: Total","[yebbu] GPU Hours: Total","[yebsa] GPU Hours: Total","[yebwa] GPU Hours: Total" +2016,465.4928,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2017,41.4200,0,0.0000,0,0,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0,0,0.0000,0.0000,0.0000,0,0.0000,0,0,0.0000,0,0,0.0000,0.0000,0,0.0000,0.0000,0,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0,0.0000,0,0,0.0000,0.0000,0.0000,0.0000,0,0,0.0000,0.0000,0,0.0000,0,0.0000,0.0000,0,0.0000,0,0,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/total_gpu_hours/timeseries-Year-cs.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/total_gpu_hours/timeseries-Year-cs.csv new file mode 100644 index 0000000000..49cba0629a --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/total_gpu_hours/timeseries-Year-cs.csv @@ -0,0 +1,11 @@ +title +"GPU Hours: Total: by System Username" +parameters + +start,end +2016-12-22,2017-01-01 +--------- +Year,"[noror] GPU Hours: Total","[allga] GPU Hours: Total","[alpsw] GPU Hours: Total","[aytinis] GPU Hours: Total","[blhbu] GPU Hours: Total","[boowa] GPU Hours: Total","[caspl] GPU Hours: Total","[categ] GPU Hours: Total","[chaff] GPU Hours: Total","[coot1] GPU Hours: Total","[corsh] GPU Hours: Total","[crama] GPU Hours: Total","[crane] GPU Hours: Total","[dunli] GPU Hours: Total","[duswa] GPU Hours: Total","[egygo] GPU Hours: Total","[evegr] GPU Hours: Total","[ferdu] GPU Hours: Total","[field] GPU Hours: Total","[garwa] GPU Hours: Total","[gloib] GPU Hours: Total","[grath] GPU Hours: Total","[grgsh] GPU Hours: Total","[henha] GPU Hours: Total","[honbu] GPU Hours: Total","[hoowa] GPU Hours: Total","[jackd] GPU Hours: Total","[lanhach] GPU Hours: Total","[lapwi] GPU Hours: Total","[legsh] GPU Hours: Total","[lesre] GPU Hours: Total","[litau] GPU Hours: Total","[litst] GPU Hours: Total","[mamwa] GPU Hours: Total","[meapi] GPU Hours: Total","[misth] GPU Hours: Total","[moorh] GPU Hours: Total","[ovenb] GPU Hours: Total","[pereg] GPU Hours: Total","[pibgr] GPU Hours: Total","[proubis] GPU Hours: Total","[reebu] GPU Hours: Total","[relpa] GPU Hours: Total","[ribgu] GPU Hours: Total","[rolle] GPU Hours: Total","[sancr] GPU Hours: Total","[sante] GPU Hours: Total","[sarwa] GPU Hours: Total","[savsp] GPU Hours: Total","[shag1] GPU Hours: Total","[shttr] GPU Hours: Total","[siski] GPU Hours: Total","[smew1] GPU Hours: Total","[sogsh] GPU Hours: Total","[sposa] GPU Hours: Total","[swath] GPU Hours: Total","[turdo] GPU Hours: Total","[velsc] GPU Hours: Total","[vertera] GPU Hours: Total","[whimb] GPU Hours: Total","[whtpl] GPU Hours: Total","[whtsp] GPU Hours: Total","[ybsbu] GPU Hours: Total","[yebbu] GPU Hours: Total","[yebsa] GPU Hours: Total","[yebwa] GPU Hours: Total" +2016,465.4928,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2017,41.4200,0,0.0000,0,0,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0,0,0.0000,0.0000,0.0000,0,0.0000,0,0,0.0000,0,0,0.0000,0.0000,0,0.0000,0.0000,0,0,0.0000,0.0000,0.0000,0.0000,0.0000,0,0.0000,0.0000,0,0,0.0000,0,0,0.0000,0.0000,0.0000,0.0000,0,0,0.0000,0.0000,0,0.0000,0,0.0000,0.0000,0,0.0000,0,0,0.0000,0.0000 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/total_gpu_hours/timeseries-Year-pi.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/total_gpu_hours/timeseries-Year-pi.csv new file mode 100644 index 0000000000..058213c69d --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/total_gpu_hours/timeseries-Year-pi.csv @@ -0,0 +1,12 @@ +title +"GPU Hours: Total: by System Username" +parameters + +"*Restricted To: PI = Tern, C OR User = Tern, C" +start,end +2016-12-22,2017-01-01 +--------- +Year,"[litst] GPU Hours: Total","[ovenb] GPU Hours: Total","[sante] GPU Hours: Total","[savsp] GPU Hours: Total","[swath] GPU Hours: Total","[ybsbu] GPU Hours: Total" +2016,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000 +2017,0,0.0000,0,0.0000,0,0 +--------- diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/total_gpu_hours/timeseries-Year-reference.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/total_gpu_hours/timeseries-Year-reference.csv new file mode 100644 index 0000000000..9ed245d5c0 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/total_gpu_hours/timeseries-Year-reference.csv @@ -0,0 +1,14 @@ +{ + "success": false, + "count": 0, + "total": 0, + "totalCount": 0, + "results": [ + + ], + "data": [ + + ], + "message": "Your user account does not have permission to view the requested data. If you\nbelieve that you should be able to see this information, then please select\n\"Submit Support Request\" in the \"Contact Us\" menu to request access.", + "code": 103 +} diff --git a/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/total_gpu_hours/timeseries-Year-usr.csv b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/total_gpu_hours/timeseries-Year-usr.csv new file mode 100644 index 0000000000..0e77529567 --- /dev/null +++ b/tests/artifacts/xdmod/regression/current/expected/reference/Jobs/username/total_gpu_hours/timeseries-Year-usr.csv @@ -0,0 +1,12 @@ +title +"GPU Hours: Total: by System Username" +parameters + +"*Restricted To: User = Whimbrel" +start,end +2016-12-22,2017-01-01 +--------- +Year,"[whimb] GPU Hours: Total" +2016,0.0000 +2017,0.0000 +--------- diff --git a/tests/artifacts/xdmod/rest/output/get_statistics-cd.json b/tests/artifacts/xdmod/rest/output/get_statistics-cd.json index 548bc299ae..8a309541e7 100644 --- a/tests/artifacts/xdmod/rest/output/get_statistics-cd.json +++ b/tests/artifacts/xdmod/rest/output/get_statistics-cd.json @@ -83,6 +83,23 @@ } ] }, + { + "title": "GPU Time (h)", + "items": [ + { + "title": "Total", + "fieldName": "total_gpu_hours", + "numberType": "float", + "numberFormat": "#,#.0" + }, + { + "title": "Avg (Per Job)", + "fieldName": "avg_gpu_hours", + "numberType": "float", + "numberFormat": "#,#.00" + } + ] + }, { "title": "Wait Time (h)", "items": [ diff --git a/tests/artifacts/xdmod/rest/output/get_statistics-cs.json b/tests/artifacts/xdmod/rest/output/get_statistics-cs.json index 548bc299ae..8a309541e7 100644 --- a/tests/artifacts/xdmod/rest/output/get_statistics-cs.json +++ b/tests/artifacts/xdmod/rest/output/get_statistics-cs.json @@ -83,6 +83,23 @@ } ] }, + { + "title": "GPU Time (h)", + "items": [ + { + "title": "Total", + "fieldName": "total_gpu_hours", + "numberType": "float", + "numberFormat": "#,#.0" + }, + { + "title": "Avg (Per Job)", + "fieldName": "avg_gpu_hours", + "numberType": "float", + "numberFormat": "#,#.00" + } + ] + }, { "title": "Wait Time (h)", "items": [ diff --git a/tests/artifacts/xdmod/rest/output/get_statistics-pi.json b/tests/artifacts/xdmod/rest/output/get_statistics-pi.json index 548bc299ae..8a309541e7 100644 --- a/tests/artifacts/xdmod/rest/output/get_statistics-pi.json +++ b/tests/artifacts/xdmod/rest/output/get_statistics-pi.json @@ -83,6 +83,23 @@ } ] }, + { + "title": "GPU Time (h)", + "items": [ + { + "title": "Total", + "fieldName": "total_gpu_hours", + "numberType": "float", + "numberFormat": "#,#.0" + }, + { + "title": "Avg (Per Job)", + "fieldName": "avg_gpu_hours", + "numberType": "float", + "numberFormat": "#,#.00" + } + ] + }, { "title": "Wait Time (h)", "items": [ diff --git a/tests/artifacts/xdmod/rest/output/get_statistics-pub.json b/tests/artifacts/xdmod/rest/output/get_statistics-pub.json index 548bc299ae..8a309541e7 100644 --- a/tests/artifacts/xdmod/rest/output/get_statistics-pub.json +++ b/tests/artifacts/xdmod/rest/output/get_statistics-pub.json @@ -83,6 +83,23 @@ } ] }, + { + "title": "GPU Time (h)", + "items": [ + { + "title": "Total", + "fieldName": "total_gpu_hours", + "numberType": "float", + "numberFormat": "#,#.0" + }, + { + "title": "Avg (Per Job)", + "fieldName": "avg_gpu_hours", + "numberType": "float", + "numberFormat": "#,#.00" + } + ] + }, { "title": "Wait Time (h)", "items": [ diff --git a/tests/artifacts/xdmod/rest/output/get_statistics-usr.json b/tests/artifacts/xdmod/rest/output/get_statistics-usr.json index 548bc299ae..8a309541e7 100644 --- a/tests/artifacts/xdmod/rest/output/get_statistics-usr.json +++ b/tests/artifacts/xdmod/rest/output/get_statistics-usr.json @@ -83,6 +83,23 @@ } ] }, + { + "title": "GPU Time (h)", + "items": [ + { + "title": "Total", + "fieldName": "total_gpu_hours", + "numberType": "float", + "numberFormat": "#,#.0" + }, + { + "title": "Avg (Per Job)", + "fieldName": "avg_gpu_hours", + "numberType": "float", + "numberFormat": "#,#.00" + } + ] + }, { "title": "Wait Time (h)", "items": [ diff --git a/tests/artifacts/xdmod/unit/shredder/slurm/input/accounting-logs-with-gpu-gres.log b/tests/artifacts/xdmod/unit/shredder/slurm/input/accounting-logs-with-gpu-gres.log new file mode 100644 index 0000000000..f1bba3e58e --- /dev/null +++ b/tests/artifacts/xdmod/unit/shredder/slurm/input/accounting-logs-with-gpu-gres.log @@ -0,0 +1,24 @@ +1|2|cluster|partition|account|group|3|user|4|2020-01-01T00:00:00|2020-01-01T00:00:01|2020-01-01T00:00:02|2020-01-01T00:00:03|0-00:00:01|0:0|COMPLETED|8|256|256|1000Mc|gpu:0||3-00:00:00|node[01-08]|jobname +1|2|cluster|partition|account|group|3|user|4|2020-01-01T00:00:00|2020-01-01T00:00:01|2020-01-01T00:00:02|2020-01-01T00:00:03|0-00:00:01|0:0|COMPLETED|8|256|256|1000Mc|gpu:1||3-00:00:00|node[01-08]|jobname +1|2|cluster|partition|account|group|3|user|4|2020-01-01T00:00:00|2020-01-01T00:00:01|2020-01-01T00:00:02|2020-01-01T00:00:03|0-00:00:01|0:0|COMPLETED|8|256|256|1000Mc|gpu:2||3-00:00:00|node[01-08]|jobname +1|2|cluster|partition|account|group|3|user|4|2020-01-01T00:00:00|2020-01-01T00:00:01|2020-01-01T00:00:02|2020-01-01T00:00:03|0-00:00:01|0:0|COMPLETED|8|256|256|1000Mc|gpu:16||3-00:00:00|node[01-08]|jobname +1|2|cluster|partition|account|group|3|user|4|2020-01-01T00:00:00|2020-01-01T00:00:01|2020-01-01T00:00:02|2020-01-01T00:00:03|0-00:00:01|0:0|COMPLETED|8|256|256|1000Mc|gpu:20||3-00:00:00|node[01-08]|jobname +1|2|cluster|partition|account|group|3|user|4|2020-01-01T00:00:00|2020-01-01T00:00:01|2020-01-01T00:00:02|2020-01-01T00:00:03|0-00:00:01|0:0|COMPLETED|8|256|256|1000Mc|gpu:128||3-00:00:00|node[01-08]|jobname +1|2|cluster|partition|account|group|3|user|4|2020-01-01T00:00:00|2020-01-01T00:00:01|2020-01-01T00:00:02|2020-01-01T00:00:03|0-00:00:01|0:0|COMPLETED|8|256|256|1000Mc|gpu:V100:0||3-00:00:00|node[01-08]|jobname +1|2|cluster|partition|account|group|3|user|4|2020-01-01T00:00:00|2020-01-01T00:00:01|2020-01-01T00:00:02|2020-01-01T00:00:03|0-00:00:01|0:0|COMPLETED|8|256|256|1000Mc|gpu:V100:1||3-00:00:00|node[01-08]|jobname +1|2|cluster|partition|account|group|3|user|4|2020-01-01T00:00:00|2020-01-01T00:00:01|2020-01-01T00:00:02|2020-01-01T00:00:03|0-00:00:01|0:0|COMPLETED|8|256|256|1000Mc|gpu:V100:2||3-00:00:00|node[01-08]|jobname +1|2|cluster|partition|account|group|3|user|4|2020-01-01T00:00:00|2020-01-01T00:00:01|2020-01-01T00:00:02|2020-01-01T00:00:03|0-00:00:01|0:0|COMPLETED|8|256|256|1000Mc|gpu:V100:32||3-00:00:00|node[01-08]|jobname +1|2|cluster|partition|account|group|3|user|4|2020-01-01T00:00:00|2020-01-01T00:00:01|2020-01-01T00:00:02|2020-01-01T00:00:03|0-00:00:01|0:0|COMPLETED|8|256|256|1000Mc|gpu:4,hbm:0||3-00:00:00|node[01-08]|jobname +1|2|cluster|partition|account|group|3|user|4|2020-01-01T00:00:00|2020-01-01T00:00:01|2020-01-01T00:00:02|2020-01-01T00:00:03|0-00:00:01|0:0|COMPLETED|8|256|256|1000Mc|hbm:0,gpu:4||3-00:00:00|node[01-08]|jobname +1|2|cluster|partition|account|group|3|user|4|2020-01-01T00:00:00|2020-01-01T00:00:01|2020-01-01T00:00:02|2020-01-01T00:00:03|0-00:00:01|0:0|COMPLETED|8|256|256|1000Mc|hbm:0,gpu:4,bandwidth:4G||3-00:00:00|node[01-08]|jobname +1|2|cluster|partition|account|group|3|user|4|2020-01-01T00:00:00|2020-01-01T00:00:01|2020-01-01T00:00:02|2020-01-01T00:00:03|0-00:00:01|0:0|COMPLETED|8|256|256|1000Mc|gpu:0(IDX:N/A)||3-00:00:00|node[01-08]|jobname +1|2|cluster|partition|account|group|3|user|4|2020-01-01T00:00:00|2020-01-01T00:00:01|2020-01-01T00:00:02|2020-01-01T00:00:03|0-00:00:01|0:0|COMPLETED|8|256|256|1000Mc|gpu:P100:0(IDX:N/A)||3-00:00:00|node[01-08]|jobname +1|2|cluster|partition|account|group|3|user|4|2020-01-01T00:00:00|2020-01-01T00:00:01|2020-01-01T00:00:02|2020-01-01T00:00:03|0-00:00:01|0:0|COMPLETED|8|256|256|1000Mc|gpu:P100:2(IDX:0-1)||3-00:00:00|node[01-08]|jobname +1|2|cluster|partition|account|group|3|user|4|2020-01-01T00:00:00|2020-01-01T00:00:01|2020-01-01T00:00:02|2020-01-01T00:00:03|0-00:00:01|0:0|COMPLETED|8|256|256|1000Mc|gpu:P100:2(IDX:1,3)||3-00:00:00|node[01-08]|jobname +1|2|cluster|partition|account|group|3|user|4|2020-01-01T00:00:00|2020-01-01T00:00:01|2020-01-01T00:00:02|2020-01-01T00:00:03|0-00:00:01|0:0|COMPLETED|8|256|256|1000Mc|hbm:0,gpu:P100:2(IDX:1,3)||3-00:00:00|node[01-08]|jobname +1|2|cluster|partition|account|group|3|user|4|2020-01-01T00:00:00|2020-01-01T00:00:01|2020-01-01T00:00:02|2020-01-01T00:00:03|0-00:00:01|0:0|COMPLETED|8|256|256|1000Mc|gpu:P100:2(IDX:1,3),hbm:0||3-00:00:00|node[01-08]|jobname +1|2|cluster|partition|account|group|3|user|4|2020-01-01T00:00:00|2020-01-01T00:00:01|2020-01-01T00:00:02|2020-01-01T00:00:03|0-00:00:01|0:0|COMPLETED|8|256|256|1000Mc|bandwidth:4G,gpu:P100:2(IDX:1,3),hbm:0||3-00:00:00|node[01-08]|jobname +1|2|cluster|partition|account|group|3|user|4|2020-01-01T00:00:00|2020-01-01T00:00:01|2020-01-01T00:00:02|2020-01-01T00:00:03|0-00:00:01|0:0|COMPLETED|8|256|256|1000Mc|gpu:P100:2(IDX:0,1)||3-00:00:00|node[01-08]|jobname +1|2|cluster|partition|account|group|3|user|4|2020-01-01T00:00:00|2020-01-01T00:00:01|2020-01-01T00:00:02|2020-01-01T00:00:03|0-00:00:01|0:0|COMPLETED|8|256|256|1000Mc|hbm:0,gpu:P100:2(IDX:0,1)||3-00:00:00|node[01-08]|jobname +1|2|cluster|partition|account|group|3|user|4|2020-01-01T00:00:00|2020-01-01T00:00:01|2020-01-01T00:00:02|2020-01-01T00:00:03|0-00:00:01|0:0|COMPLETED|8|256|256|1000Mc|gpu:P100:2(IDX:0,3),bandwidth:4G||3-00:00:00|node[01-08]|jobname +1|2|cluster|partition|account|group|3|user|4|2020-01-01T00:00:00|2020-01-01T00:00:01|2020-01-01T00:00:02|2020-01-01T00:00:03|0-00:00:01|0:0|COMPLETED|8|256|256|1000Mc|hbm:0,gpu:P100:2(IDX:0,3),bandwidth:4G||3-00:00:00|node[01-08]|jobname diff --git a/tests/artifacts/xdmod/unit/shredder/slurm/input/accounting-logs-with-job-arrays.log b/tests/artifacts/xdmod/unit/shredder/slurm/input/accounting-logs-with-job-arrays.log new file mode 100644 index 0000000000..c832b57388 --- /dev/null +++ b/tests/artifacts/xdmod/unit/shredder/slurm/input/accounting-logs-with-job-arrays.log @@ -0,0 +1,6 @@ +4103947_100|4103947|ub-hpc|general-compute|anon|anon|918273|unknown|192837|2015-06-26T13:57:00|2015-06-26T13:57:00|2015-06-28T02:55:50|2015-07-01T02:55:50|3-00:00:00|1:0|TIMEOUT|32|256|256|3000Mc|||3-00:00:00|d07n07s02,d07n19s02,d07n25s01,d07n28s01,d07n29s01,d07n31s02,d07n38s02,d09n04s[01-02],d09n05s02,d09n06s01,d09n07s01,d09n08s[01-02],d09n09s01,d09n11s[01-02],d09n13s01,d09n14s01,d09n15s01,d09n16s01,d09n17s01,d09n24s01,d09n25s02,d09n28s01,d09n35s01,d09n38s02,d13n[03,05,07-08,16]|1AbC-2-3 +4103947_[1-3]|4103947|ub-hpc|general-compute|anon|anon|918273|unknown|192837|2015-06-26T13:57:00|2015-06-26T13:57:00|2015-06-28T02:55:50|2015-07-01T02:55:50|3-00:00:00|1:0|TIMEOUT|32|256|256|3000Mc|||3-00:00:00|d07n07s02,d07n19s02,d07n25s01,d07n28s01,d07n29s01,d07n31s02,d07n38s02,d09n04s[01-02],d09n05s02,d09n06s01,d09n07s01,d09n08s[01-02],d09n09s01,d09n11s[01-02],d09n13s01,d09n14s01,d09n15s01,d09n16s01,d09n17s01,d09n24s01,d09n25s02,d09n28s01,d09n35s01,d09n38s02,d13n[03,05,07-08,16]|1AbC-2-3 +4103947_[1,5]|4103947|ub-hpc|general-compute|anon|anon|918273|unknown|192837|2015-06-26T13:57:00|2015-06-26T13:57:00|2015-06-28T02:55:50|2015-07-01T02:55:50|3-00:00:00|1:0|TIMEOUT|32|256|256|3000Mc|||3-00:00:00|d07n07s02,d07n19s02,d07n25s01,d07n28s01,d07n29s01,d07n31s02,d07n38s02,d09n04s[01-02],d09n05s02,d09n06s01,d09n07s01,d09n08s[01-02],d09n09s01,d09n11s[01-02],d09n13s01,d09n14s01,d09n15s01,d09n16s01,d09n17s01,d09n24s01,d09n25s02,d09n28s01,d09n35s01,d09n38s02,d13n[03,05,07-08,16]|1AbC-2-3 +4103947_[9-11,20]|4103947|ub-hpc|general-compute|anon|anon|918273|unknown|192837|2015-06-26T13:57:00|2015-06-26T13:57:00|2015-06-28T02:55:50|2015-07-01T02:55:50|3-00:00:00|1:0|TIMEOUT|32|256|256|3000Mc|||3-00:00:00|d07n07s02,d07n19s02,d07n25s01,d07n28s01,d07n29s01,d07n31s02,d07n38s02,d09n04s[01-02],d09n05s02,d09n06s01,d09n07s01,d09n08s[01-02],d09n09s01,d09n11s[01-02],d09n13s01,d09n14s01,d09n15s01,d09n16s01,d09n17s01,d09n24s01,d09n25s02,d09n28s01,d09n35s01,d09n38s02,d13n[03,05,07-08,16]|1AbC-2-3 +4103947_[91,100-102]|4103947|ub-hpc|general-compute|anon|anon|918273|unknown|192837|2015-06-26T13:57:00|2015-06-26T13:57:00|2015-06-28T02:55:50|2015-07-01T02:55:50|3-00:00:00|1:0|TIMEOUT|32|256|256|3000Mc|||3-00:00:00|d07n07s02,d07n19s02,d07n25s01,d07n28s01,d07n29s01,d07n31s02,d07n38s02,d09n04s[01-02],d09n05s02,d09n06s01,d09n07s01,d09n08s[01-02],d09n09s01,d09n11s[01-02],d09n13s01,d09n14s01,d09n15s01,d09n16s01,d09n17s01,d09n24s01,d09n25s02,d09n28s01,d09n35s01,d09n38s02,d13n[03,05,07-08,16]|1AbC-2-3 +4103947_[9-11,13,16-20]|4103947|ub-hpc|general-compute|anon|anon|918273|unknown|192837|2015-06-26T13:57:00|2015-06-26T13:57:00|2015-06-28T02:55:50|2015-07-01T02:55:50|3-00:00:00|1:0|TIMEOUT|32|256|256|3000Mc|||3-00:00:00|d07n07s02,d07n19s02,d07n25s01,d07n28s01,d07n29s01,d07n31s02,d07n38s02,d09n04s[01-02],d09n05s02,d09n06s01,d09n07s01,d09n08s[01-02],d09n09s01,d09n11s[01-02],d09n13s01,d09n14s01,d09n15s01,d09n16s01,d09n17s01,d09n24s01,d09n25s02,d09n28s01,d09n35s01,d09n38s02,d13n[03,05,07-08,16]|1AbC-2-3 diff --git a/tests/artifacts/xdmod/unit/shredder/slurm/input/accounting-logs.log b/tests/artifacts/xdmod/unit/shredder/slurm/input/accounting-logs.log new file mode 100644 index 0000000000..90cd35b557 --- /dev/null +++ b/tests/artifacts/xdmod/unit/shredder/slurm/input/accounting-logs.log @@ -0,0 +1,4 @@ +4103947|4103947|ub-hpc|general-compute|anon|anon|918273|unknown|192837|2015-06-26T13:57:00|2015-06-26T13:57:00|2015-06-28T02:55:50|2015-07-01T02:55:50|3-00:00:00|1:0|TIMEOUT|32|256|256|3000Mc|||3-00:00:00|d07n07s02,d07n19s02,d07n25s01,d07n28s01,d07n29s01,d07n31s02,d07n38s02,d09n04s[01-02],d09n05s02,d09n06s01,d09n07s01,d09n08s[01-02],d09n09s01,d09n11s[01-02],d09n13s01,d09n14s01,d09n15s01,d09n16s01,d09n17s01,d09n24s01,d09n25s02,d09n28s01,d09n35s01,d09n38s02,d13n[03,05,07-08,16]|1AbC-2-3 +4107166|4107166|ub-hpc|general-compute|dspumpkins|dspumpkins|103116|hanx|102216|2015-06-26T19:51:25|2015-06-26T19:51:26|2015-06-28T15:14:49|2015-07-01T13:17:53|2-22:03:04|0:0|CANCELLED by 102216|3|36|36|48000Mn|||3-00:00:00|k10n26s01,k13n36s01,k13n37s01|100-Floors-of-Frights +4107219|4107219|ub-hpc|general-compute|anonacct|anongroup|456123|anonuser|10101010|2015-06-26T20:22:22|2015-06-26T20:22:22|2015-06-30T12:04:04|2015-07-01T02:04:53|14:00:49|0:0|COMPLETED|4|48|48|3000Mc||cpu=48,mem=144000M,node=4|14:20:00|k07n07s01,k08n02s01,k08n05s01,k08n13s01|anonjobname +5692623|5692623|ub-hpc||ccr|na|0|xms|987654321|2016-08-01T06:01:08|Unknown|2016-08-01T07:04:09|2016-08-01T07:04:09|00:00:00|0:0|COMPLETED|0|0|0|0n|gpu:2|||cpn-k16-35-01,cpn-k16-37-01|allocation diff --git a/tests/artifacts/xdmod/unit/shredder/slurm/output/accounting-logs-with-gpu-gres.json b/tests/artifacts/xdmod/unit/shredder/slurm/output/accounting-logs-with-gpu-gres.json new file mode 100644 index 0000000000..48d0bb7def --- /dev/null +++ b/tests/artifacts/xdmod/unit/shredder/slurm/output/accounting-logs-with-gpu-gres.json @@ -0,0 +1,26 @@ +[ + 0, + 1, + 2, + 16, + 20, + 128, + 0, + 1, + 2, + 32, + 4, + 4, + 4, + 0, + 0, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2 +] diff --git a/tests/artifacts/xdmod/unit/shredder/slurm/output/accounting-logs-with-job-arrays.json b/tests/artifacts/xdmod/unit/shredder/slurm/output/accounting-logs-with-job-arrays.json new file mode 100644 index 0000000000..1516bebb91 --- /dev/null +++ b/tests/artifacts/xdmod/unit/shredder/slurm/output/accounting-logs-with-job-arrays.json @@ -0,0 +1,8 @@ +[ + [100], + [1, 2, 3], + [1, 5], + [9, 10, 11, 20], + [91, 100, 101, 102], + [9, 10, 11, 13, 16, 17, 18, 19, 20] +] diff --git a/tests/artifacts/xdmod/unit/shredder/slurm/output/accounting-logs.json b/tests/artifacts/xdmod/unit/shredder/slurm/output/accounting-logs.json new file mode 100644 index 0000000000..fb39f3bfed --- /dev/null +++ b/tests/artifacts/xdmod/unit/shredder/slurm/output/accounting-logs.json @@ -0,0 +1,118 @@ +[ + { + "job_id": "4103947", + "job_id_raw": "4103947", + "job_array_index": -1, + "cluster_name": "testresource", + "partition_name": "general-compute", + "account_name": "anon", + "group_name": "anon", + "gid_number": "918273", + "user_name": "unknown", + "uid_number": "192837", + "submit_time": 1435327020, + "eligible_time": 1435327020, + "start_time": 1435460150, + "end_time": 1435719350, + "elapsed": 259200, + "exit_code": "1:0", + "state": "TIMEOUT", + "nnodes": "32", + "ncpus": "256", + "req_cpus": "256", + "req_mem": "3000Mc", + "req_gres": "", + "req_tres": "", + "timelimit": 259200, + "node_list": "d07n07s02,d07n19s02,d07n25s01,d07n28s01,d07n29s01,d07n31s02,d07n38s02,d09n04s[01-02],d09n05s02,d09n06s01,d09n07s01,d09n08s[01-02],d09n09s01,d09n11s[01-02],d09n13s01,d09n14s01,d09n15s01,d09n16s01,d09n17s01,d09n24s01,d09n25s02,d09n28s01,d09n35s01,d09n38s02,d13n[03,05,07-08,16]", + "job_name": "1AbC-2-3", + "ngpus": 0 + }, + { + "job_id": "4107166", + "job_id_raw": "4107166", + "job_array_index": -1, + "cluster_name": "testresource", + "partition_name": "general-compute", + "account_name": "dspumpkins", + "group_name": "dspumpkins", + "gid_number": "103116", + "user_name": "hanx", + "uid_number": "102216", + "submit_time": 1435348285, + "eligible_time": 1435348286, + "start_time": 1435504489, + "end_time": 1435756673, + "elapsed": 252184, + "exit_code": "0:0", + "state": "CANCELLED by 102216", + "nnodes": "3", + "ncpus": "36", + "req_cpus": "36", + "req_mem": "48000Mn", + "req_gres": "", + "req_tres": "", + "timelimit": 259200, + "node_list": "k10n26s01,k13n36s01,k13n37s01", + "job_name": "100-Floors-of-Frights", + "ngpus": 0 + }, + { + "job_id": "4107219", + "job_id_raw": "4107219", + "job_array_index": -1, + "cluster_name": "testresource", + "partition_name": "general-compute", + "account_name": "anonacct", + "group_name": "anongroup", + "gid_number": "456123", + "user_name": "anonuser", + "uid_number": "10101010", + "submit_time": 1435350142, + "eligible_time": 1435350142, + "start_time": 1435665844, + "end_time": 1435716293, + "elapsed": 50449, + "exit_code": "0:0", + "state": "COMPLETED", + "nnodes": "4", + "ncpus": "48", + "req_cpus": "48", + "req_mem": "3000Mc", + "req_gres": "", + "req_tres": "cpu=48,mem=144000M,node=4", + "timelimit": 51600, + "node_list": "k07n07s01,k08n02s01,k08n05s01,k08n13s01", + "job_name": "anonjobname", + "ngpus": 0 + }, + { + "job_id": "5692623", + "job_id_raw": "5692623", + "job_array_index": -1, + "cluster_name": "testresource", + "partition_name": "", + "account_name": "ccr", + "group_name": "na", + "gid_number": "0", + "user_name": "xms", + "uid_number": "987654321", + "submit_time": 1470031268, + "eligible_time": null, + "start_time": 1470035049, + "end_time": 1470035049, + "elapsed": 0, + "exit_code": "0:0", + "state": "COMPLETED", + "nnodes": "0", + "ncpus": "0", + "req_cpus": "0", + "req_mem": "0n", + "req_gres": "gpu:2", + "req_tres": "", + "timelimit": null, + "node_list": "cpn-k16-35-01,cpn-k16-37-01", + "job_name": "allocation", + "ngpus": 2 + } +] diff --git a/tests/artifacts/xdmod/unit/slurm-gres-parser/gpu-count.json b/tests/artifacts/xdmod/unit/slurm-gres-parser/gpu-count.json new file mode 100644 index 0000000000..5fffb0ec3e --- /dev/null +++ b/tests/artifacts/xdmod/unit/slurm-gres-parser/gpu-count.json @@ -0,0 +1,110 @@ +[ + [ + "", + 0 + ], + [ + "hbm:2g", + 0 + ], + [ + "hbm:2g,bandwidth:4G", + 0 + ], + [ + "gpu:0", + 0 + ], + [ + "gpu:1", + 1 + ], + [ + "gpu:2", + 2 + ], + [ + "gpu:16", + 16 + ], + [ + "gpu:20", + 20 + ], + [ + "gpu:128", + 128 + ], + [ + "gpu:V100:0", + 0 + ], + [ + "gpu:V100:1", + 1 + ], + [ + "gpu:V100:2", + 2 + ], + [ + "gpu:V100:32", + 32 + ], + [ + "gpu:4,hbm:0", + 4 + ], + [ + "hbm:0,gpu:4", + 4 + ], + [ + "hbm:0,gpu:4,bandwidth:4G", + 4 + ], + [ + "gpu:0(IDX:N/A)", + 0 + ], + [ + "gpu:P100:0(IDX:N/A)", + 0 + ], + [ + "gpu:P100:2(IDX:0-1)", + 2 + ], + [ + "gpu:P100:2(IDX:1,3)", + 2 + ], + [ + "hbm:0,gpu:P100:2(IDX:1,3)", + 2 + ], + [ + "gpu:P100:2(IDX:1,3),hbm:0", + 2 + ], + [ + "bandwidth:4G,gpu:P100:2(IDX:1,3),hbm:0", + 2 + ], + [ + "gpu:P100:2(IDX:0,1)", + 2 + ], + [ + "hbm:0,gpu:P100:2(IDX:0,1)", + 2 + ], + [ + "gpu:P100:2(IDX:0,3),bandwidth:4G", + 2 + ], + [ + "hbm:0,gpu:P100:2(IDX:0,3),bandwidth:4G", + 2 + ] +] diff --git a/tests/artifacts/xdmod/user_admin/output/jobs/get_menus-Public User-1.json b/tests/artifacts/xdmod/user_admin/output/jobs/get_menus-Public User-1.json index 5ad7088ff4..3cc31bba44 100644 --- a/tests/artifacts/xdmod/user_admin/output/jobs/get_menus-Public User-1.json +++ b/tests/artifacts/xdmod/user_admin/output/jobs/get_menus-Public User-1.json @@ -41,6 +41,20 @@ "description": "Department", "leaf": false }, + { + "text": "Jobs by GPU Count", + "id": "group_by_Jobs_gpucount", + "group_by": "gpucount", + "query_group": "tg_usage", + "category": "Jobs", + "realm": "Jobs", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "GPU Count", + "leaf": false + }, { "text": "Jobs by Job Size", "id": "group_by_Jobs_jobsize", diff --git a/tests/artifacts/xdmod/user_admin/output/jobs/get_menus-admin-1.json b/tests/artifacts/xdmod/user_admin/output/jobs/get_menus-admin-1.json index 5ad7088ff4..3cc31bba44 100644 --- a/tests/artifacts/xdmod/user_admin/output/jobs/get_menus-admin-1.json +++ b/tests/artifacts/xdmod/user_admin/output/jobs/get_menus-admin-1.json @@ -41,6 +41,20 @@ "description": "Department", "leaf": false }, + { + "text": "Jobs by GPU Count", + "id": "group_by_Jobs_gpucount", + "group_by": "gpucount", + "query_group": "tg_usage", + "category": "Jobs", + "realm": "Jobs", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "GPU Count", + "leaf": false + }, { "text": "Jobs by Job Size", "id": "group_by_Jobs_jobsize", diff --git a/tests/artifacts/xdmod/user_admin/output/jobs/get_menus-centerdirector-1.json b/tests/artifacts/xdmod/user_admin/output/jobs/get_menus-centerdirector-1.json index 5ad7088ff4..3cc31bba44 100644 --- a/tests/artifacts/xdmod/user_admin/output/jobs/get_menus-centerdirector-1.json +++ b/tests/artifacts/xdmod/user_admin/output/jobs/get_menus-centerdirector-1.json @@ -41,6 +41,20 @@ "description": "Department", "leaf": false }, + { + "text": "Jobs by GPU Count", + "id": "group_by_Jobs_gpucount", + "group_by": "gpucount", + "query_group": "tg_usage", + "category": "Jobs", + "realm": "Jobs", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "GPU Count", + "leaf": false + }, { "text": "Jobs by Job Size", "id": "group_by_Jobs_jobsize", diff --git a/tests/artifacts/xdmod/user_admin/output/jobs/get_menus-centerstaff-1.json b/tests/artifacts/xdmod/user_admin/output/jobs/get_menus-centerstaff-1.json index 5ad7088ff4..3cc31bba44 100644 --- a/tests/artifacts/xdmod/user_admin/output/jobs/get_menus-centerstaff-1.json +++ b/tests/artifacts/xdmod/user_admin/output/jobs/get_menus-centerstaff-1.json @@ -41,6 +41,20 @@ "description": "Department", "leaf": false }, + { + "text": "Jobs by GPU Count", + "id": "group_by_Jobs_gpucount", + "group_by": "gpucount", + "query_group": "tg_usage", + "category": "Jobs", + "realm": "Jobs", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "GPU Count", + "leaf": false + }, { "text": "Jobs by Job Size", "id": "group_by_Jobs_jobsize", diff --git a/tests/artifacts/xdmod/user_admin/output/jobs/get_menus-normaluser-1.json b/tests/artifacts/xdmod/user_admin/output/jobs/get_menus-normaluser-1.json index 5ad7088ff4..3cc31bba44 100644 --- a/tests/artifacts/xdmod/user_admin/output/jobs/get_menus-normaluser-1.json +++ b/tests/artifacts/xdmod/user_admin/output/jobs/get_menus-normaluser-1.json @@ -41,6 +41,20 @@ "description": "Department", "leaf": false }, + { + "text": "Jobs by GPU Count", + "id": "group_by_Jobs_gpucount", + "group_by": "gpucount", + "query_group": "tg_usage", + "category": "Jobs", + "realm": "Jobs", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "GPU Count", + "leaf": false + }, { "text": "Jobs by Job Size", "id": "group_by_Jobs_jobsize", diff --git a/tests/artifacts/xdmod/user_admin/output/jobs/get_menus-principal-1.json b/tests/artifacts/xdmod/user_admin/output/jobs/get_menus-principal-1.json index 5ad7088ff4..3cc31bba44 100644 --- a/tests/artifacts/xdmod/user_admin/output/jobs/get_menus-principal-1.json +++ b/tests/artifacts/xdmod/user_admin/output/jobs/get_menus-principal-1.json @@ -41,6 +41,20 @@ "description": "Department", "leaf": false }, + { + "text": "Jobs by GPU Count", + "id": "group_by_Jobs_gpucount", + "group_by": "gpucount", + "query_group": "tg_usage", + "category": "Jobs", + "realm": "Jobs", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "GPU Count", + "leaf": false + }, { "text": "Jobs by Job Size", "id": "group_by_Jobs_jobsize", diff --git a/tests/artifacts/xdmod/user_admin/output/jobs/get_menus-test.cd.one-center-1.json b/tests/artifacts/xdmod/user_admin/output/jobs/get_menus-test.cd.one-center-1.json index 5ad7088ff4..3cc31bba44 100644 --- a/tests/artifacts/xdmod/user_admin/output/jobs/get_menus-test.cd.one-center-1.json +++ b/tests/artifacts/xdmod/user_admin/output/jobs/get_menus-test.cd.one-center-1.json @@ -41,6 +41,20 @@ "description": "Department", "leaf": false }, + { + "text": "Jobs by GPU Count", + "id": "group_by_Jobs_gpucount", + "group_by": "gpucount", + "query_group": "tg_usage", + "category": "Jobs", + "realm": "Jobs", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "GPU Count", + "leaf": false + }, { "text": "Jobs by Job Size", "id": "group_by_Jobs_jobsize", diff --git a/tests/artifacts/xdmod/user_admin/output/jobs/get_menus-test.cs.one-center-1.json b/tests/artifacts/xdmod/user_admin/output/jobs/get_menus-test.cs.one-center-1.json index 5ad7088ff4..3cc31bba44 100644 --- a/tests/artifacts/xdmod/user_admin/output/jobs/get_menus-test.cs.one-center-1.json +++ b/tests/artifacts/xdmod/user_admin/output/jobs/get_menus-test.cs.one-center-1.json @@ -41,6 +41,20 @@ "description": "Department", "leaf": false }, + { + "text": "Jobs by GPU Count", + "id": "group_by_Jobs_gpucount", + "group_by": "gpucount", + "query_group": "tg_usage", + "category": "Jobs", + "realm": "Jobs", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "GPU Count", + "leaf": false + }, { "text": "Jobs by Job Size", "id": "group_by_Jobs_jobsize", diff --git a/tests/artifacts/xdmod/user_admin/output/jobs/get_menus-test.normal-user-1.json b/tests/artifacts/xdmod/user_admin/output/jobs/get_menus-test.normal-user-1.json index 5ad7088ff4..3cc31bba44 100644 --- a/tests/artifacts/xdmod/user_admin/output/jobs/get_menus-test.normal-user-1.json +++ b/tests/artifacts/xdmod/user_admin/output/jobs/get_menus-test.normal-user-1.json @@ -41,6 +41,20 @@ "description": "Department", "leaf": false }, + { + "text": "Jobs by GPU Count", + "id": "group_by_Jobs_gpucount", + "group_by": "gpucount", + "query_group": "tg_usage", + "category": "Jobs", + "realm": "Jobs", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "GPU Count", + "leaf": false + }, { "text": "Jobs by Job Size", "id": "group_by_Jobs_jobsize", diff --git a/tests/artifacts/xdmod/user_admin/output/jobs/get_menus-test.pi-1.json b/tests/artifacts/xdmod/user_admin/output/jobs/get_menus-test.pi-1.json index 5ad7088ff4..3cc31bba44 100644 --- a/tests/artifacts/xdmod/user_admin/output/jobs/get_menus-test.pi-1.json +++ b/tests/artifacts/xdmod/user_admin/output/jobs/get_menus-test.pi-1.json @@ -41,6 +41,20 @@ "description": "Department", "leaf": false }, + { + "text": "Jobs by GPU Count", + "id": "group_by_Jobs_gpucount", + "group_by": "gpucount", + "query_group": "tg_usage", + "category": "Jobs", + "realm": "Jobs", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "GPU Count", + "leaf": false + }, { "text": "Jobs by Job Size", "id": "group_by_Jobs_jobsize", diff --git a/tests/artifacts/xdmod/user_admin/output/jobs/get_menus-test.usr_dev-1.json b/tests/artifacts/xdmod/user_admin/output/jobs/get_menus-test.usr_dev-1.json index 5ad7088ff4..3cc31bba44 100644 --- a/tests/artifacts/xdmod/user_admin/output/jobs/get_menus-test.usr_dev-1.json +++ b/tests/artifacts/xdmod/user_admin/output/jobs/get_menus-test.usr_dev-1.json @@ -41,6 +41,20 @@ "description": "Department", "leaf": false }, + { + "text": "Jobs by GPU Count", + "id": "group_by_Jobs_gpucount", + "group_by": "gpucount", + "query_group": "tg_usage", + "category": "Jobs", + "realm": "Jobs", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "GPU Count", + "leaf": false + }, { "text": "Jobs by Job Size", "id": "group_by_Jobs_jobsize", diff --git a/tests/artifacts/xdmod/user_admin/output/jobs/get_menus-test.usr_mgr-1.json b/tests/artifacts/xdmod/user_admin/output/jobs/get_menus-test.usr_mgr-1.json index 5ad7088ff4..3cc31bba44 100644 --- a/tests/artifacts/xdmod/user_admin/output/jobs/get_menus-test.usr_mgr-1.json +++ b/tests/artifacts/xdmod/user_admin/output/jobs/get_menus-test.usr_mgr-1.json @@ -41,6 +41,20 @@ "description": "Department", "leaf": false }, + { + "text": "Jobs by GPU Count", + "id": "group_by_Jobs_gpucount", + "group_by": "gpucount", + "query_group": "tg_usage", + "category": "Jobs", + "realm": "Jobs", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "GPU Count", + "leaf": false + }, { "text": "Jobs by Job Size", "id": "group_by_Jobs_jobsize", diff --git a/tests/artifacts/xdmod/user_admin/output/jobs/get_menus-test.usr_mgr_dev-1.json b/tests/artifacts/xdmod/user_admin/output/jobs/get_menus-test.usr_mgr_dev-1.json index 5ad7088ff4..3cc31bba44 100644 --- a/tests/artifacts/xdmod/user_admin/output/jobs/get_menus-test.usr_mgr_dev-1.json +++ b/tests/artifacts/xdmod/user_admin/output/jobs/get_menus-test.usr_mgr_dev-1.json @@ -41,6 +41,20 @@ "description": "Department", "leaf": false }, + { + "text": "Jobs by GPU Count", + "id": "group_by_Jobs_gpucount", + "group_by": "gpucount", + "query_group": "tg_usage", + "category": "Jobs", + "realm": "Jobs", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "GPU Count", + "leaf": false + }, { "text": "Jobs by Job Size", "id": "group_by_Jobs_jobsize", diff --git a/tests/artifacts/xdmod/user_interface/output/jobs/cd-get_menus.json b/tests/artifacts/xdmod/user_interface/output/jobs/cd-get_menus.json index 5ad7088ff4..3cc31bba44 100644 --- a/tests/artifacts/xdmod/user_interface/output/jobs/cd-get_menus.json +++ b/tests/artifacts/xdmod/user_interface/output/jobs/cd-get_menus.json @@ -41,6 +41,20 @@ "description": "Department", "leaf": false }, + { + "text": "Jobs by GPU Count", + "id": "group_by_Jobs_gpucount", + "group_by": "gpucount", + "query_group": "tg_usage", + "category": "Jobs", + "realm": "Jobs", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "GPU Count", + "leaf": false + }, { "text": "Jobs by Job Size", "id": "group_by_Jobs_jobsize", diff --git a/tests/artifacts/xdmod/user_interface/output/jobs/cs-get_menus.json b/tests/artifacts/xdmod/user_interface/output/jobs/cs-get_menus.json index 5ad7088ff4..3cc31bba44 100644 --- a/tests/artifacts/xdmod/user_interface/output/jobs/cs-get_menus.json +++ b/tests/artifacts/xdmod/user_interface/output/jobs/cs-get_menus.json @@ -41,6 +41,20 @@ "description": "Department", "leaf": false }, + { + "text": "Jobs by GPU Count", + "id": "group_by_Jobs_gpucount", + "group_by": "gpucount", + "query_group": "tg_usage", + "category": "Jobs", + "realm": "Jobs", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "GPU Count", + "leaf": false + }, { "text": "Jobs by Job Size", "id": "group_by_Jobs_jobsize", diff --git a/tests/artifacts/xdmod/user_interface/output/jobs/pi-get_menus.json b/tests/artifacts/xdmod/user_interface/output/jobs/pi-get_menus.json index 5ad7088ff4..3cc31bba44 100644 --- a/tests/artifacts/xdmod/user_interface/output/jobs/pi-get_menus.json +++ b/tests/artifacts/xdmod/user_interface/output/jobs/pi-get_menus.json @@ -41,6 +41,20 @@ "description": "Department", "leaf": false }, + { + "text": "Jobs by GPU Count", + "id": "group_by_Jobs_gpucount", + "group_by": "gpucount", + "query_group": "tg_usage", + "category": "Jobs", + "realm": "Jobs", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "GPU Count", + "leaf": false + }, { "text": "Jobs by Job Size", "id": "group_by_Jobs_jobsize", diff --git a/tests/artifacts/xdmod/user_interface/output/jobs/pub-get_menus.json b/tests/artifacts/xdmod/user_interface/output/jobs/pub-get_menus.json index 5ad7088ff4..3cc31bba44 100644 --- a/tests/artifacts/xdmod/user_interface/output/jobs/pub-get_menus.json +++ b/tests/artifacts/xdmod/user_interface/output/jobs/pub-get_menus.json @@ -41,6 +41,20 @@ "description": "Department", "leaf": false }, + { + "text": "Jobs by GPU Count", + "id": "group_by_Jobs_gpucount", + "group_by": "gpucount", + "query_group": "tg_usage", + "category": "Jobs", + "realm": "Jobs", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "GPU Count", + "leaf": false + }, { "text": "Jobs by Job Size", "id": "group_by_Jobs_jobsize", diff --git a/tests/artifacts/xdmod/user_interface/output/jobs/usr-get_menus.json b/tests/artifacts/xdmod/user_interface/output/jobs/usr-get_menus.json index 5ad7088ff4..3cc31bba44 100644 --- a/tests/artifacts/xdmod/user_interface/output/jobs/usr-get_menus.json +++ b/tests/artifacts/xdmod/user_interface/output/jobs/usr-get_menus.json @@ -41,6 +41,20 @@ "description": "Department", "leaf": false }, + { + "text": "Jobs by GPU Count", + "id": "group_by_Jobs_gpucount", + "group_by": "gpucount", + "query_group": "tg_usage", + "category": "Jobs", + "realm": "Jobs", + "defaultChartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "chartSettings": "{\"dataset_type\":\"aggregate\",\"display_type\":\"bar\",\"combine_type\":\"stack\",\"limit\":3,\"offset\":0,\"log_scale\":\"n\",\"show_legend\":\"y\",\"show_trend_line\":\"n\",\"show_error_bars\":\"n\",\"show_guide_lines\":\"y\",\"show_aggregate_labels\":\"n\",\"show_error_labels\":\"n\",\"enable_errors\":\"y\",\"enable_trend_line\":\"y\"}", + "node_type": "group_by", + "iconCls": "menu", + "description": "GPU Count", + "leaf": false + }, { "text": "Jobs by Job Size", "id": "group_by_Jobs_jobsize", diff --git a/tests/ci/scripts/xdmod-upgrade-jobs.tcl b/tests/ci/scripts/xdmod-upgrade-jobs.tcl index a607323210..5673548dcc 100644 --- a/tests/ci/scripts/xdmod-upgrade-jobs.tcl +++ b/tests/ci/scripts/xdmod-upgrade-jobs.tcl @@ -21,6 +21,11 @@ proc confirmUpgrade { } { set timeout 180 spawn "xdmod-upgrade" confirmUpgrade + +# Begin 9.0 migration +provideInput {Re-ingest*} {yes} +# End 9.0 migration + expect { timeout { send_user "\nFailed to get prompt\n"; exit 1 diff --git a/tests/ci/scripts/xdmod-upgrade.tcl b/tests/ci/scripts/xdmod-upgrade.tcl index a607323210..5673548dcc 100644 --- a/tests/ci/scripts/xdmod-upgrade.tcl +++ b/tests/ci/scripts/xdmod-upgrade.tcl @@ -21,6 +21,11 @@ proc confirmUpgrade { } { set timeout 180 spawn "xdmod-upgrade" confirmUpgrade + +# Begin 9.0 migration +provideInput {Re-ingest*} {yes} +# End 9.0 migration + expect { timeout { send_user "\nFailed to get prompt\n"; exit 1 diff --git a/tests/component/lib/AclsTest.php b/tests/component/lib/AclsTest.php index 63dde354b9..3bce41821a 100644 --- a/tests/component/lib/AclsTest.php +++ b/tests/component/lib/AclsTest.php @@ -291,6 +291,7 @@ public function provideGetQueryDescripters() { $groups = array( 'fieldofscience', + 'gpucount', 'jobsize', 'jobwalltime', 'nodecount', @@ -311,7 +312,9 @@ public function provideGetQueryDescripters() 'active_pi_count', 'active_resource_count', 'avg_cpu_hours', + 'avg_gpu_hours', 'avg_job_size_weighted_by_cpu_hours', + 'avg_job_size_weighted_by_gpu_hours', 'avg_node_hours', 'avg_processors', 'avg_waitduration_hours', @@ -325,6 +328,7 @@ public function provideGetQueryDescripters() 'started_job_count', 'submitted_job_count', 'total_cpu_hours', + 'total_gpu_hours', 'total_node_hours', 'total_waitduration_hours', 'total_wallduration_hours', diff --git a/tests/integration/lib/Rest/JobViewerTest.php b/tests/integration/lib/Rest/JobViewerTest.php index 1e3f5f8a54..fdf561579f 100644 --- a/tests/integration/lib/Rest/JobViewerTest.php +++ b/tests/integration/lib/Rest/JobViewerTest.php @@ -18,6 +18,7 @@ private static function getDimensions() { return array( 'nsfdirectorate', 'parentscience', + 'gpucount', 'jobsize', 'jobwaittime', 'jobwalltime', diff --git a/tests/regression/lib/Controllers/UsageExplorerJobsTest.php b/tests/regression/lib/Controllers/UsageExplorerJobsTest.php index 7373f87c3b..ba1a85270c 100644 --- a/tests/regression/lib/Controllers/UsageExplorerJobsTest.php +++ b/tests/regression/lib/Controllers/UsageExplorerJobsTest.php @@ -55,9 +55,12 @@ public function csvExportProvider() 'active_pi_count', 'active_resource_count', 'avg_cpu_hours', + 'avg_gpu_hours', 'avg_job_size_weighted_by_cpu_hours', + 'avg_job_size_weighted_by_gpu_hours', 'avg_node_hours', 'avg_processors', + 'avg_gpus', 'avg_waitduration_hours', 'avg_wallduration_hours', 'expansion_factor', @@ -69,6 +72,7 @@ public function csvExportProvider() 'started_job_count', 'submitted_job_count', 'total_cpu_hours', + 'total_gpu_hours', 'total_node_hours', 'total_waitduration_hours', 'total_wallduration_hours', @@ -77,6 +81,7 @@ public function csvExportProvider() $groupBys = [ 'fieldofscience', + 'gpucount', 'jobsize', 'jobwalltime', 'jobwaittime', diff --git a/tests/unit/lib/OpenXdmod/Tests/Shredder/SlurmShredderTest.php b/tests/unit/lib/OpenXdmod/Tests/Shredder/SlurmShredderTest.php index 4f2d880514..480c7abf39 100644 --- a/tests/unit/lib/OpenXdmod/Tests/Shredder/SlurmShredderTest.php +++ b/tests/unit/lib/OpenXdmod/Tests/Shredder/SlurmShredderTest.php @@ -7,17 +7,37 @@ use CCR\DB\NullDB; use OpenXdmod\Shredder; +use Log; +use TestHarness\TestFiles; /** * PBS shredder test class. */ class SlurmShredderTest extends \PHPUnit_Framework_TestCase { + const TEST_GROUP = 'unit/shredder/slurm'; + + private $testFiles; + protected $db; + protected $logger; + public function setUp() { $this->db = new NullDB(); + $this->logger = Log::singleton('null'); + } + + /** + * @return \TestHarness\TestFiles + */ + public function getTestFiles() + { + if (!isset($this->testFiles)) { + $this->testFiles = new TestFiles(__DIR__ . '/../../../../..'); + } + return $this->testFiles; } public function testShredderConstructor() @@ -46,7 +66,7 @@ public function testShredderParsing($line, $row) ->method('getResourceConfig') ->willReturn(array()); - $shredder->setLogger(\Log::singleton('null')); + $shredder->setLogger($this->logger); $shredder->setResource('testresource'); @@ -83,172 +103,66 @@ function ($subject) use (&$callCount, $arrayIds) { } )); - $shredder->setLogger(\Log::singleton('null')); + $shredder->setLogger($this->logger); $shredder->shredLine($line); } + /** + * @dataProvider accountingLogWithGpuGresProvider + */ + public function testJobGpuGresParsing($line, $gpuCount) + { + $shredder = $this + ->getMockBuilder('\OpenXdmod\Shredder\Slurm') + ->setConstructorArgs([$this->db]) + ->setMethods(['insertRow']) + ->getMock(); + $shredder + ->expects($this->once()) + ->method('insertRow') + ->with(new \PHPUnit_Framework_Constraint_ArraySubset(['ngpus' => $gpuCount])); + $shredder->setLogger($this->logger); + $shredder->shredLine($line); + } + + /** + * Load test data. + * + * The input must be in a line oriented file ending with ".log" and the + * output must be in a JSON file with a top level element that is an array. + * Each line in the input file and each element of the array will be + * returned together. + * + * @return array[] + */ + private function getTestCases($name) + { + $files = $this->getTestFiles(); + + // Load input file into an array. + $inputFile = $files->getFile(self::TEST_GROUP, $name, 'input', '.log'); + $inputData = file($inputFile, FILE_IGNORE_NEW_LINES); + + // Output file must contain a JSON array. + $outputData = $files->loadJsonFile(self::TEST_GROUP, $name, 'output'); + + // Using array_map to zip input and output. + return array_map(null, $inputData, $outputData); + } + public function accountingLogProvider() { - return array( - array( - '4103947|4103947|ub-hpc|general-compute|anon|anon|918273|unknown|192837|2015-06-26T13:57:00|2015-06-26T13:57:00|2015-06-28T02:55:50|2015-07-01T02:55:50|3-00:00:00|1:0|TIMEOUT|32|256|256|3000Mc|||3-00:00:00|d07n07s02,d07n19s02,d07n25s01,d07n28s01,d07n29s01,d07n31s02,d07n38s02,d09n04s[01-02],d09n05s02,d09n06s01,d09n07s01,d09n08s[01-02],d09n09s01,d09n11s[01-02],d09n13s01,d09n14s01,d09n15s01,d09n16s01,d09n17s01,d09n24s01,d09n25s02,d09n28s01,d09n35s01,d09n38s02,d13n[03,05,07-08,16]|1AbC-2-3', - array( - 'job_id' => '4103947', - 'job_id_raw' => '4103947', - 'job_array_index' => -1, - 'cluster_name' => 'testresource', - 'partition_name' => 'general-compute', - 'account_name' => 'anon', - 'group_name' => 'anon', - 'gid_number' => '918273', - 'user_name' => 'unknown', - 'uid_number' => '192837', - 'submit_time' => 1435327020, - 'eligible_time' => 1435327020, - 'start_time' => 1435460150, - 'end_time' => 1435719350, - 'elapsed' => 259200, - 'exit_code' => '1:0', - 'state' => 'TIMEOUT', - 'nnodes' => '32', - 'ncpus' => '256', - 'req_cpus' => '256', - 'req_mem' => '3000Mc', - 'req_gres' => '', - 'req_tres' => '', - 'timelimit' => 259200, - 'node_list' => 'd07n07s02,d07n19s02,d07n25s01,d07n28s01,d07n29s01,d07n31s02,d07n38s02,d09n04s[01-02],d09n05s02,d09n06s01,d09n07s01,d09n08s[01-02],d09n09s01,d09n11s[01-02],d09n13s01,d09n14s01,d09n15s01,d09n16s01,d09n17s01,d09n24s01,d09n25s02,d09n28s01,d09n35s01,d09n38s02,d13n[03,05,07-08,16]', - 'job_name' => '1AbC-2-3', - ), - ), - array( - '4107166|4107166|ub-hpc|general-compute|dspumpkins|dspumpkins|103116|hanx|102216|2015-06-26T19:51:25|2015-06-26T19:51:26|2015-06-28T15:14:49|2015-07-01T13:17:53|2-22:03:04|0:0|CANCELLED by 102216|3|36|36|48000Mn|||3-00:00:00|k10n26s01,k13n36s01,k13n37s01|100-Floors-of-Frights', - array( - 'job_id' => '4107166', - 'job_id_raw' => '4107166', - 'job_array_index' => -1, - 'cluster_name' => 'testresource', - 'partition_name' => 'general-compute', - 'account_name' => 'dspumpkins', - 'group_name' => 'dspumpkins', - 'gid_number' => '103116', - 'user_name' => 'hanx', - 'uid_number' => '102216', - 'submit_time' => 1435348285, - 'eligible_time' => 1435348286, - 'start_time' => 1435504489, - 'end_time' => 1435756673, - 'elapsed' => 252184, - 'exit_code' => '0:0', - 'state' => 'CANCELLED by 102216', - 'nnodes' => '3', - 'ncpus' => '36', - 'req_cpus' => '36', - 'req_mem' => '48000Mn', - 'req_gres' => '', - 'req_tres' => '', - 'timelimit' => 259200, - 'node_list' => 'k10n26s01,k13n36s01,k13n37s01', - 'job_name' => '100-Floors-of-Frights', - ), - ), - array( - '4107219|4107219|ub-hpc|general-compute|anonacct|anongroup|456123|anonuser|10101010|2015-06-26T20:22:22|2015-06-26T20:22:22|2015-06-30T12:04:04|2015-07-01T02:04:53|14:00:49|0:0|COMPLETED|4|48|48|3000Mc||cpu=48,mem=144000M,node=4|14:20:00|k07n07s01,k08n02s01,k08n05s01,k08n13s01|anonjobname', - array( - 'job_id' => '4107219', - 'job_id_raw' => '4107219', - 'job_array_index' => -1, - 'cluster_name' => 'testresource', - 'partition_name' => 'general-compute', - 'account_name' => 'anonacct', - 'group_name' => 'anongroup', - 'gid_number' => '456123', - 'user_name' => 'anonuser', - 'uid_number' => '10101010', - 'submit_time' => 1435350142, - 'eligible_time' => 1435350142, - 'start_time' => 1435665844, - 'end_time' => 1435716293, - 'elapsed' => 50449, - 'exit_code' => '0:0', - 'state' => 'COMPLETED', - 'nnodes' => '4', - 'ncpus' => '48', - 'req_cpus' => '48', - 'req_mem' => '3000Mc', - 'req_gres' => '', - 'req_tres' => 'cpu=48,mem=144000M,node=4', - 'timelimit' => 51600, - 'node_list' => 'k07n07s01,k08n02s01,k08n05s01,k08n13s01', - 'job_name' => 'anonjobname', - ), - ), - array( - '5692623|5692623|ub-hpc||ccr|na|0|xms|987654321|2016-08-01T06:01:08|Unknown|2016-08-01T07:04:09|2016-08-01T07:04:09|00:00:00|0:0|COMPLETED|0|0|0|0n|gpu:2|||cpn-k16-35-01,cpn-k16-37-01|allocation', - array( - 'job_id' => '5692623', - 'job_id_raw' => '5692623', - 'job_array_index' => -1, - 'cluster_name' => 'testresource', - 'partition_name' => '', - 'account_name' => 'ccr', - 'group_name' => 'na', - 'gid_number' => '0', - 'user_name' => 'xms', - 'uid_number' => '987654321', - 'submit_time' => 1470031268, - 'eligible_time' => null, - 'start_time' => 1470035049, - 'end_time' => 1470035049, - 'elapsed' => 0, - 'exit_code' => '0:0', - 'state' => 'COMPLETED', - 'nnodes' => '0', - 'ncpus' => '0', - 'req_cpus' => '0', - 'req_mem' => '0n', - 'req_gres' => 'gpu:2', - 'req_tres' => '', - 'timelimit' => null, - 'node_list' => 'cpn-k16-35-01,cpn-k16-37-01', - 'job_name' => 'allocation', - ), - ), - ); + return $this->getTestCases('accounting-logs'); } public function accountingLogWithJobArraysProvider() { + return $this->getTestCases('accounting-logs-with-job-arrays'); + } - // Array of arrays containing two elements: - // 1. An accounting log line. - // 2. An array of job array indexes present in accounting log line. - return array( - array( - '4103947_100|4103947|ub-hpc|general-compute|anon|anon|918273|unknown|192837|2015-06-26T13:57:00|2015-06-26T13:57:00|2015-06-28T02:55:50|2015-07-01T02:55:50|3-00:00:00|1:0|TIMEOUT|32|256|256|3000Mc|||3-00:00:00|d07n07s02,d07n19s02,d07n25s01,d07n28s01,d07n29s01,d07n31s02,d07n38s02,d09n04s[01-02],d09n05s02,d09n06s01,d09n07s01,d09n08s[01-02],d09n09s01,d09n11s[01-02],d09n13s01,d09n14s01,d09n15s01,d09n16s01,d09n17s01,d09n24s01,d09n25s02,d09n28s01,d09n35s01,d09n38s02,d13n[03,05,07-08,16]|1AbC-2-3', - array(100), - ), - array( - '4103947_[1-3]|4103947|ub-hpc|general-compute|anon|anon|918273|unknown|192837|2015-06-26T13:57:00|2015-06-26T13:57:00|2015-06-28T02:55:50|2015-07-01T02:55:50|3-00:00:00|1:0|TIMEOUT|32|256|256|3000Mc|||3-00:00:00|d07n07s02,d07n19s02,d07n25s01,d07n28s01,d07n29s01,d07n31s02,d07n38s02,d09n04s[01-02],d09n05s02,d09n06s01,d09n07s01,d09n08s[01-02],d09n09s01,d09n11s[01-02],d09n13s01,d09n14s01,d09n15s01,d09n16s01,d09n17s01,d09n24s01,d09n25s02,d09n28s01,d09n35s01,d09n38s02,d13n[03,05,07-08,16]|1AbC-2-3', - array(1, 2, 3), - ), - array( - '4103947_[1,5]|4103947|ub-hpc|general-compute|anon|anon|918273|unknown|192837|2015-06-26T13:57:00|2015-06-26T13:57:00|2015-06-28T02:55:50|2015-07-01T02:55:50|3-00:00:00|1:0|TIMEOUT|32|256|256|3000Mc|||3-00:00:00|d07n07s02,d07n19s02,d07n25s01,d07n28s01,d07n29s01,d07n31s02,d07n38s02,d09n04s[01-02],d09n05s02,d09n06s01,d09n07s01,d09n08s[01-02],d09n09s01,d09n11s[01-02],d09n13s01,d09n14s01,d09n15s01,d09n16s01,d09n17s01,d09n24s01,d09n25s02,d09n28s01,d09n35s01,d09n38s02,d13n[03,05,07-08,16]|1AbC-2-3', - array(1, 5), - ), - array( - '4103947_[9-11,20]|4103947|ub-hpc|general-compute|anon|anon|918273|unknown|192837|2015-06-26T13:57:00|2015-06-26T13:57:00|2015-06-28T02:55:50|2015-07-01T02:55:50|3-00:00:00|1:0|TIMEOUT|32|256|256|3000Mc|||3-00:00:00|d07n07s02,d07n19s02,d07n25s01,d07n28s01,d07n29s01,d07n31s02,d07n38s02,d09n04s[01-02],d09n05s02,d09n06s01,d09n07s01,d09n08s[01-02],d09n09s01,d09n11s[01-02],d09n13s01,d09n14s01,d09n15s01,d09n16s01,d09n17s01,d09n24s01,d09n25s02,d09n28s01,d09n35s01,d09n38s02,d13n[03,05,07-08,16]|1AbC-2-3', - array(9, 10, 11, 20), - ), - array( - '4103947_[91,100-102]|4103947|ub-hpc|general-compute|anon|anon|918273|unknown|192837|2015-06-26T13:57:00|2015-06-26T13:57:00|2015-06-28T02:55:50|2015-07-01T02:55:50|3-00:00:00|1:0|TIMEOUT|32|256|256|3000Mc|||3-00:00:00|d07n07s02,d07n19s02,d07n25s01,d07n28s01,d07n29s01,d07n31s02,d07n38s02,d09n04s[01-02],d09n05s02,d09n06s01,d09n07s01,d09n08s[01-02],d09n09s01,d09n11s[01-02],d09n13s01,d09n14s01,d09n15s01,d09n16s01,d09n17s01,d09n24s01,d09n25s02,d09n28s01,d09n35s01,d09n38s02,d13n[03,05,07-08,16]|1AbC-2-3', - array(91, 100, 101, 102), - ), - array( - '4103947_[9-11,13,16-20]|4103947|ub-hpc|general-compute|anon|anon|918273|unknown|192837|2015-06-26T13:57:00|2015-06-26T13:57:00|2015-06-28T02:55:50|2015-07-01T02:55:50|3-00:00:00|1:0|TIMEOUT|32|256|256|3000Mc|||3-00:00:00|d07n07s02,d07n19s02,d07n25s01,d07n28s01,d07n29s01,d07n31s02,d07n38s02,d09n04s[01-02],d09n05s02,d09n06s01,d09n07s01,d09n08s[01-02],d09n09s01,d09n11s[01-02],d09n13s01,d09n14s01,d09n15s01,d09n16s01,d09n17s01,d09n24s01,d09n25s02,d09n28s01,d09n35s01,d09n38s02,d13n[03,05,07-08,16]|1AbC-2-3', - array(9, 10, 11, 13, 16, 17, 18, 19, 20), - ), - ); + public function accountingLogWithGpuGresProvider() + { + return $this->getTestCases('accounting-logs-with-gpu-gres'); } } diff --git a/tests/unit/lib/OpenXdmod/Tests/SlurmGresParserTest.php b/tests/unit/lib/OpenXdmod/Tests/SlurmGresParserTest.php new file mode 100644 index 0000000000..defbe1586e --- /dev/null +++ b/tests/unit/lib/OpenXdmod/Tests/SlurmGresParserTest.php @@ -0,0 +1,43 @@ +parser = new SlurmGresParser(); + } + + /** + * @dataProvider gpuCountProvider + */ + public function testGpuCountParsing($reqGres, $gpuCount) + { + $gresData = $this->parser->parseReqGres($reqGres); + $this->assertEquals( + $gpuCount, + $this->parser->getGpuCountFromGres($gresData), + 'GPU count' + ); + } + + public function gpuCountProvider() + { + $testFiles = new TestFiles(__DIR__ . '/../../../..'); + return $testFiles->loadJsonFile(self::TEST_GROUP, 'gpu-count'); + } +}