Turi Create  4.0
combine.hpp
Go to the documentation of this file.
1 /* Copyright © 2020 Apple Inc. All rights reserved.
2  *
3  * Use of this source code is governed by a BSD-3-clause license that can
4  * be found in the LICENSE.txt file or at
5  * https://opensource.org/licenses/BSD-3-Clause
6  */
7 
8 #ifndef ML_NEURAL_NET_COMBINE_HPP_
9 #define ML_NEURAL_NET_COMBINE_HPP_
10 
11 /**
12  * \file combine.hpp
13  *
14  * Defines a reactive-streams library inspired by the Swift Combine
15  * framework. Its intent is to simplify reasoning about and testing of NN
16  * model-training pipelines.
17  */
18 
20 #include <ml/neural_net/combine_futures_subscriber.hpp>
21 #include <ml/neural_net/combine_iterator.hpp>
22 #include <ml/neural_net/combine_map.hpp>
23 #include <ml/neural_net/combine_queue.hpp>
24 
25 #endif // ML_NEURAL_NET_COMBINE_HPP_