| 821 | |
| 822 | template <typename T> |
| 823 | void init_sgemm_output(T &dst, T &src0, T &src1, arm_compute::DataType dt) |
| 824 | { |
| 825 | dst.allocator()->init(TensorInfo( |
| 826 | TensorShape(src1.info()->dimension(0), src0.info()->dimension(1), src0.info()->dimension(2)), 1, dt)); |
| 827 | } |
| 828 | /** This function returns the amount of memory free reading from /proc/meminfo |
| 829 | * |
| 830 | * @return The free memory in kB |
no test coverage detected