mirror of
https://github.com/Qortal/Brooklyn.git
synced 2025-02-15 11:45:54 +00:00
22 lines
340 B
C++
22 lines
340 B
C++
|
//
|
||
|
// Copyright © 2017 Arm Ltd. All rights reserved.
|
||
|
// SPDX-License-Identifier: MIT
|
||
|
//
|
||
|
#pragma once
|
||
|
|
||
|
namespace armnn
|
||
|
{
|
||
|
|
||
|
struct LstmInputParams;
|
||
|
struct QuantizedLstmInputParams;
|
||
|
|
||
|
class INetwork;
|
||
|
class IOptimizedNetwork;
|
||
|
class Graph;
|
||
|
class IInputSlot;
|
||
|
class IOutputSlot;
|
||
|
class IConnectableLayer;
|
||
|
class IDataLayer;
|
||
|
|
||
|
} // end armnn namespace
|