Kaiser-Yang/matrix-calculation-accelerator

Fix assert(&a == &output) when they have different types

Closed this issue · 0 comments

When Matrix<T1> a, and Matrix<T2> output have different type T1, T2, clang-tidy will trigger an error. This will not be triggered in Git Action, because Git Action's code is built with Release version (all the assertions are removed). Fix this.