Fix the build error for clang when export TIM_VX_ENABLE_PLATFORM=ON
Signed-off-by: yuenan.li <yuenan.li@verisilicon.com>
This commit is contained in:
parent
3663a99e0f
commit
9a28ff5758
|
|
@ -50,7 +50,7 @@ class NativeExecutable : public IExecutable{
|
|||
void GetOutput(const std::vector<std::shared_ptr<ITensorHandle>>& th) override;
|
||||
bool Submit(const std::shared_ptr<IExecutable>& ref, bool after = true) override;
|
||||
bool Trigger(bool async = false) override;
|
||||
std::shared_ptr<ITensorHandle> AllocateTensor(const TensorSpec& tensor_spec);
|
||||
std::shared_ptr<ITensorHandle> AllocateTensor(const TensorSpec& tensor_spec) override;
|
||||
bool Verify() override;
|
||||
|
||||
protected:
|
||||
|
|
|
|||
|
|
@ -21,13 +21,14 @@
|
|||
* DEALINGS IN THE SOFTWARE.
|
||||
*
|
||||
*****************************************************************************/
|
||||
#ifndef _VIP_VIRTUAL_DEVICE_PRIVARE_H
|
||||
#ifndef _VIP_VIRTUAL_DEVICE_PRIVATE_H
|
||||
#define _VIP_VIRTUAL_DEVICE_PRIVATE_H
|
||||
|
||||
#include <memory>
|
||||
#include <queue>
|
||||
#include <vector>
|
||||
#include <map>
|
||||
#include <array>
|
||||
#include <thread>
|
||||
#include <iostream>
|
||||
#include <mutex>
|
||||
|
|
|
|||
Loading…
Reference in New Issue