• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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 "decoder/intel_decoder.h"
12 
13 void
14 read_xe_data_file(FILE *file,
15                   enum intel_batch_decode_flags batch_flags,
16                   const char *spec_xml_path,
17                   bool option_dump_kernels,
18                   bool option_print_all_bb);
19