aboutsummaryrefslogtreecommitdiff
path: root/utils
diff options
context:
space:
mode:
authorKristofer Jonsson <kristofer.jonsson@arm.com>2022-03-10 11:17:29 +0100
committerKristofer Jonsson <kristofer.jonsson@arm.com>2022-03-14 11:14:06 +0100
commit3c6a260a705a668b5ff8e8159f04c257273fb458 (patch)
tree3661451b5d0e2675534c290f36c2cf834fc1f4a6 /utils
parent35de9e63d9c2fe0a557637ac104d7d73382d2d4a (diff)
downloadethos-u-linux-driver-stack-3c6a260a705a668b5ff8e8159f04c257273fb458.tar.gz
Network info
Add UAPI and core message that allows user space space to fetch information about network models built into the firmware. Change-Id: Ic92529bce3edd0a5499e691a566bd065da2a72ad
Diffstat (limited to 'utils')
-rw-r--r--utils/inference_runner/inference_runner.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/inference_runner/inference_runner.cpp b/utils/inference_runner/inference_runner.cpp
index 08a47b7..b6a5cdb 100644
--- a/utils/inference_runner/inference_runner.cpp
+++ b/utils/inference_runner/inference_runner.cpp
@@ -240,7 +240,7 @@ int main(int argc, char *argv[]) {
shared_ptr<Buffer> networkBuffer = allocAndFill(device, networkArg);
network = make_shared<Network>(device, networkBuffer);
} else {
- network = make_shared<Network>(device, networkArg, networkIndex);
+ network = make_shared<Network>(device, networkIndex);
}
/* Create one inference per IFM */