From patchwork Wed Mar 20 15:38:11 2024 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Tyler Retzlaff X-Patchwork-Id: 138573 X-Patchwork-Delegate: david.marchand@redhat.com Return-Path: X-Original-To: patchwork@inbox.dpdk.org Delivered-To: patchwork@inbox.dpdk.org Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id 6614243D05; Wed, 20 Mar 2024 16:47:30 +0100 (CET) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 6226642F29; Wed, 20 Mar 2024 16:40:06 +0100 (CET) Received: from linux.microsoft.com (linux.microsoft.com [13.77.154.182]) by mails.dpdk.org (Postfix) with ESMTP id 0BC0A42DC4 for ; Wed, 20 Mar 2024 16:38:45 +0100 (CET) Received: by linux.microsoft.com (Postfix, from userid 1086) id EDF0E20B2013; Wed, 20 Mar 2024 08:38:22 -0700 (PDT) DKIM-Filter: OpenDKIM Filter v2.11.0 linux.microsoft.com EDF0E20B2013 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.microsoft.com; s=default; t=1710949107; bh=SSXHgMkod+2G0jkPebll2CO8JJGtpzoHFddDdLa8liU=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=PGyQf/r2p7Z5/t/EFb1N1WXYilzqwajmZx+g8tf9bgYH4yowjQrxng5terwzSt/PY 3rzsFDU5biV8PmABZV+fskuqWFMWozspyhpeZYSCgVVoADGTAvMmuwSasx9bfnVoXe bL1vRVv5UDiDslwic45ILLb4xHjsNPhbkDtjlJ/I= From: Tyler Retzlaff To: dev@dpdk.org Cc: =?utf-8?q?Mattias_R=C3=B6nnblom?= , "Min Hu (Connor)" , =?utf-8?q?Morten_Br=C3=B8rup?= , Abdullah Sevincer , Ajit Khaparde , Akhil Goyal , Alok Prasad , Amit Bernstein , Anatoly Burakov , Andrew Boyer , Andrew Rybchenko , Ankur Dwivedi , Anoob Joseph , Ashish Gupta , Ashwin Sekhar T K , Bruce Richardson , Byron Marohn , Chaoyong He , Chas Williams , Chenbo Xia , Chengwen Feng , Conor Walsh , Cristian Dumitrescu , Dariusz Sosnowski , David Hunt , Devendra Singh Rawat , Ed Czeck , Evgeny Schemeilin , Fan Zhang , Gagandeep Singh , Guoyang Zhou , Harman Kalra , Harry van Haaren , Hemant Agrawal , Honnappa Nagarahalli , Hyong Youb Kim , Jakub Grajciar , Jerin Jacob , Jian Wang , Jiawen Wu , Jie Hai , Jingjing Wu , John Daley , John Miller , Joyce Kong , Junfeng Guo , Kai Ji , Kevin Laatz , Kiran Kumar K , Konstantin Ananyev , Lee Daly , Liang Ma , Liron Himi , Long Li , Maciej Czekaj , Matan Azrad , Matt Peters , Maxime Coquelin , Michael Shamis , Nagadheeraj Rottela , Nicolas Chautru , Nithin Dabilpuram , Ori Kam , Pablo de Lara , Pavan Nikhilesh , Peter Mccarthy , Radu Nicolau , Rahul Lakkireddy , Rakesh Kudurumalla , Raveendra Padasalagi , Reshma Pattan , Ron Beider , Ruifeng Wang , Sachin Saxena , Selwin Sebastian , Shai Brandes , Shepard Siegel , Shijith Thotton , Sivaprasad Tummala , Somnath Kotur , Srikanth Yalavarthi , Stephen Hemminger , Steven Webster , Suanming Mou , Sunil Kumar Kori , Sunil Uttarwar , Sunila Sahu , Tejasree Kondoj , Viacheslav Ovsiienko , Vikas Gupta , Volodymyr Fialko , Wajeeh Atrash , Wisam Jaddo , Xiaoyun Wang , Yipeng Wang , Yisen Zhuang , Yuying Zhang , Zhangfei Gao , Zhirun Yan , Ziyang Xuan , Tyler Retzlaff Subject: [PATCH 78/83] app/test-mldev: move alignment attribute on types Date: Wed, 20 Mar 2024 08:38:11 -0700 Message-Id: <1710949096-5786-79-git-send-email-roretzla@linux.microsoft.com> X-Mailer: git-send-email 1.8.3.1 In-Reply-To: <1710949096-5786-1-git-send-email-roretzla@linux.microsoft.com> References: <1710949096-5786-1-git-send-email-roretzla@linux.microsoft.com> X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Move location of __rte_aligned(a) to new conventional location. The new placement between {struct,union} and the tag allows the desired alignment to be imparted on the type regardless of the toolchain being used for both C and C++. Additionally, it avoids confusion by Doxygen when generating documentation. Signed-off-by: Tyler Retzlaff --- app/test-mldev/test_device_ops.h | 4 ++-- app/test-mldev/test_inference_common.h | 4 ++-- app/test-mldev/test_model_ops.h | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/app/test-mldev/test_device_ops.h b/app/test-mldev/test_device_ops.h index be78b17..2e0173e 100644 --- a/app/test-mldev/test_device_ops.h +++ b/app/test-mldev/test_device_ops.h @@ -9,9 +9,9 @@ #include "test_common.h" -struct test_device { +struct __rte_cache_aligned test_device { /* common data */ struct test_common cmn; -} __rte_cache_aligned; +}; #endif /* TEST_DEVICE_OPS_H */ diff --git a/app/test-mldev/test_inference_common.h b/app/test-mldev/test_inference_common.h index 3f4ba32..1c9ad90 100644 --- a/app/test-mldev/test_inference_common.h +++ b/app/test-mldev/test_inference_common.h @@ -37,7 +37,7 @@ struct ml_core_args { uint64_t end_cycles; }; -struct test_inference { +struct __rte_cache_aligned test_inference { /* common data */ struct test_common cmn; @@ -59,7 +59,7 @@ struct test_inference { struct rte_ml_dev_xstats_map *xstats_map; uint64_t *xstats_values; int xstats_size; -} __rte_cache_aligned; +}; bool test_inference_cap_check(struct ml_options *opt); int test_inference_opt_check(struct ml_options *opt); diff --git a/app/test-mldev/test_model_ops.h b/app/test-mldev/test_model_ops.h index 19645a1..83bfd76 100644 --- a/app/test-mldev/test_model_ops.h +++ b/app/test-mldev/test_model_ops.h @@ -9,12 +9,12 @@ #include "test_model_common.h" -struct test_model_ops { +struct __rte_cache_aligned test_model_ops { /* common data */ struct test_common cmn; /* test specific data */ struct ml_model model[ML_TEST_MAX_MODELS]; -} __rte_cache_aligned; +}; #endif /* TEST_MODEL_OPS_H */