1 /* 2 * Copyright 2023 Advanced Micro Devices, Inc. 3 * 4 * SPDX-License-Identifier: MIT 5 */ 6 7 #ifndef SI_UTRACE_H 8 #define SI_UTRACE_H 9 10 #include <stdint.h> 11 #include "si_pipe.h" 12 13 void si_utrace_init(struct si_context *sctx); 14 void si_utrace_fini(struct si_context *sctx); 15 16 void si_utrace_flush(struct si_context *sctx, uint64_t submission_id); 17 18 #endif 19