Lines Matching refs:info
31 # List of unique device-info structs, multiple different GPU ids
32 # can map to a single info struct in cases where the differences
37 # Table mapping GPU id to device-info struct
42 for info in self.gpu_infos:
43 if gpu_info == info:
46 raise Error("invalid info")
50 def add_gpus(ids, info):
52 s.gpus[id] = info
147 # capture that in the device-info tables
202 # info parameters are keyed to the sub-generation. These templates reduce
391 %for info in s.gpu_infos:
392 static const struct fd_dev_info __info${s.info_index(info)} = ${str(info)};
396 %for id, info in s.gpus.items():
397 { {${id.gpu_id}, ${hex(id.chip_id)}}, "${id.name}", &__info${s.info_index(info)} },