From 42edc4f3b5dcd460aef75af536ee541c975b0e8b Mon Sep 17 00:00:00 2001 From: Justin Bedo Date: Thu, 9 Feb 2023 09:36:19 +1100 Subject: allow setting number of iterations for optimiser --- Numeric/CODA/PCA.hs | 13 +- R/R/pca.R | 3 +- R/src/wrapper.c | 4 +- pca.c | 36126 +++++++++++++++++--------------------------------- pca.fut | 12 +- pca.h | 4 +- 6 files changed, 12442 insertions(+), 23720 deletions(-) diff --git a/Numeric/CODA/PCA.hs b/Numeric/CODA/PCA.hs index 01fa3f1..903a166 100644 --- a/Numeric/CODA/PCA.hs +++ b/Numeric/CODA/PCA.hs @@ -40,19 +40,22 @@ C.include "<../../../pca.h>" -- | Decomposes a non-negative matrix into the specified number components on the CoDA simplex -- via Bregman divergences pca :: - -- | An optional quantile to use as the reference; defaults to 0.5 - Maybe Double -> + -- | Number of iterations + Int -> + -- | Quantile to use as the reference + Double -> -- | number of components to decompose into Int -> -- | matrix to decompose Matrix Double -> PCA -pca q k x = unsafePerformIO $ do +pca iters q k x = unsafePerformIO $ do let (n, m) = size x + iters' = fromIntegral iters k' = fromIntegral k n' = fromIntegral n m' = fromIntegral m - q' = realToFrac $ fromMaybe 0.5 q + q' = realToFrac q b <- VM.new (n * k) c <- VM.new (m * k) y <- VM.new (n * m) @@ -70,7 +73,7 @@ pca q k x = unsafePerformIO $ do struct futhark_f64_2d *Bf; struct futhark_f64_2d *Uf; - futhark_entry_pcaWithQuantile(ctx, &Bf, &Uf, &Yf, $(double *lptr), $(double q'), $(int k'), Xf); + futhark_entry_pcaWithQuantile(ctx, &Bf, &Uf, &Yf, $(double *lptr), $(int iters'), $(double q'), $(int k'), Xf); futhark_context_sync(ctx); futhark_values_f64_2d(ctx, Bf, $(double *bptr)); futhark_values_f64_2d(ctx, Uf, $(double *cptr)); diff --git a/R/R/pca.R b/R/R/pca.R index 85782e4..7d0d742 100644 --- a/R/R/pca.R +++ b/R/R/pca.R @@ -1,4 +1,4 @@ -pca <- function(x, k=1,q=0.5){ +pca <- function(x, k=1, q=0.5, iters=10000){ n <- nrow(x) d <- ncol(x) B <- matrix(0, n, k) @@ -8,6 +8,7 @@ pca <- function(x, k=1,q=0.5){ res <- .C("pca_wrapper", n=as.integer(n), d=as.integer(d), + iters=as.integer(iters), q=as.numeric(q), k=as.integer(k), X=as.numeric(t(x)), diff --git a/R/src/wrapper.c b/R/src/wrapper.c index dd7bce1..52c1192 100644 --- a/R/src/wrapper.c +++ b/R/src/wrapper.c @@ -1,7 +1,7 @@ #include "pca.h" void -pca_wrapper(int *n, int *d, double *q, int *k, double *X, double *B, double *U, double *l) { +pca_wrapper(int *n, int *d, int *iters, double *q, int *k, double *X, double *B, double *U, double *l) { struct futhark_context_config *cfg = futhark_context_config_new(); struct futhark_context *ctx = futhark_context_new(cfg); @@ -11,7 +11,7 @@ pca_wrapper(int *n, int *d, double *q, int *k, double *X, double *B, double *U, struct futhark_f64_2d *Bf; struct futhark_f64_2d *Uf; - futhark_entry_pcaWithQuantile(ctx, &Bf, &Uf, &Yf, l, *q, *k, Xf); + futhark_entry_pcaWithQuantile(ctx, &Bf, &Uf, &Yf, l, *iters, *q, *k, Xf); futhark_context_sync(ctx); futhark_values_f64_2d(ctx, Bf, B); futhark_values_f64_2d(ctx, Uf, U); diff --git a/pca.c b/pca.c index d292786..78093b7 100644 --- a/pca.c +++ b/pca.c @@ -62,9 +62,7 @@ const int64_t *futhark_shape_f64_2d(struct futhark_context *ctx, struct futhark_ // Entry points -int futhark_entry_dloss(struct futhark_context *ctx, struct futhark_f64_2d **out0, struct futhark_f64_2d **out1, const struct futhark_f64_2d *in0, const struct futhark_f64_2d *in1, const struct futhark_f64_2d *in2); -int futhark_entry_loss(struct futhark_context *ctx, double *out0, const struct futhark_f64_2d *in0, const struct futhark_f64_2d *in1, const struct futhark_f64_2d *in2); -int futhark_entry_pcaWithQuantile(struct futhark_context *ctx, struct futhark_f64_2d **out0, struct futhark_f64_2d **out1, struct futhark_f64_2d **out2, double *out3, const double in0, const int64_t in1, const struct futhark_f64_2d *in2); +int futhark_entry_pcaWithQuantile(struct futhark_context *ctx, struct futhark_f64_2d **out0, struct futhark_f64_2d **out1, struct futhark_f64_2d **out2, double *out3, const int32_t in0, const double in1, const int64_t in2, const struct futhark_f64_2d *in3); // Miscellaneous int futhark_context_sync(struct futhark_context *ctx); @@ -4887,16 +4885,11 @@ struct memblock { struct constants { int dummy; }; -static int32_t dlossziwithacc_locks_mem_realtype_24530[100151]; -static int32_t dlossziwithacc_locks_mem_realtype_24545[100151]; -static int32_t dlossziwithacc_locks_mem_realtype_24546[100151]; -static int32_t dlossziwithacc_locks_mem_realtype_24613[100151]; -static int32_t dlossziwithacc_locks_mem_realtype_24630[100151]; -static int32_t pcaWithQuantileziwithacc_locks_mem_realtype_24828[100151]; -static int32_t pcaWithQuantileziwithacc_locks_mem_realtype_24843[100151]; -static int32_t pcaWithQuantileziwithacc_locks_mem_realtype_24844[100151]; -static int32_t pcaWithQuantileziwithacc_locks_mem_realtype_24911[100151]; -static int32_t pcaWithQuantileziwithacc_locks_mem_realtype_24928[100151]; +static int32_t pcaWithQuantileziwithacc_locks_mem_realtype_24024[100151]; +static int32_t pcaWithQuantileziwithacc_locks_mem_realtype_24039[100151]; +static int32_t pcaWithQuantileziwithacc_locks_mem_realtype_24040[100151]; +static int32_t pcaWithQuantileziwithacc_locks_mem_realtype_24107[100151]; +static int32_t pcaWithQuantileziwithacc_locks_mem_realtype_24124[100151]; static const int num_tuning_params = 0; static const char *tuning_param_names[1]; static const char *tuning_param_vars[1]; @@ -6157,1188 +6150,746 @@ int futhark_context_sync(struct futhark_context* ctx) { // End of backends/multicore.h struct program { - int64_t *futhark_mc_segmap_parloop_24514_total_runtime; - int *futhark_mc_segmap_parloop_24514_runs; - int64_t *futhark_mc_segmap_parloop_24514_iter; - int64_t futhark_mc_segmap_parloop_24514_total_total_runtime; - int futhark_mc_segmap_parloop_24514_total_runs; - int64_t futhark_mc_segmap_parloop_24514_total_iter; - int64_t *futhark_mc_segmap_task_24512_total_runtime; - int *futhark_mc_segmap_task_24512_runs; - int64_t *futhark_mc_segmap_task_24512_iter; - int64_t futhark_mc_segmap_task_24512_total_time; - int64_t futhark_mc_segmap_task_24512_total_iter; - int64_t *futhark_mc_segmap_parloop_24521_total_runtime; - int *futhark_mc_segmap_parloop_24521_runs; - int64_t *futhark_mc_segmap_parloop_24521_iter; - int64_t futhark_mc_segmap_parloop_24521_total_total_runtime; - int futhark_mc_segmap_parloop_24521_total_runs; - int64_t futhark_mc_segmap_parloop_24521_total_iter; - int64_t *futhark_mc_segmap_task_24519_total_runtime; - int *futhark_mc_segmap_task_24519_runs; - int64_t *futhark_mc_segmap_task_24519_iter; - int64_t futhark_mc_segmap_task_24519_total_time; - int64_t futhark_mc_segmap_task_24519_total_iter; - int64_t *futhark_mc_segmap_parloop_24517_total_runtime; - int *futhark_mc_segmap_parloop_24517_runs; - int64_t *futhark_mc_segmap_parloop_24517_iter; - int64_t futhark_mc_segmap_parloop_24517_total_total_runtime; - int futhark_mc_segmap_parloop_24517_total_runs; - int64_t futhark_mc_segmap_parloop_24517_total_iter; - int64_t *futhark_mc_segmap_nested_task_24515_total_runtime; - int *futhark_mc_segmap_nested_task_24515_runs; - int64_t *futhark_mc_segmap_nested_task_24515_iter; - int64_t *futhark_mc_copy_parloop_24525_total_runtime; - int *futhark_mc_copy_parloop_24525_runs; - int64_t *futhark_mc_copy_parloop_24525_iter; - int64_t futhark_mc_copy_parloop_24525_total_total_runtime; - int futhark_mc_copy_parloop_24525_total_runs; - int64_t futhark_mc_copy_parloop_24525_total_iter; - int64_t *futhark_mc_copy_22728_task_24523_total_runtime; - int *futhark_mc_copy_22728_task_24523_runs; - int64_t *futhark_mc_copy_22728_task_24523_iter; - int64_t futhark_mc_copy_22728_task_24523_total_time; - int64_t futhark_mc_copy_22728_task_24523_total_iter; - int64_t *futhark_mc_copy_parloop_24529_total_runtime; - int *futhark_mc_copy_parloop_24529_runs; - int64_t *futhark_mc_copy_parloop_24529_iter; - int64_t futhark_mc_copy_parloop_24529_total_total_runtime; - int futhark_mc_copy_parloop_24529_total_runs; - int64_t futhark_mc_copy_parloop_24529_total_iter; - int64_t *futhark_mc_copy_22738_task_24527_total_runtime; - int *futhark_mc_copy_22738_task_24527_runs; - int64_t *futhark_mc_copy_22738_task_24527_iter; - int64_t futhark_mc_copy_22738_task_24527_total_time; - int64_t futhark_mc_copy_22738_task_24527_total_iter; - int64_t *futhark_mc_segmap_parloop_24534_total_runtime; - int *futhark_mc_segmap_parloop_24534_runs; - int64_t *futhark_mc_segmap_parloop_24534_iter; - int64_t futhark_mc_segmap_parloop_24534_total_total_runtime; - int futhark_mc_segmap_parloop_24534_total_runs; - int64_t futhark_mc_segmap_parloop_24534_total_iter; - int64_t *futhark_mc_segmap_task_24532_total_runtime; - int *futhark_mc_segmap_task_24532_runs; - int64_t *futhark_mc_segmap_task_24532_iter; - int64_t futhark_mc_segmap_task_24532_total_time; - int64_t futhark_mc_segmap_task_24532_total_iter; - int64_t *futhark_mc_segmap_parloop_24563_total_runtime; - int *futhark_mc_segmap_parloop_24563_runs; - int64_t *futhark_mc_segmap_parloop_24563_iter; - int64_t futhark_mc_segmap_parloop_24563_total_total_runtime; - int futhark_mc_segmap_parloop_24563_total_runs; - int64_t futhark_mc_segmap_parloop_24563_total_iter; - int64_t *futhark_mc_segmap_task_24561_total_runtime; - int *futhark_mc_segmap_task_24561_runs; - int64_t *futhark_mc_segmap_task_24561_iter; - int64_t futhark_mc_segmap_task_24561_total_time; - int64_t futhark_mc_segmap_task_24561_total_iter; - int64_t *futhark_mc_segred_stage_1_parloop_24571_total_runtime; - int *futhark_mc_segred_stage_1_parloop_24571_runs; - int64_t *futhark_mc_segred_stage_1_parloop_24571_iter; - int64_t futhark_mc_segred_stage_1_parloop_24571_total_total_runtime; - int futhark_mc_segred_stage_1_parloop_24571_total_runs; - int64_t futhark_mc_segred_stage_1_parloop_24571_total_iter; - int64_t *futhark_mc_segred_task_24568_total_runtime; - int *futhark_mc_segred_task_24568_runs; - int64_t *futhark_mc_segred_task_24568_iter; - int64_t futhark_mc_segred_task_24568_total_time; - int64_t futhark_mc_segred_task_24568_total_iter; - int64_t *futhark_mc_segmap_parloop_24566_total_runtime; - int *futhark_mc_segmap_parloop_24566_runs; - int64_t *futhark_mc_segmap_parloop_24566_iter; - int64_t futhark_mc_segmap_parloop_24566_total_total_runtime; - int futhark_mc_segmap_parloop_24566_total_runs; - int64_t futhark_mc_segmap_parloop_24566_total_iter; - int64_t *futhark_mc_segmap_nested_task_24564_total_runtime; - int *futhark_mc_segmap_nested_task_24564_runs; - int64_t *futhark_mc_segmap_nested_task_24564_iter; - int64_t *futhark_mc_segmap_parloop_24575_total_runtime; - int *futhark_mc_segmap_parloop_24575_runs; - int64_t *futhark_mc_segmap_parloop_24575_iter; - int64_t futhark_mc_segmap_parloop_24575_total_total_runtime; - int futhark_mc_segmap_parloop_24575_total_runs; - int64_t futhark_mc_segmap_parloop_24575_total_iter; - int64_t *futhark_mc_segmap_task_24573_total_runtime; - int *futhark_mc_segmap_task_24573_runs; - int64_t *futhark_mc_segmap_task_24573_iter; - int64_t futhark_mc_segmap_task_24573_total_time; - int64_t futhark_mc_segmap_task_24573_total_iter; - int64_t *futhark_mc_segred_stage_1_parloop_24583_total_runtime; - int *futhark_mc_segred_stage_1_parloop_24583_runs; - int64_t *futhark_mc_segred_stage_1_parloop_24583_iter; - int64_t futhark_mc_segred_stage_1_parloop_24583_total_total_runtime; - int futhark_mc_segred_stage_1_parloop_24583_total_runs; - int64_t futhark_mc_segred_stage_1_parloop_24583_total_iter; - int64_t *futhark_mc_segred_task_24580_total_runtime; - int *futhark_mc_segred_task_24580_runs; - int64_t *futhark_mc_segred_task_24580_iter; - int64_t futhark_mc_segred_task_24580_total_time; - int64_t futhark_mc_segred_task_24580_total_iter; - int64_t *futhark_mc_segmap_parloop_24578_total_runtime; - int *futhark_mc_segmap_parloop_24578_runs; - int64_t *futhark_mc_segmap_parloop_24578_iter; - int64_t futhark_mc_segmap_parloop_24578_total_total_runtime; - int futhark_mc_segmap_parloop_24578_total_runs; - int64_t futhark_mc_segmap_parloop_24578_total_iter; - int64_t *futhark_mc_segmap_nested_task_24576_total_runtime; - int *futhark_mc_segmap_nested_task_24576_runs; - int64_t *futhark_mc_segmap_nested_task_24576_iter; - int64_t *futhark_mc_segred_stage_1_parloop_24589_total_runtime; - int *futhark_mc_segred_stage_1_parloop_24589_runs; - int64_t *futhark_mc_segred_stage_1_parloop_24589_iter; - int64_t futhark_mc_segred_stage_1_parloop_24589_total_total_runtime; - int futhark_mc_segred_stage_1_parloop_24589_total_runs; - int64_t futhark_mc_segred_stage_1_parloop_24589_total_iter; - int64_t *futhark_mc_segred_task_24585_total_runtime; - int *futhark_mc_segred_task_24585_runs; - int64_t *futhark_mc_segred_task_24585_iter; - int64_t futhark_mc_segred_task_24585_total_time; - int64_t futhark_mc_segred_task_24585_total_iter; - int64_t *futhark_mc_segred_stage_1_parloop_24595_total_runtime; - int *futhark_mc_segred_stage_1_parloop_24595_runs; - int64_t *futhark_mc_segred_stage_1_parloop_24595_iter; - int64_t futhark_mc_segred_stage_1_parloop_24595_total_total_runtime; - int futhark_mc_segred_stage_1_parloop_24595_total_runs; - int64_t futhark_mc_segred_stage_1_parloop_24595_total_iter; - int64_t *futhark_mc_segred_task_24591_total_runtime; - int *futhark_mc_segred_task_24591_runs; - int64_t *futhark_mc_segred_task_24591_iter; - int64_t futhark_mc_segred_task_24591_total_time; - int64_t futhark_mc_segred_task_24591_total_iter; - int64_t *futhark_mc_segred_stage_1_parloop_24604_total_runtime; - int *futhark_mc_segred_stage_1_parloop_24604_runs; - int64_t *futhark_mc_segred_stage_1_parloop_24604_iter; - int64_t futhark_mc_segred_stage_1_parloop_24604_total_total_runtime; - int futhark_mc_segred_stage_1_parloop_24604_total_runs; - int64_t futhark_mc_segred_stage_1_parloop_24604_total_iter; - int64_t *futhark_mc_segred_task_24597_total_runtime; - int *futhark_mc_segred_task_24597_runs; - int64_t *futhark_mc_segred_task_24597_iter; - int64_t futhark_mc_segred_task_24597_total_time; - int64_t futhark_mc_segred_task_24597_total_iter; - int64_t *futhark_mc_copy_parloop_24608_total_runtime; - int *futhark_mc_copy_parloop_24608_runs; - int64_t *futhark_mc_copy_parloop_24608_iter; - int64_t futhark_mc_copy_parloop_24608_total_total_runtime; - int futhark_mc_copy_parloop_24608_total_runs; - int64_t futhark_mc_copy_parloop_24608_total_iter; - int64_t *futhark_mc_copy_23437_task_24606_total_runtime; - int *futhark_mc_copy_23437_task_24606_runs; - int64_t *futhark_mc_copy_23437_task_24606_iter; - int64_t futhark_mc_copy_23437_task_24606_total_time; - int64_t futhark_mc_copy_23437_task_24606_total_iter; - int64_t *futhark_mc_segmap_parloop_24612_total_runtime; - int *futhark_mc_segmap_parloop_24612_runs; - int64_t *futhark_mc_segmap_parloop_24612_iter; - int64_t futhark_mc_segmap_parloop_24612_total_total_runtime; - int futhark_mc_segmap_parloop_24612_total_runs; - int64_t futhark_mc_segmap_parloop_24612_total_iter; - int64_t *futhark_mc_segmap_task_24610_total_runtime; - int *futhark_mc_segmap_task_24610_runs; - int64_t *futhark_mc_segmap_task_24610_iter; - int64_t futhark_mc_segmap_task_24610_total_time; - int64_t futhark_mc_segmap_task_24610_total_iter; - int64_t *futhark_mc_segmap_parloop_24617_total_runtime; - int *futhark_mc_segmap_parloop_24617_runs; - int64_t *futhark_mc_segmap_parloop_24617_iter; - int64_t futhark_mc_segmap_parloop_24617_total_total_runtime; - int futhark_mc_segmap_parloop_24617_total_runs; - int64_t futhark_mc_segmap_parloop_24617_total_iter; - int64_t *futhark_mc_segmap_task_24615_total_runtime; - int *futhark_mc_segmap_task_24615_runs; - int64_t *futhark_mc_segmap_task_24615_iter; - int64_t futhark_mc_segmap_task_24615_total_time; - int64_t futhark_mc_segmap_task_24615_total_iter; - int64_t *futhark_mc_segred_stage_1_parloop_24625_total_runtime; - int *futhark_mc_segred_stage_1_parloop_24625_runs; - int64_t *futhark_mc_segred_stage_1_parloop_24625_iter; - int64_t futhark_mc_segred_stage_1_parloop_24625_total_total_runtime; - int futhark_mc_segred_stage_1_parloop_24625_total_runs; - int64_t futhark_mc_segred_stage_1_parloop_24625_total_iter; - int64_t *futhark_mc_segred_task_24622_total_runtime; - int *futhark_mc_segred_task_24622_runs; - int64_t *futhark_mc_segred_task_24622_iter; - int64_t futhark_mc_segred_task_24622_total_time; - int64_t futhark_mc_segred_task_24622_total_iter; - int64_t *futhark_mc_segmap_parloop_24629_total_runtime; - int *futhark_mc_segmap_parloop_24629_runs; - int64_t *futhark_mc_segmap_parloop_24629_iter; - int64_t futhark_mc_segmap_parloop_24629_total_total_runtime; - int futhark_mc_segmap_parloop_24629_total_runs; - int64_t futhark_mc_segmap_parloop_24629_total_iter; - int64_t *futhark_mc_segmap_task_24627_total_runtime; - int *futhark_mc_segmap_task_24627_runs; - int64_t *futhark_mc_segmap_task_24627_iter; - int64_t futhark_mc_segmap_task_24627_total_time; - int64_t futhark_mc_segmap_task_24627_total_iter; - int64_t *futhark_mc_segmap_parloop_24620_total_runtime; - int *futhark_mc_segmap_parloop_24620_runs; - int64_t *futhark_mc_segmap_parloop_24620_iter; - int64_t futhark_mc_segmap_parloop_24620_total_total_runtime; - int futhark_mc_segmap_parloop_24620_total_runs; - int64_t futhark_mc_segmap_parloop_24620_total_iter; - int64_t *futhark_mc_segmap_nested_task_24618_total_runtime; - int *futhark_mc_segmap_nested_task_24618_runs; - int64_t *futhark_mc_segmap_nested_task_24618_iter; - int64_t *futhark_mc_segmap_parloop_24634_total_runtime; - int *futhark_mc_segmap_parloop_24634_runs; - int64_t *futhark_mc_segmap_parloop_24634_iter; - int64_t futhark_mc_segmap_parloop_24634_total_total_runtime; - int futhark_mc_segmap_parloop_24634_total_runs; - int64_t futhark_mc_segmap_parloop_24634_total_iter; - int64_t *futhark_mc_segmap_task_24632_total_runtime; - int *futhark_mc_segmap_task_24632_runs; - int64_t *futhark_mc_segmap_task_24632_iter; - int64_t futhark_mc_segmap_task_24632_total_time; - int64_t futhark_mc_segmap_task_24632_total_iter; - int64_t *futhark_mc_segmap_parloop_24641_total_runtime; - int *futhark_mc_segmap_parloop_24641_runs; - int64_t *futhark_mc_segmap_parloop_24641_iter; - int64_t futhark_mc_segmap_parloop_24641_total_total_runtime; - int futhark_mc_segmap_parloop_24641_total_runs; - int64_t futhark_mc_segmap_parloop_24641_total_iter; - int64_t *futhark_mc_segmap_task_24639_total_runtime; - int *futhark_mc_segmap_task_24639_runs; - int64_t *futhark_mc_segmap_task_24639_iter; - int64_t futhark_mc_segmap_task_24639_total_time; - int64_t futhark_mc_segmap_task_24639_total_iter; - int64_t *futhark_mc_segmap_parloop_24637_total_runtime; - int *futhark_mc_segmap_parloop_24637_runs; - int64_t *futhark_mc_segmap_parloop_24637_iter; - int64_t futhark_mc_segmap_parloop_24637_total_total_runtime; - int futhark_mc_segmap_parloop_24637_total_runs; - int64_t futhark_mc_segmap_parloop_24637_total_iter; - int64_t *futhark_mc_segmap_nested_task_24635_total_runtime; - int *futhark_mc_segmap_nested_task_24635_runs; - int64_t *futhark_mc_segmap_nested_task_24635_iter; - int64_t *futhark_mc_copy_parloop_24645_total_runtime; - int *futhark_mc_copy_parloop_24645_runs; - int64_t *futhark_mc_copy_parloop_24645_iter; - int64_t futhark_mc_copy_parloop_24645_total_total_runtime; - int futhark_mc_copy_parloop_24645_total_runs; - int64_t futhark_mc_copy_parloop_24645_total_iter; - int64_t *futhark_mc_copy_23582_task_24643_total_runtime; - int *futhark_mc_copy_23582_task_24643_runs; - int64_t *futhark_mc_copy_23582_task_24643_iter; - int64_t futhark_mc_copy_23582_task_24643_total_time; - int64_t futhark_mc_copy_23582_task_24643_total_iter; - int64_t *futhark_mc_segmap_parloop_24549_total_runtime; - int *futhark_mc_segmap_parloop_24549_runs; - int64_t *futhark_mc_segmap_parloop_24549_iter; - int64_t futhark_mc_segmap_parloop_24549_total_total_runtime; - int futhark_mc_segmap_parloop_24549_total_runs; - int64_t futhark_mc_segmap_parloop_24549_total_iter; - int64_t *futhark_mc_segmap_nested_task_24547_total_runtime; - int *futhark_mc_segmap_nested_task_24547_runs; - int64_t *futhark_mc_segmap_nested_task_24547_iter; - int64_t *futhark_mc_copy_parloop_24649_total_runtime; - int *futhark_mc_copy_parloop_24649_runs; - int64_t *futhark_mc_copy_parloop_24649_iter; - int64_t futhark_mc_copy_parloop_24649_total_total_runtime; - int futhark_mc_copy_parloop_24649_total_runs; - int64_t futhark_mc_copy_parloop_24649_total_iter; - int64_t *futhark_mc_copy_23595_task_24647_total_runtime; - int *futhark_mc_copy_23595_task_24647_runs; - int64_t *futhark_mc_copy_23595_task_24647_iter; - int64_t futhark_mc_copy_23595_task_24647_total_time; - int64_t futhark_mc_copy_23595_task_24647_total_iter; - int64_t *futhark_mc_copy_parloop_24653_total_runtime; - int *futhark_mc_copy_parloop_24653_runs; - int64_t *futhark_mc_copy_parloop_24653_iter; - int64_t futhark_mc_copy_parloop_24653_total_total_runtime; - int futhark_mc_copy_parloop_24653_total_runs; - int64_t futhark_mc_copy_parloop_24653_total_iter; - int64_t *futhark_mc_copy_23609_task_24651_total_runtime; - int *futhark_mc_copy_23609_task_24651_runs; - int64_t *futhark_mc_copy_23609_task_24651_iter; - int64_t futhark_mc_copy_23609_task_24651_total_time; - int64_t futhark_mc_copy_23609_task_24651_total_iter; - int64_t *futhark_mc_segmap_parloop_24660_total_runtime; - int *futhark_mc_segmap_parloop_24660_runs; - int64_t *futhark_mc_segmap_parloop_24660_iter; - int64_t futhark_mc_segmap_parloop_24660_total_total_runtime; - int futhark_mc_segmap_parloop_24660_total_runs; - int64_t futhark_mc_segmap_parloop_24660_total_iter; - int64_t *futhark_mc_segmap_task_24658_total_runtime; - int *futhark_mc_segmap_task_24658_runs; - int64_t *futhark_mc_segmap_task_24658_iter; - int64_t futhark_mc_segmap_task_24658_total_time; - int64_t futhark_mc_segmap_task_24658_total_iter; - int64_t *futhark_mc_segmap_parloop_24667_total_runtime; - int *futhark_mc_segmap_parloop_24667_runs; - int64_t *futhark_mc_segmap_parloop_24667_iter; - int64_t futhark_mc_segmap_parloop_24667_total_total_runtime; - int futhark_mc_segmap_parloop_24667_total_runs; - int64_t futhark_mc_segmap_parloop_24667_total_iter; - int64_t *futhark_mc_segmap_task_24665_total_runtime; - int *futhark_mc_segmap_task_24665_runs; - int64_t *futhark_mc_segmap_task_24665_iter; - int64_t futhark_mc_segmap_task_24665_total_time; - int64_t futhark_mc_segmap_task_24665_total_iter; - int64_t *futhark_mc_segmap_parloop_24663_total_runtime; - int *futhark_mc_segmap_parloop_24663_runs; - int64_t *futhark_mc_segmap_parloop_24663_iter; - int64_t futhark_mc_segmap_parloop_24663_total_total_runtime; - int futhark_mc_segmap_parloop_24663_total_runs; - int64_t futhark_mc_segmap_parloop_24663_total_iter; - int64_t *futhark_mc_segmap_nested_task_24661_total_runtime; - int *futhark_mc_segmap_nested_task_24661_runs; - int64_t *futhark_mc_segmap_nested_task_24661_iter; - int64_t *futhark_mc_copy_parloop_24671_total_runtime; - int *futhark_mc_copy_parloop_24671_runs; - int64_t *futhark_mc_copy_parloop_24671_iter; - int64_t futhark_mc_copy_parloop_24671_total_total_runtime; - int futhark_mc_copy_parloop_24671_total_runs; - int64_t futhark_mc_copy_parloop_24671_total_iter; - int64_t *futhark_mc_copy_22726_task_24669_total_runtime; - int *futhark_mc_copy_22726_task_24669_runs; - int64_t *futhark_mc_copy_22726_task_24669_iter; - int64_t futhark_mc_copy_22726_task_24669_total_time; - int64_t futhark_mc_copy_22726_task_24669_total_iter; - int64_t *futhark_mc_segred_stage_1_parloop_24676_total_runtime; - int *futhark_mc_segred_stage_1_parloop_24676_runs; - int64_t *futhark_mc_segred_stage_1_parloop_24676_iter; - int64_t futhark_mc_segred_stage_1_parloop_24676_total_total_runtime; - int futhark_mc_segred_stage_1_parloop_24676_total_runs; - int64_t futhark_mc_segred_stage_1_parloop_24676_total_iter; - int64_t *futhark_mc_segred_task_24673_total_runtime; - int *futhark_mc_segred_task_24673_runs; - int64_t *futhark_mc_segred_task_24673_iter; - int64_t futhark_mc_segred_task_24673_total_time; - int64_t futhark_mc_segred_task_24673_total_iter; - int64_t *futhark_mc_segmap_parloop_24690_total_runtime; - int *futhark_mc_segmap_parloop_24690_runs; - int64_t *futhark_mc_segmap_parloop_24690_iter; - int64_t futhark_mc_segmap_parloop_24690_total_total_runtime; - int futhark_mc_segmap_parloop_24690_total_runs; - int64_t futhark_mc_segmap_parloop_24690_total_iter; - int64_t *futhark_mc_segmap_task_24688_total_runtime; - int *futhark_mc_segmap_task_24688_runs; - int64_t *futhark_mc_segmap_task_24688_iter; - int64_t futhark_mc_segmap_task_24688_total_time; - int64_t futhark_mc_segmap_task_24688_total_iter; - int64_t *futhark_mc_segred_stage_1_parloop_24698_total_runtime; - int *futhark_mc_segred_stage_1_parloop_24698_runs; - int64_t *futhark_mc_segred_stage_1_parloop_24698_iter; - int64_t futhark_mc_segred_stage_1_parloop_24698_total_total_runtime; - int futhark_mc_segred_stage_1_parloop_24698_total_runs; - int64_t futhark_mc_segred_stage_1_parloop_24698_total_iter; - int64_t *futhark_mc_segred_task_24695_total_runtime; - int *futhark_mc_segred_task_24695_runs; - int64_t *futhark_mc_segred_task_24695_iter; - int64_t futhark_mc_segred_task_24695_total_time; - int64_t futhark_mc_segred_task_24695_total_iter; - int64_t *futhark_mc_segmap_parloop_24693_total_runtime; - int *futhark_mc_segmap_parloop_24693_runs; - int64_t *futhark_mc_segmap_parloop_24693_iter; - int64_t futhark_mc_segmap_parloop_24693_total_total_runtime; - int futhark_mc_segmap_parloop_24693_total_runs; - int64_t futhark_mc_segmap_parloop_24693_total_iter; - int64_t *futhark_mc_segmap_nested_task_24691_total_runtime; - int *futhark_mc_segmap_nested_task_24691_runs; - int64_t *futhark_mc_segmap_nested_task_24691_iter; - int64_t *futhark_mc_segmap_parloop_24702_total_runtime; - int *futhark_mc_segmap_parloop_24702_runs; - int64_t *futhark_mc_segmap_parloop_24702_iter; - int64_t futhark_mc_segmap_parloop_24702_total_total_runtime; - int futhark_mc_segmap_parloop_24702_total_runs; - int64_t futhark_mc_segmap_parloop_24702_total_iter; - int64_t *futhark_mc_segmap_task_24700_total_runtime; - int *futhark_mc_segmap_task_24700_runs; - int64_t *futhark_mc_segmap_task_24700_iter; - int64_t futhark_mc_segmap_task_24700_total_time; - int64_t futhark_mc_segmap_task_24700_total_iter; - int64_t *futhark_mc_segred_stage_1_parloop_24710_total_runtime; - int *futhark_mc_segred_stage_1_parloop_24710_runs; - int64_t *futhark_mc_segred_stage_1_parloop_24710_iter; - int64_t futhark_mc_segred_stage_1_parloop_24710_total_total_runtime; - int futhark_mc_segred_stage_1_parloop_24710_total_runs; - int64_t futhark_mc_segred_stage_1_parloop_24710_total_iter; - int64_t *futhark_mc_segred_task_24707_total_runtime; - int *futhark_mc_segred_task_24707_runs; - int64_t *futhark_mc_segred_task_24707_iter; - int64_t futhark_mc_segred_task_24707_total_time; - int64_t futhark_mc_segred_task_24707_total_iter; - int64_t *futhark_mc_segmap_parloop_24705_total_runtime; - int *futhark_mc_segmap_parloop_24705_runs; - int64_t *futhark_mc_segmap_parloop_24705_iter; - int64_t futhark_mc_segmap_parloop_24705_total_total_runtime; - int futhark_mc_segmap_parloop_24705_total_runs; - int64_t futhark_mc_segmap_parloop_24705_total_iter; - int64_t *futhark_mc_segmap_nested_task_24703_total_runtime; - int *futhark_mc_segmap_nested_task_24703_runs; - int64_t *futhark_mc_segmap_nested_task_24703_iter; - int64_t *futhark_mc_segred_stage_1_parloop_24716_total_runtime; - int *futhark_mc_segred_stage_1_parloop_24716_runs; - int64_t *futhark_mc_segred_stage_1_parloop_24716_iter; - int64_t futhark_mc_segred_stage_1_parloop_24716_total_total_runtime; - int futhark_mc_segred_stage_1_parloop_24716_total_runs; - int64_t futhark_mc_segred_stage_1_parloop_24716_total_iter; - int64_t *futhark_mc_segred_task_24712_total_runtime; - int *futhark_mc_segred_task_24712_runs; - int64_t *futhark_mc_segred_task_24712_iter; - int64_t futhark_mc_segred_task_24712_total_time; - int64_t futhark_mc_segred_task_24712_total_iter; - int64_t *futhark_mc_segred_stage_1_parloop_24722_total_runtime; - int *futhark_mc_segred_stage_1_parloop_24722_runs; - int64_t *futhark_mc_segred_stage_1_parloop_24722_iter; - int64_t futhark_mc_segred_stage_1_parloop_24722_total_total_runtime; - int futhark_mc_segred_stage_1_parloop_24722_total_runs; - int64_t futhark_mc_segred_stage_1_parloop_24722_total_iter; - int64_t *futhark_mc_segred_task_24718_total_runtime; - int *futhark_mc_segred_task_24718_runs; - int64_t *futhark_mc_segred_task_24718_iter; - int64_t futhark_mc_segred_task_24718_total_time; - int64_t futhark_mc_segred_task_24718_total_iter; - int64_t *futhark_mc_segred_stage_1_parloop_24683_total_runtime; - int *futhark_mc_segred_stage_1_parloop_24683_runs; - int64_t *futhark_mc_segred_stage_1_parloop_24683_iter; - int64_t futhark_mc_segred_stage_1_parloop_24683_total_total_runtime; - int futhark_mc_segred_stage_1_parloop_24683_total_runs; - int64_t futhark_mc_segred_stage_1_parloop_24683_total_iter; - int64_t *futhark_mc_segred_nested_task_24680_total_runtime; - int *futhark_mc_segred_nested_task_24680_runs; - int64_t *futhark_mc_segred_nested_task_24680_iter; - int64_t *futhark_mc_segmap_parloop_24747_total_runtime; - int *futhark_mc_segmap_parloop_24747_runs; - int64_t *futhark_mc_segmap_parloop_24747_iter; - int64_t futhark_mc_segmap_parloop_24747_total_total_runtime; - int futhark_mc_segmap_parloop_24747_total_runs; - int64_t futhark_mc_segmap_parloop_24747_total_iter; - int64_t *futhark_mc_segmap_task_24745_total_runtime; - int *futhark_mc_segmap_task_24745_runs; - int64_t *futhark_mc_segmap_task_24745_iter; - int64_t futhark_mc_segmap_task_24745_total_time; - int64_t futhark_mc_segmap_task_24745_total_iter; - int64_t *futhark_mc_segmap_parloop_24754_total_runtime; - int *futhark_mc_segmap_parloop_24754_runs; - int64_t *futhark_mc_segmap_parloop_24754_iter; - int64_t futhark_mc_segmap_parloop_24754_total_total_runtime; - int futhark_mc_segmap_parloop_24754_total_runs; - int64_t futhark_mc_segmap_parloop_24754_total_iter; - int64_t *futhark_mc_segmap_task_24752_total_runtime; - int *futhark_mc_segmap_task_24752_runs; - int64_t *futhark_mc_segmap_task_24752_iter; - int64_t futhark_mc_segmap_task_24752_total_time; - int64_t futhark_mc_segmap_task_24752_total_iter; - int64_t *futhark_mc_segmap_parloop_24761_total_runtime; - int *futhark_mc_segmap_parloop_24761_runs; - int64_t *futhark_mc_segmap_parloop_24761_iter; - int64_t futhark_mc_segmap_parloop_24761_total_total_runtime; - int futhark_mc_segmap_parloop_24761_total_runs; - int64_t futhark_mc_segmap_parloop_24761_total_iter; - int64_t *futhark_mc_segmap_task_24759_total_runtime; - int *futhark_mc_segmap_task_24759_runs; - int64_t *futhark_mc_segmap_task_24759_iter; - int64_t futhark_mc_segmap_task_24759_total_time; - int64_t futhark_mc_segmap_task_24759_total_iter; - int64_t *futhark_mc_segmap_parloop_24765_total_runtime; - int *futhark_mc_segmap_parloop_24765_runs; - int64_t *futhark_mc_segmap_parloop_24765_iter; - int64_t futhark_mc_segmap_parloop_24765_total_total_runtime; - int futhark_mc_segmap_parloop_24765_total_runs; - int64_t futhark_mc_segmap_parloop_24765_total_iter; - int64_t *futhark_mc_segmap_task_24763_total_runtime; - int *futhark_mc_segmap_task_24763_runs; - int64_t *futhark_mc_segmap_task_24763_iter; - int64_t futhark_mc_segmap_task_24763_total_time; - int64_t futhark_mc_segmap_task_24763_total_iter; - int64_t *futhark_mc_segmap_parloop_24757_total_runtime; - int *futhark_mc_segmap_parloop_24757_runs; - int64_t *futhark_mc_segmap_parloop_24757_iter; - int64_t futhark_mc_segmap_parloop_24757_total_total_runtime; - int futhark_mc_segmap_parloop_24757_total_runs; - int64_t futhark_mc_segmap_parloop_24757_total_iter; - int64_t *futhark_mc_segmap_nested_task_24755_total_runtime; - int *futhark_mc_segmap_nested_task_24755_runs; - int64_t *futhark_mc_segmap_nested_task_24755_iter; - int64_t *futhark_mc_segred_stage_1_parloop_24770_total_runtime; - int *futhark_mc_segred_stage_1_parloop_24770_runs; - int64_t *futhark_mc_segred_stage_1_parloop_24770_iter; - int64_t futhark_mc_segred_stage_1_parloop_24770_total_total_runtime; - int futhark_mc_segred_stage_1_parloop_24770_total_runs; - int64_t futhark_mc_segred_stage_1_parloop_24770_total_iter; - int64_t *futhark_mc_segred_task_24767_total_runtime; - int *futhark_mc_segred_task_24767_runs; - int64_t *futhark_mc_segred_task_24767_iter; - int64_t futhark_mc_segred_task_24767_total_time; - int64_t futhark_mc_segred_task_24767_total_iter; - int64_t *futhark_mc_segmap_parloop_24774_total_runtime; - int *futhark_mc_segmap_parloop_24774_runs; - int64_t *futhark_mc_segmap_parloop_24774_iter; - int64_t futhark_mc_segmap_parloop_24774_total_total_runtime; - int futhark_mc_segmap_parloop_24774_total_runs; - int64_t futhark_mc_segmap_parloop_24774_total_iter; - int64_t *futhark_mc_segmap_task_24772_total_runtime; - int *futhark_mc_segmap_task_24772_runs; - int64_t *futhark_mc_segmap_task_24772_iter; - int64_t futhark_mc_segmap_task_24772_total_time; - int64_t futhark_mc_segmap_task_24772_total_iter; - int64_t *futhark_mc_segmap_parloop_24781_total_runtime; - int *futhark_mc_segmap_parloop_24781_runs; - int64_t *futhark_mc_segmap_parloop_24781_iter; - int64_t futhark_mc_segmap_parloop_24781_total_total_runtime; - int futhark_mc_segmap_parloop_24781_total_runs; - int64_t futhark_mc_segmap_parloop_24781_total_iter; - int64_t *futhark_mc_segmap_task_24779_total_runtime; - int *futhark_mc_segmap_task_24779_runs; - int64_t *futhark_mc_segmap_task_24779_iter; - int64_t futhark_mc_segmap_task_24779_total_time; - int64_t futhark_mc_segmap_task_24779_total_iter; - int64_t *futhark_mc_segmap_parloop_24777_total_runtime; - int *futhark_mc_segmap_parloop_24777_runs; - int64_t *futhark_mc_segmap_parloop_24777_iter; - int64_t futhark_mc_segmap_parloop_24777_total_total_runtime; - int futhark_mc_segmap_parloop_24777_total_runs; - int64_t futhark_mc_segmap_parloop_24777_total_iter; - int64_t *futhark_mc_segmap_nested_task_24775_total_runtime; - int *futhark_mc_segmap_nested_task_24775_runs; - int64_t *futhark_mc_segmap_nested_task_24775_iter; - int64_t *futhark_mc_segmap_parloop_24785_total_runtime; - int *futhark_mc_segmap_parloop_24785_runs; - int64_t *futhark_mc_segmap_parloop_24785_iter; - int64_t futhark_mc_segmap_parloop_24785_total_total_runtime; - int futhark_mc_segmap_parloop_24785_total_runs; - int64_t futhark_mc_segmap_parloop_24785_total_iter; - int64_t *futhark_mc_segmap_task_24783_total_runtime; - int *futhark_mc_segmap_task_24783_runs; - int64_t *futhark_mc_segmap_task_24783_iter; - int64_t futhark_mc_segmap_task_24783_total_time; - int64_t futhark_mc_segmap_task_24783_total_iter; - int64_t *futhark_mc_segmap_parloop_24792_total_runtime; - int *futhark_mc_segmap_parloop_24792_runs; - int64_t *futhark_mc_segmap_parloop_24792_iter; - int64_t futhark_mc_segmap_parloop_24792_total_total_runtime; - int futhark_mc_segmap_parloop_24792_total_runs; - int64_t futhark_mc_segmap_parloop_24792_total_iter; - int64_t *futhark_mc_segmap_task_24790_total_runtime; - int *futhark_mc_segmap_task_24790_runs; - int64_t *futhark_mc_segmap_task_24790_iter; - int64_t futhark_mc_segmap_task_24790_total_time; - int64_t futhark_mc_segmap_task_24790_total_iter; - int64_t *futhark_mc_segmap_parloop_24796_total_runtime; - int *futhark_mc_segmap_parloop_24796_runs; - int64_t *futhark_mc_segmap_parloop_24796_iter; - int64_t futhark_mc_segmap_parloop_24796_total_total_runtime; - int futhark_mc_segmap_parloop_24796_total_runs; - int64_t futhark_mc_segmap_parloop_24796_total_iter; - int64_t *futhark_mc_segmap_task_24794_total_runtime; - int *futhark_mc_segmap_task_24794_runs; - int64_t *futhark_mc_segmap_task_24794_iter; - int64_t futhark_mc_segmap_task_24794_total_time; - int64_t futhark_mc_segmap_task_24794_total_iter; - int64_t *futhark_mc_copy_parloop_24800_total_runtime; - int *futhark_mc_copy_parloop_24800_runs; - int64_t *futhark_mc_copy_parloop_24800_iter; - int64_t futhark_mc_copy_parloop_24800_total_total_runtime; - int futhark_mc_copy_parloop_24800_total_runs; - int64_t futhark_mc_copy_parloop_24800_total_iter; - int64_t *futhark_mc_copy_23020_task_24798_total_runtime; - int *futhark_mc_copy_23020_task_24798_runs; - int64_t *futhark_mc_copy_23020_task_24798_iter; - int64_t futhark_mc_copy_23020_task_24798_total_time; - int64_t futhark_mc_copy_23020_task_24798_total_iter; - int64_t *futhark_mc_segmap_parloop_24788_total_runtime; - int *futhark_mc_segmap_parloop_24788_runs; - int64_t *futhark_mc_segmap_parloop_24788_iter; - int64_t futhark_mc_segmap_parloop_24788_total_total_runtime; - int futhark_mc_segmap_parloop_24788_total_runs; - int64_t futhark_mc_segmap_parloop_24788_total_iter; - int64_t *futhark_mc_segmap_nested_task_24786_total_runtime; - int *futhark_mc_segmap_nested_task_24786_runs; - int64_t *futhark_mc_segmap_nested_task_24786_iter; - int64_t *futhark_mc_copy_parloop_24804_total_runtime; - int *futhark_mc_copy_parloop_24804_runs; - int64_t *futhark_mc_copy_parloop_24804_iter; - int64_t futhark_mc_copy_parloop_24804_total_total_runtime; - int futhark_mc_copy_parloop_24804_total_runs; - int64_t futhark_mc_copy_parloop_24804_total_iter; - int64_t *futhark_mc_copy_23031_task_24802_total_runtime; - int *futhark_mc_copy_23031_task_24802_runs; - int64_t *futhark_mc_copy_23031_task_24802_iter; - int64_t futhark_mc_copy_23031_task_24802_total_time; - int64_t futhark_mc_copy_23031_task_24802_total_iter; - int64_t *futhark_mc_copy_parloop_24808_total_runtime; - int *futhark_mc_copy_parloop_24808_runs; - int64_t *futhark_mc_copy_parloop_24808_iter; - int64_t futhark_mc_copy_parloop_24808_total_total_runtime; - int futhark_mc_copy_parloop_24808_total_runs; - int64_t futhark_mc_copy_parloop_24808_total_iter; - int64_t *futhark_mc_copy_23041_task_24806_total_runtime; - int *futhark_mc_copy_23041_task_24806_runs; - int64_t *futhark_mc_copy_23041_task_24806_iter; - int64_t futhark_mc_copy_23041_task_24806_total_time; - int64_t futhark_mc_copy_23041_task_24806_total_iter; - int64_t *futhark_mc_segmap_parloop_24812_total_runtime; - int *futhark_mc_segmap_parloop_24812_runs; - int64_t *futhark_mc_segmap_parloop_24812_iter; - int64_t futhark_mc_segmap_parloop_24812_total_total_runtime; - int futhark_mc_segmap_parloop_24812_total_runs; - int64_t futhark_mc_segmap_parloop_24812_total_iter; - int64_t *futhark_mc_segmap_task_24810_total_runtime; - int *futhark_mc_segmap_task_24810_runs; - int64_t *futhark_mc_segmap_task_24810_iter; - int64_t futhark_mc_segmap_task_24810_total_time; - int64_t futhark_mc_segmap_task_24810_total_iter; - int64_t *futhark_mc_segmap_parloop_24819_total_runtime; - int *futhark_mc_segmap_parloop_24819_runs; - int64_t *futhark_mc_segmap_parloop_24819_iter; - int64_t futhark_mc_segmap_parloop_24819_total_total_runtime; - int futhark_mc_segmap_parloop_24819_total_runs; - int64_t futhark_mc_segmap_parloop_24819_total_iter; - int64_t *futhark_mc_segmap_task_24817_total_runtime; - int *futhark_mc_segmap_task_24817_runs; - int64_t *futhark_mc_segmap_task_24817_iter; - int64_t futhark_mc_segmap_task_24817_total_time; - int64_t futhark_mc_segmap_task_24817_total_iter; - int64_t *futhark_mc_segmap_parloop_24815_total_runtime; - int *futhark_mc_segmap_parloop_24815_runs; - int64_t *futhark_mc_segmap_parloop_24815_iter; - int64_t futhark_mc_segmap_parloop_24815_total_total_runtime; - int futhark_mc_segmap_parloop_24815_total_runs; - int64_t futhark_mc_segmap_parloop_24815_total_iter; - int64_t *futhark_mc_segmap_nested_task_24813_total_runtime; - int *futhark_mc_segmap_nested_task_24813_runs; - int64_t *futhark_mc_segmap_nested_task_24813_iter; - int64_t *futhark_mc_copy_parloop_24823_total_runtime; - int *futhark_mc_copy_parloop_24823_runs; - int64_t *futhark_mc_copy_parloop_24823_iter; - int64_t futhark_mc_copy_parloop_24823_total_total_runtime; - int futhark_mc_copy_parloop_24823_total_runs; - int64_t futhark_mc_copy_parloop_24823_total_iter; - int64_t *futhark_mc_copy_23096_task_24821_total_runtime; - int *futhark_mc_copy_23096_task_24821_runs; - int64_t *futhark_mc_copy_23096_task_24821_iter; - int64_t futhark_mc_copy_23096_task_24821_total_time; - int64_t futhark_mc_copy_23096_task_24821_total_iter; - int64_t *futhark_mc_copy_parloop_24827_total_runtime; - int *futhark_mc_copy_parloop_24827_runs; - int64_t *futhark_mc_copy_parloop_24827_iter; - int64_t futhark_mc_copy_parloop_24827_total_total_runtime; - int futhark_mc_copy_parloop_24827_total_runs; - int64_t futhark_mc_copy_parloop_24827_total_iter; - int64_t *futhark_mc_copy_23106_task_24825_total_runtime; - int *futhark_mc_copy_23106_task_24825_runs; - int64_t *futhark_mc_copy_23106_task_24825_iter; - int64_t futhark_mc_copy_23106_task_24825_total_time; - int64_t futhark_mc_copy_23106_task_24825_total_iter; - int64_t *futhark_mc_segmap_parloop_24832_total_runtime; - int *futhark_mc_segmap_parloop_24832_runs; - int64_t *futhark_mc_segmap_parloop_24832_iter; - int64_t futhark_mc_segmap_parloop_24832_total_total_runtime; - int futhark_mc_segmap_parloop_24832_total_runs; - int64_t futhark_mc_segmap_parloop_24832_total_iter; - int64_t *futhark_mc_segmap_task_24830_total_runtime; - int *futhark_mc_segmap_task_24830_runs; - int64_t *futhark_mc_segmap_task_24830_iter; - int64_t futhark_mc_segmap_task_24830_total_time; - int64_t futhark_mc_segmap_task_24830_total_iter; - int64_t *futhark_mc_segmap_parloop_24861_total_runtime; - int *futhark_mc_segmap_parloop_24861_runs; - int64_t *futhark_mc_segmap_parloop_24861_iter; - int64_t futhark_mc_segmap_parloop_24861_total_total_runtime; - int futhark_mc_segmap_parloop_24861_total_runs; - int64_t futhark_mc_segmap_parloop_24861_total_iter; - int64_t *futhark_mc_segmap_task_24859_total_runtime; - int *futhark_mc_segmap_task_24859_runs; - int64_t *futhark_mc_segmap_task_24859_iter; - int64_t futhark_mc_segmap_task_24859_total_time; - int64_t futhark_mc_segmap_task_24859_total_iter; - int64_t *futhark_mc_segred_stage_1_parloop_24869_total_runtime; - int *futhark_mc_segred_stage_1_parloop_24869_runs; - int64_t *futhark_mc_segred_stage_1_parloop_24869_iter; - int64_t futhark_mc_segred_stage_1_parloop_24869_total_total_runtime; - int futhark_mc_segred_stage_1_parloop_24869_total_runs; - int64_t futhark_mc_segred_stage_1_parloop_24869_total_iter; - int64_t *futhark_mc_segred_task_24866_total_runtime; - int *futhark_mc_segred_task_24866_runs; - int64_t *futhark_mc_segred_task_24866_iter; - int64_t futhark_mc_segred_task_24866_total_time; - int64_t futhark_mc_segred_task_24866_total_iter; - int64_t *futhark_mc_segmap_parloop_24864_total_runtime; - int *futhark_mc_segmap_parloop_24864_runs; - int64_t *futhark_mc_segmap_parloop_24864_iter; - int64_t futhark_mc_segmap_parloop_24864_total_total_runtime; - int futhark_mc_segmap_parloop_24864_total_runs; - int64_t futhark_mc_segmap_parloop_24864_total_iter; - int64_t *futhark_mc_segmap_nested_task_24862_total_runtime; - int *futhark_mc_segmap_nested_task_24862_runs; - int64_t *futhark_mc_segmap_nested_task_24862_iter; - int64_t *futhark_mc_segmap_parloop_24873_total_runtime; - int *futhark_mc_segmap_parloop_24873_runs; - int64_t *futhark_mc_segmap_parloop_24873_iter; - int64_t futhark_mc_segmap_parloop_24873_total_total_runtime; - int futhark_mc_segmap_parloop_24873_total_runs; - int64_t futhark_mc_segmap_parloop_24873_total_iter; - int64_t *futhark_mc_segmap_task_24871_total_runtime; - int *futhark_mc_segmap_task_24871_runs; - int64_t *futhark_mc_segmap_task_24871_iter; - int64_t futhark_mc_segmap_task_24871_total_time; - int64_t futhark_mc_segmap_task_24871_total_iter; - int64_t *futhark_mc_segred_stage_1_parloop_24881_total_runtime; - int *futhark_mc_segred_stage_1_parloop_24881_runs; - int64_t *futhark_mc_segred_stage_1_parloop_24881_iter; - int64_t futhark_mc_segred_stage_1_parloop_24881_total_total_runtime; - int futhark_mc_segred_stage_1_parloop_24881_total_runs; - int64_t futhark_mc_segred_stage_1_parloop_24881_total_iter; - int64_t *futhark_mc_segred_task_24878_total_runtime; - int *futhark_mc_segred_task_24878_runs; - int64_t *futhark_mc_segred_task_24878_iter; - int64_t futhark_mc_segred_task_24878_total_time; - int64_t futhark_mc_segred_task_24878_total_iter; - int64_t *futhark_mc_segmap_parloop_24876_total_runtime; - int *futhark_mc_segmap_parloop_24876_runs; - int64_t *futhark_mc_segmap_parloop_24876_iter; - int64_t futhark_mc_segmap_parloop_24876_total_total_runtime; - int futhark_mc_segmap_parloop_24876_total_runs; - int64_t futhark_mc_segmap_parloop_24876_total_iter; - int64_t *futhark_mc_segmap_nested_task_24874_total_runtime; - int *futhark_mc_segmap_nested_task_24874_runs; - int64_t *futhark_mc_segmap_nested_task_24874_iter; - int64_t *futhark_mc_segred_stage_1_parloop_24887_total_runtime; - int *futhark_mc_segred_stage_1_parloop_24887_runs; - int64_t *futhark_mc_segred_stage_1_parloop_24887_iter; - int64_t futhark_mc_segred_stage_1_parloop_24887_total_total_runtime; - int futhark_mc_segred_stage_1_parloop_24887_total_runs; - int64_t futhark_mc_segred_stage_1_parloop_24887_total_iter; - int64_t *futhark_mc_segred_task_24883_total_runtime; - int *futhark_mc_segred_task_24883_runs; - int64_t *futhark_mc_segred_task_24883_iter; - int64_t futhark_mc_segred_task_24883_total_time; - int64_t futhark_mc_segred_task_24883_total_iter; - int64_t *futhark_mc_segred_stage_1_parloop_24893_total_runtime; - int *futhark_mc_segred_stage_1_parloop_24893_runs; - int64_t *futhark_mc_segred_stage_1_parloop_24893_iter; - int64_t futhark_mc_segred_stage_1_parloop_24893_total_total_runtime; - int futhark_mc_segred_stage_1_parloop_24893_total_runs; - int64_t futhark_mc_segred_stage_1_parloop_24893_total_iter; - int64_t *futhark_mc_segred_task_24889_total_runtime; - int *futhark_mc_segred_task_24889_runs; - int64_t *futhark_mc_segred_task_24889_iter; - int64_t futhark_mc_segred_task_24889_total_time; - int64_t futhark_mc_segred_task_24889_total_iter; - int64_t *futhark_mc_segred_stage_1_parloop_24902_total_runtime; - int *futhark_mc_segred_stage_1_parloop_24902_runs; - int64_t *futhark_mc_segred_stage_1_parloop_24902_iter; - int64_t futhark_mc_segred_stage_1_parloop_24902_total_total_runtime; - int futhark_mc_segred_stage_1_parloop_24902_total_runs; - int64_t futhark_mc_segred_stage_1_parloop_24902_total_iter; - int64_t *futhark_mc_segred_task_24895_total_runtime; - int *futhark_mc_segred_task_24895_runs; - int64_t *futhark_mc_segred_task_24895_iter; - int64_t futhark_mc_segred_task_24895_total_time; - int64_t futhark_mc_segred_task_24895_total_iter; - int64_t *futhark_mc_copy_parloop_24906_total_runtime; - int *futhark_mc_copy_parloop_24906_runs; - int64_t *futhark_mc_copy_parloop_24906_iter; - int64_t futhark_mc_copy_parloop_24906_total_total_runtime; - int futhark_mc_copy_parloop_24906_total_runs; - int64_t futhark_mc_copy_parloop_24906_total_iter; - int64_t *futhark_mc_copy_23838_task_24904_total_runtime; - int *futhark_mc_copy_23838_task_24904_runs; - int64_t *futhark_mc_copy_23838_task_24904_iter; - int64_t futhark_mc_copy_23838_task_24904_total_time; - int64_t futhark_mc_copy_23838_task_24904_total_iter; - int64_t *futhark_mc_segmap_parloop_24910_total_runtime; - int *futhark_mc_segmap_parloop_24910_runs; - int64_t *futhark_mc_segmap_parloop_24910_iter; - int64_t futhark_mc_segmap_parloop_24910_total_total_runtime; - int futhark_mc_segmap_parloop_24910_total_runs; - int64_t futhark_mc_segmap_parloop_24910_total_iter; - int64_t *futhark_mc_segmap_task_24908_total_runtime; - int *futhark_mc_segmap_task_24908_runs; - int64_t *futhark_mc_segmap_task_24908_iter; - int64_t futhark_mc_segmap_task_24908_total_time; - int64_t futhark_mc_segmap_task_24908_total_iter; - int64_t *futhark_mc_segmap_parloop_24915_total_runtime; - int *futhark_mc_segmap_parloop_24915_runs; - int64_t *futhark_mc_segmap_parloop_24915_iter; - int64_t futhark_mc_segmap_parloop_24915_total_total_runtime; - int futhark_mc_segmap_parloop_24915_total_runs; - int64_t futhark_mc_segmap_parloop_24915_total_iter; - int64_t *futhark_mc_segmap_task_24913_total_runtime; - int *futhark_mc_segmap_task_24913_runs; - int64_t *futhark_mc_segmap_task_24913_iter; - int64_t futhark_mc_segmap_task_24913_total_time; - int64_t futhark_mc_segmap_task_24913_total_iter; - int64_t *futhark_mc_segred_stage_1_parloop_24923_total_runtime; - int *futhark_mc_segred_stage_1_parloop_24923_runs; - int64_t *futhark_mc_segred_stage_1_parloop_24923_iter; - int64_t futhark_mc_segred_stage_1_parloop_24923_total_total_runtime; - int futhark_mc_segred_stage_1_parloop_24923_total_runs; - int64_t futhark_mc_segred_stage_1_parloop_24923_total_iter; - int64_t *futhark_mc_segred_task_24920_total_runtime; - int *futhark_mc_segred_task_24920_runs; - int64_t *futhark_mc_segred_task_24920_iter; - int64_t futhark_mc_segred_task_24920_total_time; - int64_t futhark_mc_segred_task_24920_total_iter; - int64_t *futhark_mc_segmap_parloop_24927_total_runtime; - int *futhark_mc_segmap_parloop_24927_runs; - int64_t *futhark_mc_segmap_parloop_24927_iter; - int64_t futhark_mc_segmap_parloop_24927_total_total_runtime; - int futhark_mc_segmap_parloop_24927_total_runs; - int64_t futhark_mc_segmap_parloop_24927_total_iter; - int64_t *futhark_mc_segmap_task_24925_total_runtime; - int *futhark_mc_segmap_task_24925_runs; - int64_t *futhark_mc_segmap_task_24925_iter; - int64_t futhark_mc_segmap_task_24925_total_time; - int64_t futhark_mc_segmap_task_24925_total_iter; - int64_t *futhark_mc_segmap_parloop_24918_total_runtime; - int *futhark_mc_segmap_parloop_24918_runs; - int64_t *futhark_mc_segmap_parloop_24918_iter; - int64_t futhark_mc_segmap_parloop_24918_total_total_runtime; - int futhark_mc_segmap_parloop_24918_total_runs; - int64_t futhark_mc_segmap_parloop_24918_total_iter; - int64_t *futhark_mc_segmap_nested_task_24916_total_runtime; - int *futhark_mc_segmap_nested_task_24916_runs; - int64_t *futhark_mc_segmap_nested_task_24916_iter; - int64_t *futhark_mc_segmap_parloop_24932_total_runtime; - int *futhark_mc_segmap_parloop_24932_runs; - int64_t *futhark_mc_segmap_parloop_24932_iter; - int64_t futhark_mc_segmap_parloop_24932_total_total_runtime; - int futhark_mc_segmap_parloop_24932_total_runs; - int64_t futhark_mc_segmap_parloop_24932_total_iter; - int64_t *futhark_mc_segmap_task_24930_total_runtime; - int *futhark_mc_segmap_task_24930_runs; - int64_t *futhark_mc_segmap_task_24930_iter; - int64_t futhark_mc_segmap_task_24930_total_time; - int64_t futhark_mc_segmap_task_24930_total_iter; - int64_t *futhark_mc_segmap_parloop_24939_total_runtime; - int *futhark_mc_segmap_parloop_24939_runs; - int64_t *futhark_mc_segmap_parloop_24939_iter; - int64_t futhark_mc_segmap_parloop_24939_total_total_runtime; - int futhark_mc_segmap_parloop_24939_total_runs; - int64_t futhark_mc_segmap_parloop_24939_total_iter; - int64_t *futhark_mc_segmap_task_24937_total_runtime; - int *futhark_mc_segmap_task_24937_runs; - int64_t *futhark_mc_segmap_task_24937_iter; - int64_t futhark_mc_segmap_task_24937_total_time; - int64_t futhark_mc_segmap_task_24937_total_iter; - int64_t *futhark_mc_segmap_parloop_24935_total_runtime; - int *futhark_mc_segmap_parloop_24935_runs; - int64_t *futhark_mc_segmap_parloop_24935_iter; - int64_t futhark_mc_segmap_parloop_24935_total_total_runtime; - int futhark_mc_segmap_parloop_24935_total_runs; - int64_t futhark_mc_segmap_parloop_24935_total_iter; - int64_t *futhark_mc_segmap_nested_task_24933_total_runtime; - int *futhark_mc_segmap_nested_task_24933_runs; - int64_t *futhark_mc_segmap_nested_task_24933_iter; - int64_t *futhark_mc_copy_parloop_24943_total_runtime; - int *futhark_mc_copy_parloop_24943_runs; - int64_t *futhark_mc_copy_parloop_24943_iter; - int64_t futhark_mc_copy_parloop_24943_total_total_runtime; - int futhark_mc_copy_parloop_24943_total_runs; - int64_t futhark_mc_copy_parloop_24943_total_iter; - int64_t *futhark_mc_copy_23995_task_24941_total_runtime; - int *futhark_mc_copy_23995_task_24941_runs; - int64_t *futhark_mc_copy_23995_task_24941_iter; - int64_t futhark_mc_copy_23995_task_24941_total_time; - int64_t futhark_mc_copy_23995_task_24941_total_iter; - int64_t *futhark_mc_segmap_parloop_24847_total_runtime; - int *futhark_mc_segmap_parloop_24847_runs; - int64_t *futhark_mc_segmap_parloop_24847_iter; - int64_t futhark_mc_segmap_parloop_24847_total_total_runtime; - int futhark_mc_segmap_parloop_24847_total_runs; - int64_t futhark_mc_segmap_parloop_24847_total_iter; - int64_t *futhark_mc_segmap_nested_task_24845_total_runtime; - int *futhark_mc_segmap_nested_task_24845_runs; - int64_t *futhark_mc_segmap_nested_task_24845_iter; - int64_t *futhark_mc_copy_parloop_24947_total_runtime; - int *futhark_mc_copy_parloop_24947_runs; - int64_t *futhark_mc_copy_parloop_24947_iter; - int64_t futhark_mc_copy_parloop_24947_total_total_runtime; - int futhark_mc_copy_parloop_24947_total_runs; - int64_t futhark_mc_copy_parloop_24947_total_iter; - int64_t *futhark_mc_copy_24008_task_24945_total_runtime; - int *futhark_mc_copy_24008_task_24945_runs; - int64_t *futhark_mc_copy_24008_task_24945_iter; - int64_t futhark_mc_copy_24008_task_24945_total_time; - int64_t futhark_mc_copy_24008_task_24945_total_iter; - int64_t *futhark_mc_copy_parloop_24951_total_runtime; - int *futhark_mc_copy_parloop_24951_runs; - int64_t *futhark_mc_copy_parloop_24951_iter; - int64_t futhark_mc_copy_parloop_24951_total_total_runtime; - int futhark_mc_copy_parloop_24951_total_runs; - int64_t futhark_mc_copy_parloop_24951_total_iter; - int64_t *futhark_mc_copy_24018_task_24949_total_runtime; - int *futhark_mc_copy_24018_task_24949_runs; - int64_t *futhark_mc_copy_24018_task_24949_iter; - int64_t futhark_mc_copy_24018_task_24949_total_time; - int64_t futhark_mc_copy_24018_task_24949_total_iter; - int64_t *futhark_mc_segmap_parloop_24955_total_runtime; - int *futhark_mc_segmap_parloop_24955_runs; - int64_t *futhark_mc_segmap_parloop_24955_iter; - int64_t futhark_mc_segmap_parloop_24955_total_total_runtime; - int futhark_mc_segmap_parloop_24955_total_runs; - int64_t futhark_mc_segmap_parloop_24955_total_iter; - int64_t *futhark_mc_segmap_task_24953_total_runtime; - int *futhark_mc_segmap_task_24953_runs; - int64_t *futhark_mc_segmap_task_24953_iter; - int64_t futhark_mc_segmap_task_24953_total_time; - int64_t futhark_mc_segmap_task_24953_total_iter; - int64_t *futhark_mc_copy_parloop_24959_total_runtime; - int *futhark_mc_copy_parloop_24959_runs; - int64_t *futhark_mc_copy_parloop_24959_iter; - int64_t futhark_mc_copy_parloop_24959_total_total_runtime; - int futhark_mc_copy_parloop_24959_total_runs; - int64_t futhark_mc_copy_parloop_24959_total_iter; - int64_t *futhark_mc_copy_24047_task_24957_total_runtime; - int *futhark_mc_copy_24047_task_24957_runs; - int64_t *futhark_mc_copy_24047_task_24957_iter; - int64_t futhark_mc_copy_24047_task_24957_total_time; - int64_t futhark_mc_copy_24047_task_24957_total_iter; - int64_t *futhark_mc_copy_parloop_24963_total_runtime; - int *futhark_mc_copy_parloop_24963_runs; - int64_t *futhark_mc_copy_parloop_24963_iter; - int64_t futhark_mc_copy_parloop_24963_total_total_runtime; - int futhark_mc_copy_parloop_24963_total_runs; - int64_t futhark_mc_copy_parloop_24963_total_iter; - int64_t *futhark_mc_copy_24057_task_24961_total_runtime; - int *futhark_mc_copy_24057_task_24961_runs; - int64_t *futhark_mc_copy_24057_task_24961_iter; - int64_t futhark_mc_copy_24057_task_24961_total_time; - int64_t futhark_mc_copy_24057_task_24961_total_iter; - int64_t *futhark_mc_segred_stage_1_parloop_24968_total_runtime; - int *futhark_mc_segred_stage_1_parloop_24968_runs; - int64_t *futhark_mc_segred_stage_1_parloop_24968_iter; - int64_t futhark_mc_segred_stage_1_parloop_24968_total_total_runtime; - int futhark_mc_segred_stage_1_parloop_24968_total_runs; - int64_t futhark_mc_segred_stage_1_parloop_24968_total_iter; - int64_t *futhark_mc_segred_task_24965_total_runtime; - int *futhark_mc_segred_task_24965_runs; - int64_t *futhark_mc_segred_task_24965_iter; - int64_t futhark_mc_segred_task_24965_total_time; - int64_t futhark_mc_segred_task_24965_total_iter; - int64_t *futhark_mc_segmap_parloop_24982_total_runtime; - int *futhark_mc_segmap_parloop_24982_runs; - int64_t *futhark_mc_segmap_parloop_24982_iter; - int64_t futhark_mc_segmap_parloop_24982_total_total_runtime; - int futhark_mc_segmap_parloop_24982_total_runs; - int64_t futhark_mc_segmap_parloop_24982_total_iter; - int64_t *futhark_mc_segmap_task_24980_total_runtime; - int *futhark_mc_segmap_task_24980_runs; - int64_t *futhark_mc_segmap_task_24980_iter; - int64_t futhark_mc_segmap_task_24980_total_time; - int64_t futhark_mc_segmap_task_24980_total_iter; - int64_t *futhark_mc_segred_stage_1_parloop_24990_total_runtime; - int *futhark_mc_segred_stage_1_parloop_24990_runs; - int64_t *futhark_mc_segred_stage_1_parloop_24990_iter; - int64_t futhark_mc_segred_stage_1_parloop_24990_total_total_runtime; - int futhark_mc_segred_stage_1_parloop_24990_total_runs; - int64_t futhark_mc_segred_stage_1_parloop_24990_total_iter; - int64_t *futhark_mc_segred_task_24987_total_runtime; - int *futhark_mc_segred_task_24987_runs; - int64_t *futhark_mc_segred_task_24987_iter; - int64_t futhark_mc_segred_task_24987_total_time; - int64_t futhark_mc_segred_task_24987_total_iter; - int64_t *futhark_mc_segmap_parloop_24985_total_runtime; - int *futhark_mc_segmap_parloop_24985_runs; - int64_t *futhark_mc_segmap_parloop_24985_iter; - int64_t futhark_mc_segmap_parloop_24985_total_total_runtime; - int futhark_mc_segmap_parloop_24985_total_runs; - int64_t futhark_mc_segmap_parloop_24985_total_iter; - int64_t *futhark_mc_segmap_nested_task_24983_total_runtime; - int *futhark_mc_segmap_nested_task_24983_runs; - int64_t *futhark_mc_segmap_nested_task_24983_iter; - int64_t *futhark_mc_segmap_parloop_24994_total_runtime; - int *futhark_mc_segmap_parloop_24994_runs; - int64_t *futhark_mc_segmap_parloop_24994_iter; - int64_t futhark_mc_segmap_parloop_24994_total_total_runtime; - int futhark_mc_segmap_parloop_24994_total_runs; - int64_t futhark_mc_segmap_parloop_24994_total_iter; - int64_t *futhark_mc_segmap_task_24992_total_runtime; - int *futhark_mc_segmap_task_24992_runs; - int64_t *futhark_mc_segmap_task_24992_iter; - int64_t futhark_mc_segmap_task_24992_total_time; - int64_t futhark_mc_segmap_task_24992_total_iter; - int64_t *futhark_mc_segred_stage_1_parloop_25002_total_runtime; - int *futhark_mc_segred_stage_1_parloop_25002_runs; - int64_t *futhark_mc_segred_stage_1_parloop_25002_iter; - int64_t futhark_mc_segred_stage_1_parloop_25002_total_total_runtime; - int futhark_mc_segred_stage_1_parloop_25002_total_runs; - int64_t futhark_mc_segred_stage_1_parloop_25002_total_iter; - int64_t *futhark_mc_segred_task_24999_total_runtime; - int *futhark_mc_segred_task_24999_runs; - int64_t *futhark_mc_segred_task_24999_iter; - int64_t futhark_mc_segred_task_24999_total_time; - int64_t futhark_mc_segred_task_24999_total_iter; - int64_t *futhark_mc_segmap_parloop_24997_total_runtime; - int *futhark_mc_segmap_parloop_24997_runs; - int64_t *futhark_mc_segmap_parloop_24997_iter; - int64_t futhark_mc_segmap_parloop_24997_total_total_runtime; - int futhark_mc_segmap_parloop_24997_total_runs; - int64_t futhark_mc_segmap_parloop_24997_total_iter; - int64_t *futhark_mc_segmap_nested_task_24995_total_runtime; - int *futhark_mc_segmap_nested_task_24995_runs; - int64_t *futhark_mc_segmap_nested_task_24995_iter; - int64_t *futhark_mc_segred_stage_1_parloop_25008_total_runtime; - int *futhark_mc_segred_stage_1_parloop_25008_runs; - int64_t *futhark_mc_segred_stage_1_parloop_25008_iter; - int64_t futhark_mc_segred_stage_1_parloop_25008_total_total_runtime; - int futhark_mc_segred_stage_1_parloop_25008_total_runs; - int64_t futhark_mc_segred_stage_1_parloop_25008_total_iter; - int64_t *futhark_mc_segred_task_25004_total_runtime; - int *futhark_mc_segred_task_25004_runs; - int64_t *futhark_mc_segred_task_25004_iter; - int64_t futhark_mc_segred_task_25004_total_time; - int64_t futhark_mc_segred_task_25004_total_iter; - int64_t *futhark_mc_segred_stage_1_parloop_25014_total_runtime; - int *futhark_mc_segred_stage_1_parloop_25014_runs; - int64_t *futhark_mc_segred_stage_1_parloop_25014_iter; - int64_t futhark_mc_segred_stage_1_parloop_25014_total_total_runtime; - int futhark_mc_segred_stage_1_parloop_25014_total_runs; - int64_t futhark_mc_segred_stage_1_parloop_25014_total_iter; - int64_t *futhark_mc_segred_task_25010_total_runtime; - int *futhark_mc_segred_task_25010_runs; - int64_t *futhark_mc_segred_task_25010_iter; - int64_t futhark_mc_segred_task_25010_total_time; - int64_t futhark_mc_segred_task_25010_total_iter; - int64_t *futhark_mc_segred_stage_1_parloop_24975_total_runtime; - int *futhark_mc_segred_stage_1_parloop_24975_runs; - int64_t *futhark_mc_segred_stage_1_parloop_24975_iter; - int64_t futhark_mc_segred_stage_1_parloop_24975_total_total_runtime; - int futhark_mc_segred_stage_1_parloop_24975_total_runs; - int64_t futhark_mc_segred_stage_1_parloop_24975_total_iter; - int64_t *futhark_mc_segred_nested_task_24972_total_runtime; - int *futhark_mc_segred_nested_task_24972_runs; - int64_t *futhark_mc_segred_nested_task_24972_iter; - int64_t *futhark_mc_copy_parloop_25018_total_runtime; - int *futhark_mc_copy_parloop_25018_runs; - int64_t *futhark_mc_copy_parloop_25018_iter; - int64_t futhark_mc_copy_parloop_25018_total_total_runtime; - int futhark_mc_copy_parloop_25018_total_runs; - int64_t futhark_mc_copy_parloop_25018_total_iter; - int64_t *futhark_mc_copy_24265_task_25016_total_runtime; - int *futhark_mc_copy_24265_task_25016_runs; - int64_t *futhark_mc_copy_24265_task_25016_iter; - int64_t futhark_mc_copy_24265_task_25016_total_time; - int64_t futhark_mc_copy_24265_task_25016_total_iter; - int64_t *futhark_mc_copy_parloop_25022_total_runtime; - int *futhark_mc_copy_parloop_25022_runs; - int64_t *futhark_mc_copy_parloo