using Bro.Common.Base;
|
using Bro.Common.Helper;
|
using System;
|
using System.Collections.Generic;
|
using System.Linq;
|
using System.Text;
|
using System.Threading.Tasks;
|
|
namespace Bro.Device.SuakitProcessor
|
{
|
[Device("SuakitProcessor", "Suakit深度学习处理器", EnumHelper.DeviceAttributeType.Device)]
|
public class SuakitProcessorDriver : DeviceBase
|
{
|
protected override void Init()
|
{
|
throw new NotImplementedException();
|
}
|
|
protected override void Pause()
|
{
|
throw new NotImplementedException();
|
}
|
|
protected override void Resume()
|
{
|
throw new NotImplementedException();
|
}
|
|
protected override void Start()
|
{
|
throw new NotImplementedException();
|
}
|
|
protected override void Stop()
|
{
|
throw new NotImplementedException();
|
}
|
}
|
}
|