Skip to content

Missing data file for parallel-download workflow #4

Description

@McLavish

Commit 7c7f67b is missing the data-size.txt file

I could not find the original dataset used in their paper, so I had to regenerate a random dataset

mkdir -p benchmarks-data/600.workflows/631.parallel-download
python3 - <<'PY'
import os, random
size = 2 ** 20      # 1 MiB for the “test” size; adjust as needed
path = f"benchmarks-data/600.workflows/631.parallel-download/data-{size}-bytes.txt"
total = 0
with open(path, "w") as f:
    while total < size:
        chunk = str(random.randint(0, 255)) + "\n"
        f.write(chunk)
        total += len(chunk)
print(f"Wrote {path} ({total} bytes)")
PY

under:

benchmarks-data/600.workflows/631.parallel-download

Activity

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Metadata

Assignees

Labels

bugSomething isn't working

Projects

No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions