6
6
7
7
#include " halide_benchmark.h"
8
8
9
- #include " pipeline_cpu .h"
10
- #include " pipeline_hvx64 .h"
11
- #include " pipeline_hvx128 .h"
9
+ #include " matmul_cpu .h"
10
+ #include " matmul_hvx64 .h"
11
+ #include " matmul_hvx128 .h"
12
12
13
13
#include " HalideRuntimeHexagonHost.h"
14
14
#include " HalideBuffer.h"
@@ -28,13 +28,13 @@ int main(int argc, char **argv) {
28
28
29
29
int (*pipeline)(halide_buffer_t *, halide_buffer_t *, halide_buffer_t *);
30
30
if (strcmp (argv[1 ], " cpu" ) == 0 ) {
31
- pipeline = pipeline_cpu ;
31
+ pipeline = matmul_cpu ;
32
32
printf (" Using CPU schedule\n " );
33
33
} else if (strcmp (argv[1 ], " hvx64" ) == 0 ) {
34
- pipeline = pipeline_hvx64 ;
34
+ pipeline = matmul_hvx64 ;
35
35
printf (" Using HVX 64 schedule\n " );
36
36
} else if (strcmp (argv[1 ], " hvx128" ) == 0 ) {
37
- pipeline = pipeline_hvx128 ;
37
+ pipeline = matmul_hvx128 ;
38
38
printf (" Using HVX 128 schedule\n " );
39
39
} else {
40
40
printf (" Unknown schedule, valid schedules are cpu, hvx64, or hvx128\n " );
0 commit comments