1 /* SPDX-License-Identifier: MIT */ 2 /* 3 * Copyright(c) 2024, Intel Corporation. All rights reserved. 4 */ 5 6 #ifndef __XE_PXP_SUBMIT_H__ 7 #define __XE_PXP_SUBMIT_H__ 8 9 struct xe_pxp; 10 11 int xe_pxp_allocate_execution_resources(struct xe_pxp *pxp); 12 void xe_pxp_destroy_execution_resources(struct xe_pxp *pxp); 13 14 #endif /* __XE_PXP_SUBMIT_H__ */ 15