Task graph and task future abstractions in executor
authorIlia Cherniavskii <iliacher@fb.com>
Mon, 10 Dec 2018 22:21:24 +0000 (14:21 -0800)
committerFacebook Github Bot <facebook-github-bot@users.noreply.github.com>
Mon, 10 Dec 2018 22:28:56 +0000 (14:28 -0800)
commit029600813eff9ce1d4de4c6b13fc3cbc9eb8fc73
tree70f17f0f6b66d822e464f2fa6721e3e2e0a78195
parenta51fe386c8e5f3198c948fe0a08458892a7901c4
Task graph and task future abstractions in executor

Summary: Pull Request resolved: https://github.com/pytorch/pytorch/pull/14116

Reviewed By: dmudiger

Differential Revision: D13043261

fbshipit-source-id: d89424354aea14d1d14eb8320fb3aa34908a4e81
caffe2/core/net_async_task.cc [new file with mode: 0644]
caffe2/core/net_async_task.h [new file with mode: 0644]
caffe2/core/net_async_task_future.cc [new file with mode: 0644]
caffe2/core/net_async_task_future.h [new file with mode: 0644]
caffe2/core/net_async_task_graph.cc [new file with mode: 0644]
caffe2/core/net_async_task_graph.h [new file with mode: 0644]
caffe2/core/net_parallel.cc [new file with mode: 0644]
caffe2/core/net_parallel.h [new file with mode: 0644]
caffe2/python/test/executor_test.py