1 /* SPDX-License-Identifier: BSD-3-Clause 2 * Copyright (c) 2022 Marvell. 3 */ 4 5 #ifndef TEST_MODEL_OPS_H 6 #define TEST_MODEL_OPS_H 7 8 #include <rte_common.h> 9 10 #include "test_model_common.h" 11 12 struct __rte_cache_aligned test_model_ops { 13 /* common data */ 14 struct test_common cmn; 15 16 /* test specific data */ 17 struct ml_model model[ML_TEST_MAX_MODELS]; 18 }; 19 20 #endif /* TEST_MODEL_OPS_H */ 21