LLVM
20.0.0git
include
llvm
IR
NVVMIntrinsicFlags.h
Go to the documentation of this file.
1
//===--- NVVMIntrinsicFlags.h -----------------------------------*- 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
/// \file
10
/// This file contains the definitions of the enumerations and flags
11
/// associated with NVVM Intrinsics.
12
//
13
//===----------------------------------------------------------------------===//
14
15
#ifndef LLVM_IR_NVVMINTRINSICFLAGS_H
16
#define LLVM_IR_NVVMINTRINSICFLAGS_H
17
18
#include <stdint.h>
19
20
namespace
llvm
{
21
namespace
nvvm {
22
23
// Reduction Ops supported with TMA Copy from Shared
24
// to Global Memory for the "cp.reduce.async.bulk.tensor.*"
25
// family of PTX instructions.
26
enum class
TMAReductionOp
:
uint8_t
{
27
ADD
= 0,
28
MIN
= 1,
29
MAX
= 2,
30
INC
= 3,
31
DEC
= 4,
32
AND
= 5,
33
OR
= 6,
34
XOR
= 7,
35
};
36
37
}
// namespace nvvm
38
}
// namespace llvm
39
#endif
// LLVM_IR_NVVMINTRINSICFLAGS_H
uint8_t
llvm::nvvm::TMAReductionOp
TMAReductionOp
Definition:
NVVMIntrinsicFlags.h:26
llvm::nvvm::TMAReductionOp::OR
@ OR
llvm::nvvm::TMAReductionOp::MAX
@ MAX
llvm::nvvm::TMAReductionOp::DEC
@ DEC
llvm::nvvm::TMAReductionOp::INC
@ INC
llvm::nvvm::TMAReductionOp::AND
@ AND
llvm::nvvm::TMAReductionOp::XOR
@ XOR
llvm::nvvm::TMAReductionOp::ADD
@ ADD
llvm::nvvm::TMAReductionOp::MIN
@ MIN
llvm
This is an optimization pass for GlobalISel generic memory operations.
Definition:
AddressRanges.h:18
Generated on Sat Dec 21 2024 20:57:09 for LLVM by
1.9.6