Add tensor scan op

This is the initial implementation a generic scan operation.
Based on this, cumsum and cumprod method have been added to TensorBase.
This commit is contained in:
Igor Babuschkin
2016-06-02 13:35:47 +01:00
parent 0ed08fd281
commit fbd7ed6ff7
7 changed files with 351 additions and 0 deletions

View File

@@ -114,6 +114,7 @@ typedef unsigned __int64 uint64_t;
#include "src/Tensor/TensorForcedEval.h"
#include "src/Tensor/TensorGenerator.h"
#include "src/Tensor/TensorAssign.h"
#include "src/Tensor/TensorScan.h"
#include "src/Tensor/TensorExecutor.h"
#include "src/Tensor/TensorDevice.h"