1 /* 2 * Copyright 2024 Intel Corporation 3 * SPDX-License-Identifier: MIT 4 */ 5 6 #pragma once 7 8 #include <stdio.h> 9 #include <stdbool.h> 10 11 #include "aubinator_error_decode_lib.h" 12 #include "decoder/intel_decoder.h" 13 14 void 15 read_xe_data_file(FILE *file, 16 enum intel_batch_decode_flags batch_flags, 17 const char *spec_xml_path, 18 bool option_dump_kernels, 19 bool option_print_all_bb, 20 enum decode_color option_color); 21