We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents f964a53 + 6b74d95 commit cde9b74Copy full SHA for cde9b74
apps/hexagon_matmul/process.cpp
@@ -6,9 +6,9 @@
6
7
#include "halide_benchmark.h"
8
9
-#include "pipeline_cpu.h"
10
-#include "pipeline_hvx64.h"
11
-#include "pipeline_hvx128.h"
+#include "matmul_cpu.h"
+#include "matmul_hvx64.h"
+#include "matmul_hvx128.h"
12
13
#include "HalideRuntimeHexagonHost.h"
14
#include "HalideBuffer.h"
@@ -28,13 +28,13 @@ int main(int argc, char **argv) {
28
29
int (*pipeline)(halide_buffer_t *, halide_buffer_t*, halide_buffer_t*);
30
if (strcmp(argv[1], "cpu") == 0) {
31
- pipeline = pipeline_cpu;
+ pipeline = matmul_cpu;
32
printf("Using CPU schedule\n");
33
} else if (strcmp(argv[1], "hvx64") == 0) {
34
- pipeline = pipeline_hvx64;
+ pipeline = matmul_hvx64;
35
printf("Using HVX 64 schedule\n");
36
} else if (strcmp(argv[1], "hvx128") == 0) {
37
- pipeline = pipeline_hvx128;
+ pipeline = matmul_hvx128;
38
printf("Using HVX 128 schedule\n");
39
} else {
40
printf("Unknown schedule, valid schedules are cpu, hvx64, or hvx128\n");
0 commit comments