X-Git-Url: http://mj.ucw.cz/gitweb/?a=blobdiff_plain;f=lib%2Fsorter%2Fgovern.c;h=524b0c905d739734ebe0aab372d67ebf1d336fd6;hb=25bf4841c44bcaedf393cf900174a166a8021fb9;hp=9b8ee774ef6f345531aa21197cf2bd31d6307117;hpb=e65a1a48088af1a5731f64b50ba933f4c29d5040;p=libucw.git diff --git a/lib/sorter/govern.c b/lib/sorter/govern.c index 9b8ee774..524b0c90 100644 --- a/lib/sorter/govern.c +++ b/lib/sorter/govern.c @@ -10,35 +10,36 @@ #include "lib/lib.h" #include "lib/fastbuf.h" #include "lib/mempool.h" +#include "lib/stkstring.h" #include "lib/sorter/common.h" #include #include #include -static u64 -sorter_clock(void) +#define F_BSIZE(b) stk_fsize(sbuck_size(b)) + +static void +sorter_start_timer(struct sort_context *ctx) { - struct timeval tv; - gettimeofday(&tv, NULL); - return (u64)tv.tv_sec * 1000 + tv.tv_usec / 1000; + init_timer(&ctx->start_time); } static void -sorter_start_timer(struct sort_context *ctx) +sorter_stop_timer(struct sort_context *ctx, uns *account_to) { - ctx->start_time = sorter_clock(); + ctx->last_pass_time = get_timer(&ctx->start_time); + *account_to += ctx->last_pass_time; } static uns sorter_speed(struct sort_context *ctx, u64 size) { - u64 stop_time = sorter_clock(); if (!size) return 0; - if (stop_time <= ctx->start_time) + if (!ctx->last_pass_time) return -1; - return (uns)((double)size / (1<<20) * 1000 / (stop_time-ctx->start_time)); + return (uns)((double)size / (1<<20) * 1000 / ctx->last_pass_time); } static int @@ -61,7 +62,10 @@ sbuck_join_to(struct sort_bucket *b) return NULL; struct sort_bucket *out = (struct sort_bucket *) b->n.prev; // Such bucket is guaranteed to exist - return (out->flags & SBF_FINAL) ? out : NULL; + if (!(out->flags & SBF_FINAL)) + return NULL; + ASSERT(out->runs == 1); + return out; } static void @@ -98,14 +102,19 @@ sorter_twoway(struct sort_context *ctx, struct sort_bucket *b) if (!(sorter_debug & SORT_DEBUG_NO_PRESORT) || (b->flags & SBF_CUSTOM_PRESORT)) { - SORT_XTRACE(2, "%s", ((b->flags & SBF_CUSTOM_PRESORT) ? "Custom presorting" : "Presorting")); + SORT_XTRACE(3, "%s", ((b->flags & SBF_CUSTOM_PRESORT) ? "Custom presorting" : "Presorting")); sorter_start_timer(ctx); ins[0] = sbuck_new(ctx); if (!sorter_presort(ctx, b, ins[0], join ? : ins[0])) { + sorter_stop_timer(ctx, &ctx->total_pre_time); SORT_XTRACE(((b->flags & SBF_SOURCE) ? 1 : 2), "Sorted in memory"); if (join) - sbuck_drop(ins[0]); + { + ASSERT(join->runs == 2); + join->runs--; + sbuck_drop(ins[0]); + } else clist_insert_after(&ins[0]->n, list_pos); sbuck_drop(b); @@ -117,6 +126,7 @@ sorter_twoway(struct sort_context *ctx, struct sort_bucket *b) while (sorter_presort(ctx, b, ins[i], ins[i])) i = 1-i; sbuck_drop(b); + sorter_stop_timer(ctx, &ctx->total_pre_time); SORT_TRACE("Presorting pass (%d+%d runs, %s+%s, %dMB/s)", ins[0]->runs, ins[1]->runs, F_BSIZE(ins[0]), F_BSIZE(ins[1]), @@ -128,7 +138,7 @@ sorter_twoway(struct sort_context *ctx, struct sort_bucket *b) ins[0] = b; } - SORT_XTRACE(2, "Main sorting"); + SORT_XTRACE(3, "Main sorting"); uns pass = 0; do { ++pass; @@ -136,12 +146,15 @@ sorter_twoway(struct sort_context *ctx, struct sort_bucket *b) if (ins[0]->runs == 1 && ins[1]->runs == 1 && join) { // This is guaranteed to produce a single run, so join if possible + sh_off_t join_size = sbuck_size(join); outs[0] = join; outs[1] = NULL; ctx->twoway_merge(ctx, ins, outs); - ASSERT(outs[0]->runs == 2); - outs[0]->runs--; - SORT_TRACE("Mergesort pass %d (final run, %s, %dMB/s)", pass, F_BSIZE(outs[0]), sorter_speed(ctx, sbuck_size(outs[0]))); + ASSERT(join->runs == 2); + join->runs--; + join_size = sbuck_size(join) - join_size; + sorter_stop_timer(ctx, &ctx->total_ext_time); + SORT_TRACE("Mergesort pass %d (final run, %s, %dMB/s)", pass, stk_fsize(join_size), sorter_speed(ctx, join_size)); sbuck_drop(ins[0]); sbuck_drop(ins[1]); return; @@ -150,6 +163,7 @@ sorter_twoway(struct sort_context *ctx, struct sort_bucket *b) outs[1] = sbuck_new(ctx); outs[2] = NULL; ctx->twoway_merge(ctx, ins, outs); + sorter_stop_timer(ctx, &ctx->total_ext_time); SORT_TRACE("Mergesort pass %d (%d+%d runs, %s+%s, %dMB/s)", pass, outs[0]->runs, outs[1]->runs, F_BSIZE(outs[0]), F_BSIZE(outs[1]), @@ -163,23 +177,122 @@ sorter_twoway(struct sort_context *ctx, struct sort_bucket *b) clist_insert_after(&ins[0]->n, list_pos); } -static int -sorter_radix_p(struct sort_context *ctx, struct sort_bucket *b) +static void +sorter_multiway(struct sort_context *ctx, struct sort_bucket *b) { - return b->hash_bits && ctx->radix_split && - !(sorter_debug & SORT_DEBUG_NO_RADIX) && - sbuck_size(b) > (sh_off_t)sorter_bufsize; + clist parts; + cnode *list_pos = b->n.prev; + struct sort_bucket *join = sbuck_join_to(b); + + clist_init(&parts); + ASSERT(!(sorter_debug & SORT_DEBUG_NO_PRESORT)); + // FIXME: What if the parts will be too small? + SORT_XTRACE(3, "%s", ((b->flags & SBF_CUSTOM_PRESORT) ? "Custom presorting" : "Presorting")); + uns cont; + uns part_cnt = 0; + u64 total_size = 0; + sorter_start_timer(ctx); + do + { + struct sort_bucket *p = sbuck_new(ctx); + clist_add_tail(&parts, &p->n); + cont = sorter_presort(ctx, b, p, (!part_cnt && join) ? join : p); + part_cnt++; + total_size += sbuck_size(p); + sbuck_swap_out(p); + } + while (cont); + sorter_stop_timer(ctx, &ctx->total_pre_time); + + // FIXME: This is way too similar to the two-way case. + if (part_cnt == 1) + { + struct sort_bucket *p = clist_head(&parts); + SORT_XTRACE(((b->flags & SBF_SOURCE) ? 1 : 2), "Sorted in memory"); + if (join) + { + ASSERT(join->runs == 2); + join->runs--; + sbuck_drop(p); + } + else + clist_insert_after(&p->n, list_pos); + sbuck_drop(b); + return; + } + + SORT_TRACE("Multi-way presorting pass (%d parts, %s, %dMB/s)", part_cnt, stk_fsize(total_size), sorter_speed(ctx, total_size)); + sbuck_drop(b); + + uns max_ways = 16; + struct sort_bucket *ways[max_ways+1]; + SORT_XTRACE(2, "Starting up to %d-way merge", max_ways); + for (;;) + { + uns n = 0; + struct sort_bucket *p; + while (n < max_ways && (p = clist_head(&parts))) + { + clist_remove(&p->n); + ways[n++] = p; + } + ways[n] = NULL; + ASSERT(n > 1); + + struct sort_bucket *out; + out = sbuck_new(ctx); // FIXME: No joining so far + sorter_start_timer(ctx); + ctx->multiway_merge(ctx, ways, out); + sorter_stop_timer(ctx, &ctx->total_ext_time); + + for (uns i=0; in, list_pos); + SORT_TRACE("Multi-way merge completed (%s, %dMB/s)", F_BSIZE(out), sorter_speed(ctx, sbuck_size(out))); + return; + } + else + { + sbuck_swap_out(out); + clist_add_tail(&parts, &out->n); + SORT_TRACE("Multi-way merge pass (%d ways, %s, %dMB/s)", n, F_BSIZE(out), sorter_speed(ctx, sbuck_size(out))); + } + } +} + +static uns +sorter_radix_bits(struct sort_context *ctx, struct sort_bucket *b) +{ + if (!b->hash_bits || b->hash_bits < sorter_min_radix_bits || + !ctx->radix_split || + (b->flags & SBF_CUSTOM_PRESORT) || + (sorter_debug & SORT_DEBUG_NO_RADIX)) + return 0; + + u64 in = sbuck_size(b); + u64 mem = ctx->internal_estimate(ctx, b) * 0.8; // FIXME: Magical factor for hash non-uniformity + if (in <= mem) + return 0; + + uns n = sorter_min_radix_bits; + while (n < sorter_max_radix_bits && n < b->hash_bits && (in >> n) > mem) + n++; + return n; } static void -sorter_radix(struct sort_context *ctx, struct sort_bucket *b) +sorter_radix(struct sort_context *ctx, struct sort_bucket *b, uns bits) { - uns bits = MIN(b->hash_bits, 4); /* FIXME */ uns nbuck = 1 << bits; - SORT_XTRACE(2, "Running radix sort on %s with %d bits of %d", F_BSIZE(b), bits, b->hash_bits); + SORT_XTRACE(2, "Running radix split on %s with hash %d bits of %d (expecting %s buckets)", + F_BSIZE(b), bits, b->hash_bits, stk_fsize(sbuck_size(b) / nbuck)); + sorter_free_buf(ctx); sorter_start_timer(ctx); - struct sort_bucket *outs[nbuck]; + struct sort_bucket **outs = alloca(nbuck * sizeof(struct sort_bucket *)); for (uns i=nbuck; i--; ) { outs[i] = sbuck_new(ctx); @@ -189,17 +302,20 @@ sorter_radix(struct sort_context *ctx, struct sort_bucket *b) ctx->radix_split(ctx, b, outs, b->hash_bits - bits, bits); - u64 min = ~0U, max = 0, sum = 0; + u64 min = ~(u64)0, max = 0, sum = 0; for (uns i=0; i 4) + sbuck_swap_out(outs[i]); } + sorter_stop_timer(ctx, &ctx->total_ext_time); SORT_TRACE("Radix split (%d buckets, %s min, %s max, %s avg, %dMB/s)", nbuck, - F_SIZE(min), F_SIZE(max), F_SIZE(sum / nbuck), sorter_speed(ctx, sum)); + stk_fsize(min), stk_fsize(max), stk_fsize(sum / nbuck), sorter_speed(ctx, sum)); sbuck_drop(b); } @@ -208,8 +324,7 @@ sorter_run(struct sort_context *ctx) { ctx->pool = mp_new(4096); clist_init(&ctx->bucket_list); - - /* FIXME: Remember to test sorting of empty files */ + sorter_prepare_buf(ctx); // Create bucket containing the source struct sort_bucket *bin = sbuck_new(ctx); @@ -219,10 +334,10 @@ sorter_run(struct sort_context *ctx) else bin->fb = ctx->in_fb; bin->ident = "in"; - bin->size = ctx->in_size; /* Sizes should be either sh_off_t or u64, not both; beware of ~0U */ + bin->size = ctx->in_size; bin->hash_bits = ctx->hash_bits; clist_add_tail(&ctx->bucket_list, &bin->n); - SORT_XTRACE(2, "Input size: %s", (ctx->in_size == ~(u64)0 ? (byte*)"unknown" : F_BSIZE(bin))); + SORT_XTRACE(2, "Input size: %s, %d hash bits", F_BSIZE(bin), bin->hash_bits); // Create bucket for the output struct sort_bucket *bout = sbuck_new(ctx); @@ -234,14 +349,18 @@ sorter_run(struct sort_context *ctx) clist_add_head(&ctx->bucket_list, &bout->n); struct sort_bucket *b; + uns bits; while (bout = clist_head(&ctx->bucket_list), b = clist_next(&ctx->bucket_list, &bout->n)) { + SORT_XTRACE(2, "Next block: %s, %d hash bits", F_BSIZE(b), b->hash_bits); if (!sbuck_have(b)) sbuck_drop(b); else if (b->runs == 1) sorter_join(b); - else if (sorter_radix_p(ctx, b)) - sorter_radix(ctx, b); + else if (ctx->multiway_merge && !(sorter_debug & (SORT_DEBUG_NO_MULTIWAY | SORT_DEBUG_NO_PRESORT))) // FIXME: Just kidding... + sorter_multiway(ctx, b); + else if (bits = sorter_radix_bits(ctx, b)) + sorter_radix(ctx, b, bits); else sorter_twoway(ctx, b); } @@ -249,5 +368,7 @@ sorter_run(struct sort_context *ctx) sorter_free_buf(ctx); sbuck_write(bout); // Force empty bucket to a file SORT_XTRACE(2, "Final size: %s", F_BSIZE(bout)); + SORT_XTRACE(2, "Final timings: %.3fs external sorting, %.3fs presorting, %.3fs internal sorting", + ctx->total_ext_time/1000., ctx->total_pre_time/1000., ctx->total_int_time/1000.); ctx->out_fb = sbuck_read(bout); }