| 53 | using namespace dnnc; |
| 54 | |
| 55 | int main() { |
| 56 | tensor<float> tf({3, 4}); |
| 57 | fakeOperatorTest<float> fotf; |
| 58 | fotf.testEigenMatrix(tf); |
| 59 | |
| 60 | tensor<double> td({3, 4}); |
| 61 | fakeOperatorTest<double> fotd; |
| 62 | fotd.testEigenMatrix(td); |
| 63 | |
| 64 | tensor<int> ti({3, 4}); |
| 65 | fakeOperatorTest<int> foti; |
| 66 | foti.testEigenMatrix(ti); |
| 67 | |
| 68 | tensor<float> tf1({2, 3, 4, 5}); |
| 69 | fakeOperatorTest<float> fotf1; |
| 70 | fotf1.testEigenMatrix(tf1); |
| 71 | |
| 72 | tensor<double> td1({3, 4, 6, 7}); |
| 73 | fakeOperatorTest<double> fotd1; |
| 74 | fotd1.testEigenMatrix(td1); |
| 75 | |
| 76 | return 0; |
| 77 | } |
| 78 | #endif |
nothing calls this directly
no test coverage detected