1//===-- PPCTypes.def - Metadata about PPC types -----------------*- C++ -*-===// 2// 3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 4// See https://llvm.org/LICENSE.txt for license information. 5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 6// 7//===----------------------------------------------------------------------===// 8// 9// This file defines PPC types. 10// Custom code should define this macro: 11// 12// PPC_MMA_VECTOR_TYPE(Name, Id, Size) - A MMA vector type of a given size 13// (in bits). 14// 15//===----------------------------------------------------------------------===// 16 17PPC_MMA_VECTOR_TYPE(__vector_quad, VectorQuad, 512) 18PPC_MMA_VECTOR_TYPE(__vector_pair, VectorPair, 256) 19 20#undef PPC_MMA_VECTOR_TYPE 21