[v2,1/1] ml/cnxk: fix name of TVM model with single layer

Message ID 20231122171320.14907-1-syalavarthi@marvell.com (mailing list archive)
State Accepted, archived
Delegated to: Jerin Jacob
Headers
Series [v2,1/1] ml/cnxk: fix name of TVM model with single layer |

Checks

Context Check Description
ci/checkpatch success coding style OK
ci/loongarch-compilation success Compilation OK
ci/loongarch-unit-testing success Unit Testing PASS
ci/github-robot: build success github build: passed
ci/iol-intel-Performance success Performance Testing PASS
ci/iol-intel-Functional success Functional Testing PASS
ci/iol-mellanox-Performance success Performance Testing PASS
ci/iol-compile-amd64-testing success Testing PASS
ci/iol-broadcom-Performance success Performance Testing PASS
ci/Intel-compilation success Compilation OK
ci/iol-broadcom-Functional success Functional Testing PASS
ci/iol-unit-arm64-testing success Testing PASS
ci/iol-unit-amd64-testing success Testing PASS
ci/intel-Testing success Testing PASS
ci/iol-sample-apps-testing success Testing PASS
ci/intel-Functional success Functional PASS
ci/iol-compile-arm64-testing success Testing PASS

Commit Message

Srikanth Yalavarthi Nov. 22, 2023, 5:13 p.m. UTC
  Name field of TVM model with single MRVL layer is
currently set to empty string. Update the name with
the field from metadata.

Fixes: 5cea2c67edfc ("ml/cnxk: update internal TVM model info structure")

Signed-off-by: Srikanth Yalavarthi <syalavarthi@marvell.com>
---
v2:
  - Replaced rte_memcpy with strlcpy

 drivers/ml/cnxk/mvtvm_ml_model.c | 4 ++++
 1 file changed, 4 insertions(+)
  

Comments

Thomas Monjalon Nov. 23, 2023, 12:28 a.m. UTC | #1
22/11/2023 18:13, Srikanth Yalavarthi:
> Name field of TVM model with single MRVL layer is
> currently set to empty string. Update the name with
> the field from metadata.
> 
> Fixes: 5cea2c67edfc ("ml/cnxk: update internal TVM model info structure")
> 
> Signed-off-by: Srikanth Yalavarthi <syalavarthi@marvell.com>

Applied
  

Patch

diff --git a/drivers/ml/cnxk/mvtvm_ml_model.c b/drivers/ml/cnxk/mvtvm_ml_model.c
index 3e06ea658bb..e3234ae4422 100644
--- a/drivers/ml/cnxk/mvtvm_ml_model.c
+++ b/drivers/ml/cnxk/mvtvm_ml_model.c
@@ -352,6 +352,10 @@  mvtvm_ml_model_info_set(struct cnxk_ml_dev *cnxk_mldev, struct cnxk_ml_model *mo
 tvm_mrvl_model:
 	cn10k_ml_model_info_set(cnxk_mldev, model, &model->mvtvm.info,
 				&model->layer[0].glow.metadata);
+
+	metadata = &model->mvtvm.metadata;
+	strlcpy(info->name, metadata->model.name, TVMDP_NAME_STRLEN);
+
 	info->io_layout = RTE_ML_IO_LAYOUT_SPLIT;
 }