mirror of
https://github.com/open-mmlab/mmdeploy.git
synced 2025-01-14 08:09:43 +08:00
34 lines
736 B
C
34 lines
736 B
C
|
// Copyright (c) OpenMMLab. All rights reserved.
|
||
|
|
||
|
#ifndef MMDEPLOY_CSRC_EXPERIMENTAL_EXECUTION_H_
|
||
|
#define MMDEPLOY_CSRC_EXPERIMENTAL_EXECUTION_H_
|
||
|
|
||
|
#include <atomic>
|
||
|
#include <cassert>
|
||
|
#include <condition_variable>
|
||
|
#include <functional>
|
||
|
#include <mutex>
|
||
|
#include <optional>
|
||
|
#include <thread>
|
||
|
#include <variant>
|
||
|
|
||
|
#include "bulk.h"
|
||
|
#include "dynamic_batch.h"
|
||
|
#include "ensure_started.h"
|
||
|
#include "execute.h"
|
||
|
#include "just.h"
|
||
|
#include "let_value.h"
|
||
|
#include "on.h"
|
||
|
#include "run_loop.h"
|
||
|
#include "split.h"
|
||
|
#include "start_detached.h"
|
||
|
#include "submit.h"
|
||
|
#include "sync_wait.h"
|
||
|
#include "then.h"
|
||
|
#include "transfer.h"
|
||
|
#include "transfer_just.h"
|
||
|
#include "utility.h"
|
||
|
#include "when_all.h"
|
||
|
|
||
|
#endif // MMDEPLOY_CSRC_EXPERIMENTAL_EXECUTION_H_
|