Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Higher level dataflow concepts #4

Open
thomas-am opened this issue Nov 2, 2021 · 0 comments
Open

Higher level dataflow concepts #4

thomas-am opened this issue Nov 2, 2021 · 0 comments

Comments

@thomas-am
Copy link
Member

thomas-am commented Nov 2, 2021

It would be nice to allow for even simpler, higher-level dataflow concepts.
For example, consider an ML dataflow model along these lines:

{
    "choice": "machine_learning_training",
    "machine_learning_training": {
        "epochs": 10,
        "training_data": {
            "size": 10000000000,
            "batch_size": 10000000
            "storage_nodes": [
                "S1"
            ]
        },
        "gradient_size": 10000000,
        "include_parameter_server": false,
        "compute_nodes": [
            "C1", "C2"
        ],
        "async_choice": "async",
        "async": {
            "max_stale": 10
        },
        "all_reduce": "ring",
    }
}

This high-level model would than get translated into lower level constructs (scatters, computes, broadcasts, ...) before execution.
It would allow users with less knowledge of ML data flow to generate workloads that still mimic ML training.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant