#include #include #include #include "triton/codegen/selection/generator.h" #include "triton/codegen/target.h" #include "triton/codegen/analysis/axes.h" #include "triton/codegen/analysis/allocation.h" #include "triton/codegen/analysis/align.h" #include "triton/codegen/analysis/swizzle.h" #include "triton/codegen/transform/coalesce.h" #include "triton/ir/context.h" #include "triton/ir/module.h" #include "triton/ir/function.h" #include "triton/ir/type.h" #include "llvm/IR/Module.h" #include "llvm/IR/IRBuilder.h" #include "llvm/IR/IntrinsicsNVPTX.h" #include "llvm/IR/BasicBlock.h" #include "llvm/IR/Attributes.h" #include "llvm/IR/InlineAsm.h" #include "llvm/Transforms/Utils/BasicBlockUtils.h" namespace triton{ namespace codegen{ using namespace llvm; Value* adder::operator()(Value *x, Value *y, const std::string& name) { // (x + cst) + y -> (x + y) + cst if(auto* bin = dyn_cast(x)) if(bin->getOpcode() == llvm::BinaryOperator::BinaryOps::Add) if(dyn_cast(bin->getOperand(1))){ return (*builder_)->CreateAdd((*builder_)->CreateAdd(bin->getOperand(0), y), bin->getOperand(1)); } // (x + (y + cst)) -> (x + y) + cst if(auto* bin = dyn_cast(y)) if(bin->getOpcode() == llvm::BinaryOperator::BinaryOps::Add) if(dyn_cast(bin->getOperand(1))){ return (*builder_)->CreateAdd((*builder_)->CreateAdd(x, bin->getOperand(0)), bin->getOperand(1)); } // default return (*builder_)->CreateAdd(x, y, name); } Value* multiplier::operator()(Value *x, Value *y, const std::string &name) { // (x + cst1) * cst2 -> (x * cst2) + (cst1 * cst2) if(auto* bin = dyn_cast(x)) if(bin->getOpcode() == llvm::BinaryOperator::BinaryOps::Add) if(dyn_cast(bin->getOperand(1))) if(dyn_cast(y)){ return (*builder_)->CreateAdd((*builder_)->CreateMul(bin->getOperand(0), y), (*builder_)->CreateMul(bin->getOperand(1), y)); } // default return (*builder_)->CreateMul(x, y, name); } Value* geper::operator()(Value *ptr, Value* off, const std::string& name){ // (ptr + cst1) + (cst2) -> ptr + (cst1 + cst2) if(auto* gep = dyn_cast(ptr)) if(ConstantInt* cst1 = dyn_cast(gep->idx_begin())) if(ConstantInt* cst2 = dyn_cast(off)){ return (*builder_)->CreateGEP(gep->getPointerOperand(), (*builder_)->CreateAdd(cst1, cst2)); } // ptr + (off + cst) -> (ptr + off) + cst if(auto* bin = dyn_cast(off)) if(bin->getOpcode() == llvm::BinaryOperator::BinaryOps::Add) if(ConstantInt* cst = dyn_cast(bin->getOperand(1))){ return (*builder_)->CreateGEP((*builder_)->CreateGEP(ptr, bin->getOperand(0)), bin->getOperand(1)); } // default return (*builder_)->CreateGEP(ptr, off, name); } //Value* geper::operator()(Type *ty, Value *ptr, std::vector vals, const std::string &name) { // return (*builder_)->CreateGEP(ty, ptr, vals, name); //} // types #define void_ty builder_->getVoidTy() #define f16_ty builder_->getHalfTy() #define f32_ty builder_->getFloatTy() #define i8_ty builder_->getInt8Ty() #define i32_ty builder_->getInt32Ty() #define vec_ty(type, num_el) VectorType::get(type, num_el, false) #define ptr_ty(...) PointerType::get(__VA_ARGS__) // constants #define i32(...) builder_->getInt32(__VA_ARGS__) // ops #define and_(...) builder_->CreateAnd(__VA_ARGS__) #define atomic_cmp_xchg(...) builder_->CreateAtomicCmpXchg(__VA_ARGS__) #define atomic_rmw(...) builder_->CreateAtomicRMW(__VA_ARGS__) #define bin_op(...) builder_->CreateBinOp(__VA_ARGS__) #define bit_cast(...) builder_->CreateBitCast(__VA_ARGS__) #define br(...) builder_->CreateBr(__VA_ARGS__) #define call(...) builder_->CreateCall(__VA_ARGS__) #define cast(...) builder_->CreateCast(__VA_ARGS__) #define cond_br(...) builder_->CreateCondBr(__VA_ARGS__) #define exact_udiv(...) builder_->CreateExactUDiv(__VA_ARGS__) #define extract_elt(...) builder_->CreateExtractElement(__VA_ARGS__) #define extract_val(...) builder_->CreateExtractValue(__VA_ARGS__) #define fadd(...) builder_->CreateFAdd(__VA_ARGS__) #define fcmp(...) builder_->CreateFCmp(__VA_ARGS__) #define fmul(...) builder_->CreateFMul(__VA_ARGS__) #define fpcast(...) builder_->CreateFPCast(__VA_ARGS__) #define fsub(...) builder_->CreateFSub(__VA_ARGS__) #define icmp(...) builder_->CreateICmp(__VA_ARGS__) #define icmp_eq(...) builder_->CreateICmpEQ(__VA_ARGS__) #define icmp_sge(...) builder_->CreateICmpSGE(__VA_ARGS__) #define icmp_sle(...) builder_->CreateICmpSLE(__VA_ARGS__) #define icmp_ult(...) builder_->CreateICmpULT(__VA_ARGS__) #define insert_elt(...) builder_->CreateInsertElement(__VA_ARGS__) #define intrinsic(...) builder_->CreateIntrinsic(__VA_ARGS__) #define load(...) builder_->CreateLoad(__VA_ARGS__) #define lshr(...) builder_->CreateLShr(__VA_ARGS__) #define max_num(...) builder_->CreateMaxNum(__VA_ARGS__) #define min_num(...) builder_->CreateMinNum(__VA_ARGS__) #define neg(...) builder_->CreateNeg(__VA_ARGS__) #define phi(...) builder_->CreatePHI(__VA_ARGS__) #define ret(...) builder_->CreateRet(__VA_ARGS__) #define select(...) builder_->CreateSelect(__VA_ARGS__) #define store(...) builder_->CreateStore(__VA_ARGS__) #define sub(...) builder_->CreateSub(__VA_ARGS__) #define shl(...) builder_->CreateShl(__VA_ARGS__) #define udiv(...) builder_->CreateUDiv(__VA_ARGS__) #define urem(...) builder_->CreateURem(__VA_ARGS__) #define splat(...) builder_->CreateVectorSplat(__VA_ARGS__) #define xor_(...) builder_->CreateXor(__VA_ARGS__) /** * \brief Convert Triton-IR Type to LLVM-IR Type */ Type *generator::cvt(ir::type *ty) { // function if(auto* tt = dynamic_cast(ty)){ Type *ret_ty = cvt(tt->get_return_ty()); std::vector arg_tys(tt->get_num_params()); for(size_t i = 0; i < arg_tys.size(); i++) arg_tys[i] = cvt(tt->get_param_ty(i)); return FunctionType::get(ret_ty, arg_tys, false); } // pointer if(ty->is_pointer_ty()){ Type *elt_ty = cvt(ty->get_pointer_element_ty()); unsigned addr_space = ty->get_pointer_address_space(); return ptr_ty(elt_ty, addr_space); } // integer if(ty->is_integer_ty()){ unsigned bitwidth = ty->get_integer_bitwidth(); return IntegerType::get(*ctx_, bitwidth); } // primitive types switch(ty->get_type_id()){ case ir::type::VoidTyID: return Type::getVoidTy(*ctx_); case ir::type::FP8TyID: return Type::getInt8Ty(*ctx_); case ir::type::FP16TyID: return Type::getHalfTy(*ctx_); case ir::type::BF16TyID: return Type::getInt16Ty(*ctx_); case ir::type::FP32TyID: return Type::getFloatTy(*ctx_); case ir::type::FP64TyID: return Type::getDoubleTy(*ctx_); case ir::type::LabelTyID: return Type::getLabelTy(*ctx_); case ir::type::MetadataTyID: return Type::getMetadataTy(*ctx_); case ir::type::TokenTyID: return Type::getTokenTy(*ctx_); default: break; } // unknown type throw std::runtime_error("unknown conversion from ir::type to Type"); } /** * \brief Convert Triton-IR Attribute to LLVM-IR Attribute */ llvm::Attribute generator::cvt(ir::attribute attr) { switch(attr.get_kind()){ case ir::noalias: return llvm::Attribute::get(*ctx_, llvm::Attribute::NoAlias); case ir::readonly: return llvm::Attribute::get(*ctx_, llvm::Attribute::ReadOnly); case ir::writeonly: return llvm::Attribute::get(*ctx_, llvm::Attribute::WriteOnly); case ir::aligned: return llvm::Attribute::get(*ctx_, llvm::Attribute::Alignment, attr.get_value()); case ir::retune: return llvm::Attribute::get(*ctx_, llvm::Attribute::None); default: throw std::runtime_error("cannot convert ir::attribute_t to llvm::Attribute"); } } /** * \brief Constructor of LLVM code generator */ generator::generator(analysis::axes *a_axes, analysis::layouts *layouts, analysis::align *alignment, analysis::allocation *alloc, analysis::swizzle *swizzle, target *tgt, unsigned num_warps) : a_axes_(a_axes), layouts_(layouts), alignment_(alignment), alloc_(alloc), swizzle_(swizzle), tgt_(tgt), num_warps_(num_warps), add(&builder_), mul(&builder_), gep(&builder_) { } /** * \brief Code Generation for `value` */ void generator::visit_value(ir::value* v) { if(!seen_.insert(v).second) return; if(v->get_type()->is_block_ty()){ if(analysis::shared_layout* layout = layouts_->get(v)->to_shared()){ analysis::N_buffer_info_t *n_buffer = layout->get_N_buffer(); analysis::double_buffer_info_t *double_buffer = layout->get_double_buffer(); // offset Value *offset = nullptr; // base pointer Value *ptr = shared_ptr_[layout]; if (n_buffer) { // ptr = base (shared_ptr_[layout]) + smem_idx * size // read_smem_idx if (v == n_buffer->phi) { ptr = shared_ptr_[layout]; } // write_smem_idx if (std::find(n_buffer->firsts.begin(), n_buffer->firsts.end(), v) != n_buffer->firsts.end()) { int write_smem_idx = /*stage_idx*/n_buffer->firsts_idx.at(v); int elements = write_smem_idx * layout->get_per_stage_elements(); ptr = gep(shared_pre_ptr_[layout], i32(elements)); } else if (v == n_buffer->latch) { Value* write_smem_idx = write_smem_idx_[layout]; Value* elements = mul(write_smem_idx, i32(layout->get_per_stage_elements())); ptr = gep(shared_pre_ptr_[layout], elements); } } else if (double_buffer) { if(v == double_buffer->phi) offset = shared_off_[layout]; if(v == double_buffer->latch) ptr = shared_next_ptr_[layout]; else if(v == double_buffer->first) ptr = shared_pre_ptr_[layout]; } // else do nothing // what visit_dot & vist_cts & ... see shmems_[v] = ptr; // now only latches have offset (PHINode), only used by finalize_share_layout() shoffs_[v] = offset; } } // visit operands BasicBlock *current = builder_->GetInsertBlock(); auto *inst = dynamic_cast(v); if(inst) for(ir::value *op: inst->ops()){ if(dynamic_cast(op) || !dynamic_cast(v)) visit_value(op); } init_idx(v); // change insert point for phi node builder_->SetInsertPoint(current); auto *phi = dynamic_cast(v); if(phi && !current->empty() && current->getFirstNonPHI()) builder_->SetInsertPoint(&*current->getFirstNonPHI()); // visit user if(auto *usr = dynamic_cast(v)){ usr->accept(this); } // revert insert point if(phi && !current->empty() && current->getFirstNonPHI()) builder_->SetInsertPoint(current); } /** * \brief Code Generation for `phi` */ void generator::visit_phi_node(ir::phi_node* x) { Type *ty = cvt(x->get_type()->get_scalar_ty()); for(indices_t idx: idxs_.at(x)) vals_[x][idx] = phi(ty, x->get_num_operands()); } /** * \brief Code Generation for `binary_operator` */ void generator::visit_binary_operator(ir::binary_operator*x) { using ll = llvm::Instruction::BinaryOps; auto cvt = [](ir::binary_op_t op){ using tt = ir::binary_op_t; switch(op) { case tt::Add: return ll::Add; case tt::FAdd: return ll::FAdd; case tt::Sub: return ll::Sub; case tt::FSub: return ll::FSub; case tt::Mul: return ll::Mul; case tt::FMul: return ll::FMul; case tt::UDiv: return ll::UDiv; case tt::SDiv: return ll::SDiv; case tt::FDiv: return ll::FDiv; case tt::URem: return ll::URem; case tt::SRem: return ll::SRem; case tt::FRem: return ll::FRem; case tt::Shl: return ll::Shl; case tt::LShr: return ll::LShr; case tt::AShr: return ll::AShr; case tt::And: return ll::And; case tt::Or: return ll::Or; case tt::Xor: return ll::Xor; default: throw std::runtime_error("unreachable switch"); } }; for(indices_t idx: idxs_.at(x)){ Value *lhs = vals_[x->get_operand(0)][idx]; Value *rhs = vals_[x->get_operand(1)][idx]; auto op = cvt(x->get_op()); if(op == ll::Add) vals_[x][idx] = add(lhs, rhs); else if(op == ll::Mul) vals_[x][idx] = mul(lhs, rhs); else vals_[x][idx] = bin_op(op, lhs, rhs); } } /** * \brief Code Generation for `getelementptr` */ void generator::visit_getelementptr_inst(ir::getelementptr_inst* x) { for(indices_t idx: idxs_.at(x)){ Value *ptr = vals_[x->get_pointer_operand()][idx]; std::vector vals; for(auto it= x->idx_begin(); it != x->idx_end(); it++) vals.push_back(vals_[*it][idx]); assert(vals.size() == 1); vals_[x][idx] = gep(ptr, vals[0]); } } /** * \brief Code Generation for `icmp` */ void generator::visit_icmp_inst(ir::icmp_inst* x) { auto cvt = [](ir::cmp_pred_t pred) { using ll = llvm::CmpInst::Predicate; using tt = ir::cmp_pred_t; switch(pred){ case tt::FIRST_ICMP_PREDICATE: return ll::FIRST_ICMP_PREDICATE; case tt::ICMP_EQ: return ll::ICMP_EQ; case tt::ICMP_NE: return ll::ICMP_NE; case tt::ICMP_UGT: return ll::ICMP_UGT; case tt::ICMP_UGE: return ll::ICMP_UGE; case tt::ICMP_ULT: return ll::ICMP_ULT; case tt::ICMP_ULE: return ll::ICMP_ULE; case tt::ICMP_SGT: return ll::ICMP_SGT; case tt::ICMP_SGE: return ll::ICMP_SGE; case tt::ICMP_SLT: return ll::ICMP_SLT; case tt::ICMP_SLE: return ll::ICMP_SLE; case tt::LAST_ICMP_PREDICATE: return ll::LAST_ICMP_PREDICATE; default: throw std::runtime_error("unreachable switch"); } }; for(indices_t idx: idxs_.at(x)){ Value *lhs = vals_[x->get_operand(0)][idx]; Value *rhs = vals_[x->get_operand(1)][idx]; vals_[x][idx] = icmp(cvt(x->get_pred()), lhs, rhs); } } /** * \brief Code Generation for `fcmp` */ void generator::visit_fcmp_inst(ir::fcmp_inst* x) { auto cvt = [](ir::cmp_pred_t pred) { using ll = llvm::CmpInst::Predicate; using tt = ir::cmp_pred_t; switch(pred){ case tt::FIRST_FCMP_PREDICATE: return ll::FIRST_FCMP_PREDICATE; case tt::FCMP_FALSE: return ll::FCMP_FALSE; case tt::FCMP_OEQ: return ll::FCMP_OEQ; case tt::FCMP_OGT: return ll::FCMP_OGT; case tt::FCMP_OGE: return ll::FCMP_OGE; case tt::FCMP_OLT: return ll::FCMP_OLT; case tt::FCMP_OLE: return ll::FCMP_OLE; case tt::FCMP_ONE: return ll::FCMP_ONE; case tt::FCMP_ORD: return ll::FCMP_ORD; case tt::FCMP_UNO: return ll::FCMP_UNO; case tt::FCMP_UEQ: return ll::FCMP_UEQ; case tt::FCMP_UGT: return ll::FCMP_UGT; case tt::FCMP_UGE: return ll::FCMP_UGE; case tt::FCMP_ULT: return ll::FCMP_ULT; case tt::FCMP_ULE: return ll::FCMP_ULE; case tt::FCMP_UNE: return ll::FCMP_UNE; case tt::FCMP_TRUE: return ll::FCMP_TRUE; case tt::LAST_FCMP_PREDICATE: return ll::LAST_FCMP_PREDICATE; default: throw std::runtime_error("unreachable switch"); } }; for(indices_t idx: idxs_.at(x)){ Value *lhs = vals_[x->get_operand(0)][idx]; Value *rhs = vals_[x->get_operand(1)][idx]; vals_[x][idx] = fcmp(cvt(x->get_pred()), lhs, rhs); } } std::tuple generator::fp32x4_to_fp8x4(Value *in0, Value *in1, Value *in2, Value *in3){ auto cvt = [this](Value *v){ if(ConstantFP* ci = dyn_cast(v)) if(ci->getValue().convertToFloat() == 0) return builder_->getInt8(0); throw std::runtime_error("unsupported cast"); }; return std::make_tuple(cvt(in0), cvt(in1), cvt(in2), cvt(in3)); } std::tuple generator::fp8x4_to_fp32x4(Value *in0, Value *in1, Value *in2, Value *in3){ Value *ret0, *ret1, *ret2, *ret3; std::tie(ret0, ret1, ret2, ret3) = fp8x4_to_fp16x4(in0, in1, in2, in3); ret0 = cast(llvm::Instruction::FPExt, ret0, f32_ty); ret1 = cast(llvm::Instruction::FPExt, ret1, f32_ty); ret2 = cast(llvm::Instruction::FPExt, ret2, f32_ty); ret3 = cast(llvm::Instruction::FPExt, ret3, f32_ty); return std::make_tuple(ret0, ret1, ret2, ret3); } std::tuple generator::fp8x4_to_fp16x4(Value *in0, Value *in1, Value *in2, Value *in3){ Type *ret_ty = StructType::get(*ctx_, {vec_ty(f16_ty, 2), vec_ty(f16_ty, 2)}); InlineAsm *ptx = InlineAsm::get(FunctionType::get(ret_ty, {i32_ty}, false), "{" ".reg .b32 a<2>, b<2>; \n\t" "prmt.b32 a0, 0, $2, 0x5140; \n\t" "prmt.b32 a1, 0, $2, 0x7362; \n\t" "lop3.b32 b0, a0, 0x7fff7fff, 0, 0xc0; \n\t" // strip sign "lop3.b32 b1, a1, 0x7fff7fff, 0, 0xc0; \n\t" "shr.b32 b0, b0, 1; \n\t" // shift into fp16 poistion "shr.b32 b1, b1, 1; \n\t" "lop3.b32 $0, b0, 0x80008000, a0, 0xf8; \n\t" // restore sign "lop3.b32 $1, b1, 0x80008000, a1, 0xf8; \n\t" "}", "=r,=r,r", false); Value *packed_in = UndefValue::get(vec_ty(i8_ty, 4)); packed_in = insert_elt(packed_in, in0, (int)0); packed_in = insert_elt(packed_in, in1, (int)1); packed_in = insert_elt(packed_in, in2, (int)2); packed_in = insert_elt(packed_in, in3, (int)3); Value *in = bit_cast(packed_in, i32_ty); Value *ret = call(ptx, {in}); Value *packed_ret0 = extract_val(ret, {0}); Value *packed_ret1 = extract_val(ret, {1}); Value *ret0 = extract_elt(packed_ret0, (int)0); Value *ret1 = extract_elt(packed_ret0, (int)1); Value *ret2 = extract_elt(packed_ret1, (int)0); Value *ret3 = extract_elt(packed_ret1, (int)1); return std::make_tuple(ret0, ret1, ret2, ret3); } Value* generator::bf16_to_fp32(Value *in0){ Value *ret = UndefValue::get(vec_ty(builder_->getInt16Ty(), 2)); ret = insert_elt(ret, in0, (uint64_t)1); ret = insert_elt(ret, builder_->getInt16(0), (uint64_t)0); return bit_cast(ret, builder_->getFloatTy()); } Value* generator::fp32_to_bf16(Value *in0){ if(tgt_->as_nvidia()->sm() >= 80){ InlineAsm *ptx = InlineAsm::get(FunctionType::get(builder_->getInt16Ty(), {builder_->getFloatTy()}, false), "cvt.rn.bf16.f32 $0, $1;", "=h,r", false); return call(ptx, {in0}); } return extract_elt(bit_cast(in0, vec_ty(builder_->getInt16Ty(), 2)), (uint64_t)1); } /** * \brief Code Generation for `cast` */ void generator::visit_cast_inst(ir::cast_inst* x) { ir::value *op = x->get_operand(0); ir::type* ret_sca_ty = x->get_type()->get_scalar_ty(); ir::type* op_sca_ty = op->get_type()->get_scalar_ty(); auto x_idxs = idxs_.at(x); auto op_idxs = idxs_.at(op); // <> FP8 if(ret_sca_ty->is_fp8_ty() || op_sca_ty->is_fp8_ty()){ // ensure that conversions can be vectorized int ld = layouts_->get(x)->get_order(0); int contiguous = layouts_->get(x)->to_scanline()->nts(ld); if(contiguous % 4 != 0) throw std::runtime_error("unsupported fp32 -> fp8 conversion"); // run the conversion auto cvt = [&](Value* a, Value* b, Value* c, Value* d){ if(op_sca_ty->is_fp32_ty() && ret_sca_ty->is_fp8_ty()) return fp32x4_to_fp8x4(a, b, c, d); if(op_sca_ty->is_fp8_ty() && ret_sca_ty->is_fp16_ty()) return fp8x4_to_fp16x4(a, b, c, d); throw std::runtime_error("unsupported conversion"); }; for(size_t i = 0; i < x_idxs.size(); i+=4){ std::tie(vals_[x][x_idxs[i+0]], vals_[x][x_idxs[i+1]], vals_[x][x_idxs[i+2]], vals_[x][x_idxs[i+3]]) = cvt(vals_[op][op_idxs[i+0]], vals_[op][op_idxs[i+1]], vals_[op][op_idxs[i+2]], vals_[op][op_idxs[i+3]]); } return; } // <> BF16 if(ret_sca_ty->is_bf16_ty() || op_sca_ty->is_bf16_ty()){ // FP32 -> BF16 if(op_sca_ty->is_fp32_ty()) for(size_t i = 0; i < x_idxs.size(); i++) vals_[x][x_idxs[i + 0]] = fp32_to_bf16(vals_[op][op_idxs[i + 0]]); // BF16 -> FP32 if(ret_sca_ty->is_fp32_ty()) for(size_t i = 0; i < x_idxs.size(); i++) vals_[x][x_idxs[i + 0]] = bf16_to_fp32(vals_[op][op_idxs[i + 0]]); return; } Type *ty = cvt(x->get_type()->get_scalar_ty()); auto cvt = [](ir::cast_op_t op){ using ll = llvm::Instruction::CastOps; using tt = ir::cast_op_t; switch(op){ case tt::Trunc: return ll::Trunc; case tt::ZExt: return ll::ZExt; case tt::SExt: return ll::SExt; case tt::FPTrunc: return ll::FPTrunc; case tt::FPExt: return ll::FPExt; case tt::UIToFP: return ll::UIToFP; case tt::SIToFP: return ll::SIToFP; case tt::FPToUI: return ll::FPToUI; case tt::FPToSI: return ll::FPToSI; case tt::PtrToInt: return ll::PtrToInt; case tt::IntToPtr: return ll::IntToPtr; case tt::BitCast: return ll::BitCast; case tt::AddrSpaceCast: return ll::AddrSpaceCast; default: throw std::runtime_error("unreachable switch"); } }; for(indices_t idx: idxs_.at(x)){ Value *arg = vals_[x->get_operand(0)][idx]; vals_[x][idx] = cast(cvt(x->get_op()), arg, ty); } } /** * \brief Code Generation for `return` */ void generator::visit_return_inst(ir::return_inst* rr) { ir::value *ret_val = rr->get_return_value(); ret(ret_val ? vals_[ret_val][{}] : nullptr); } /** * \brief Code Generation for `cond_branch` */ void generator::visit_cond_branch_inst(ir::cond_branch_inst* br) { BasicBlock *true_dest = bbs_.at(br->get_true_dest()); BasicBlock *false_dest = bbs_.at(br->get_false_dest()); Value *cond = vals_[br->get_cond()][{}]; cond_br(cond, true_dest, false_dest); } /** * \brief Code Generation for `uncond_branch` */ void generator::visit_uncond_branch_inst(ir::uncond_branch_inst* br) { BasicBlock *dest = bbs_.at(br->get_dest()); br(dest); } /** * \brief Code Generation for a (synchronous) `load` */ void generator::visit_load_inst(ir::load_inst* x){ ir::value *op = x->get_pointer_operand(); ir::masked_load_inst *mx = dynamic_cast(x); Type* ty = cvt(op->get_type()->get_scalar_ty()->get_pointer_element_ty()); // compute vector width size_t vec = 1; if(op->get_type()->is_block_ty()){ auto ord = ords_.at(op); size_t aln = alignment_->get(op, ord[0]); auto layout = layouts_->get(x)->to_scanline(); if(layout){ size_t nts = layout->nts(ord[0]); vec = std::min(nts, aln); } } // code generation auto idxs = idxs_.at(x); for(size_t i = 0; i < idxs.size(); i += vec){ indices_t idx = idxs[i]; // pointer value Value *ptr = vals_[op][idx]; // masked load size_t dtsize = x->get_type()->get_scalar_ty()->get_primitive_size_in_bits() / 8; // input ptr info GetElementPtrInst *in_gep = dyn_cast(ptr); size_t in_off; if(in_gep){ ConstantInt* cst = dyn_cast(in_gep->idx_begin()); in_off = cst ? cst->getValue().getSExtValue()*dtsize : 0; ptr = cst ? in_gep->getPointerOperand() : in_gep; } else{ in_off = 0; } Value *pred = mx ? vals_[mx->get_mask_operand()][idx] : builder_->getTrue(); Value *other = mx ? vals_[mx->get_false_value_operand()][idx] : nullptr; size_t nbits = dtsize*8; // pack sub-words (< 32/64bits) into words // each load has width min(nbits*vec, 32/64) // and there are (nbits * vec)/width of them int max_word_width = std::max(32, nbits); int tot_width = nbits*vec; int width = std::min(tot_width, max_word_width); int n_words = std::max(1, tot_width / width); // ----- // create inline asm string // ----- std::ostringstream asm_oss; asm_oss << "@$" << n_words; // predicate asm_oss << " ld.global"; if (x->get_cache_modifier() == ir::load_inst::CA) asm_oss << ".ca"; if (x->get_cache_modifier() == ir::load_inst::CG) asm_oss << ".cg"; if(n_words > 1) asm_oss << ".v" << n_words; // vector width asm_oss << ".b" << width; // word size asm_oss << " {"; for(int i = 0; i < n_words; i++){ // return values if(i > 0) asm_oss << ","; asm_oss << "$" << i; } asm_oss << "}"; asm_oss << ", [ $" << n_words + 1; // load asm_oss << " + " << in_off << "];"; // constant offset bool has_other = other && (other != UndefValue::get(other->getType())); std::vector others; // handle `other` values for indices where the mask // is false if(has_other) for(size_t ii = 0; ii < n_words; ii++){ size_t size = width / nbits; Value *v = UndefValue::get(vec_ty(ty, size)); for(size_t s = 0; s < size; s++){ ir::value *false_val = mx->get_false_value_operand(); v = insert_elt(v, vals_[false_val][idxs[i + ii*size + s]], s); } v = bit_cast(v, IntegerType::get(*ctx_, width)); asm_oss << "\n "; asm_oss << "@!$" << n_words << " mov.u" << width; asm_oss << " $" << ii << ", "; std::ios_base::fmtflags flags(asm_oss.flags()); if(ConstantInt* cst = dyn_cast(v)) asm_oss << "0x" << std::hex << cst->getSExtValue(); else{ asm_oss << "$" << n_words + 2 + ii; others.push_back(v); } asm_oss.flags(flags); asm_oss << ";"; } // ---- // create inline ASM signature // --- std::vector ret_tys(n_words, IntegerType::get(*ctx_, width)); Type* ret_ty = ret_tys.size() > 1 ? StructType::get(*ctx_, ret_tys) : ret_tys[0]; std::vector arg_tys = {pred->getType(), ptr->getType()}; for(Value *v: others) arg_tys.push_back(v->getType()); FunctionType *asm_ty = FunctionType::get(ret_ty, arg_tys, false); // --- // create inline ASM constraints // --- std::string asm_cstrt; for(int ii = 0; ii < n_words; ii++){ if(ii > 0) asm_cstrt += ","; asm_cstrt += (width == 64) ? "=l" : ((width == 32) ? "=r" : "=c"); } asm_cstrt += ",b,l"; for(size_t ii = 0; ii < others.size(); ii++){ asm_cstrt += ","; asm_cstrt += (width == 64) ? "l" : ((width == 32) ? "r" : "c"); } // --- // finally call inline ASM // --- InlineAsm *_asm = InlineAsm::get(asm_ty, asm_oss.str(), asm_cstrt, true); std::vector args = {pred, ptr}; for(Value *v: others) args.push_back(v); Value *_ret = call(_asm, args); // --- // extract and store return values // --- std::vector rets; for(unsigned int ii = 0; ii < n_words; ii++){ Value *curr; if(ret_ty->isStructTy()) curr = extract_val(_ret, {ii}); else curr = _ret; rets.push_back(bit_cast(curr, vec_ty(ty, width / (dtsize*8)))); } int tmp = (width / (dtsize * 8)); for(size_t ii = 0; ii < vec; ii++) vals_[x][idxs[i+ii]] = extract_elt(rets[ii/tmp], ii % tmp); } } void generator::visit_unmasked_load_inst(ir::unmasked_load_inst* x) { visit_load_inst(x); } void generator::visit_masked_load_inst(ir::masked_load_inst* x) { visit_load_inst(x); } /** * \brief Code Generation for a (synchronous) `store` */ void generator::visit_store_inst(ir::store_inst * x){ ir::masked_store_inst *mx = dynamic_cast(x); // operands ir::value *ptr_op = x->get_pointer_operand(); ir::value *val_op = x->get_value_operand(); // vector size size_t vec = 1; if(val_op->get_type()->is_block_ty()){ auto ord = ords_.at(x->get_pointer_operand()); size_t aln = alignment_->get(ptr_op, ord[0]); size_t nts = axes_.at(a_axes_->get(x->get_pointer_operand(), ord[0])).contiguous; vec = std::min(nts, aln); } auto idxs = idxs_.at(val_op); Type *ty = cvt(val_op->get_type()->get_scalar_ty()); for(size_t i = 0; i < idxs.size(); i += vec){ auto idx = idxs[i]; // pointer Value *ptr = vals_[ptr_op][idx]; ptr = bit_cast(ptr, vec_ty(ty, vec)->getPointerTo(1)); // value Value* val = UndefValue::get(vec_ty(ty, vec)); for(size_t ii = 0; ii < vec; ii++) val = insert_elt(val, vals_.at(val_op)[idxs[i + ii]], ii); if(mx){ Value *msk = vals_[mx->get_mask_operand()][idx]; Instruction *no_op = intrinsic(Intrinsic::donothing, {}, {}); builder_->SetInsertPoint(no_op->getParent()); Instruction* dummy = builder_->CreateRet(nullptr); Instruction *term = llvm::SplitBlockAndInsertIfThen(msk, no_op, false); dummy->removeFromParent(); builder_->SetInsertPoint(term); store(val, ptr); builder_->SetInsertPoint(no_op); } else store(val, ptr); } } void generator::visit_unmasked_store_inst(ir::unmasked_store_inst* x) { visit_store_inst(x); } void generator::visit_masked_store_inst(ir::masked_store_inst* x) { visit_store_inst(x); } /** * \brief Code Generation for `cat` */ void generator::visit_cat_inst(ir::cat_inst* x) { auto idxs = idxs_.at(x); ir::value* lhs = x->get_operand(0); ir::value* rhs = x->get_operand(1); int i = 0; for(size_t j = 0; j < idxs_.at(lhs).size(); j ++){ vals_[x][idxs_[x][i++]] = vals_[lhs][idxs_[lhs][j]]; } for(size_t j = 0; j < idxs_.at(rhs).size(); j ++){ vals_[x][idxs_[x][i++]] = vals_[rhs][idxs_[rhs][j]]; } } /** * \brief Code Generation for `reshape` */ void generator::visit_reshape_inst(ir::reshape_inst* x) { auto idxs = idxs_.at(x); for(size_t i = 0; i < idxs_.at(x).size(); i ++){ ir::value* op = x->get_operand(0); vals_[x][idxs_[x][i]] = vals_[op][idxs_[op][i]]; }; } /** * \brief Code Generation for `splat` */ void generator::visit_splat_inst(ir::splat_inst* x) { for(auto idx: idxs_.at(x)) vals_[x][idx] = vals_[x->get_operand(0)][{}]; } /** * \brief Code Generation for `broadcast` */ void generator::visit_broadcast_inst(ir::broadcast_inst* x) { ir::value* op = x->get_operand(0); const auto& shape = op->get_type()->get_block_shapes(); for(auto out_idx: idxs_.at(x)){ indices_t in_idx = out_idx; for(size_t k = 0; k < in_idx.size(); k++) in_idx[k] = shape[k] == 1 ? i32(0) : in_idx[k]; vals_[x][out_idx] = vals_[op][in_idx]; } // for(size_t i = 0; i < idxs_.at(x).size(); i++) // vals_[x][idxs_[x][i]] = vals_[op][idxs_[op][i]]; } /** * \brief Code Generation for `downcast` */ void generator::visit_downcast_inst(ir::downcast_inst* x) { vals_[x][{}] = vals_[x->get_operand(0)][{i32(0)}]; } /** * \brief Code Generation for `get_program_id` */ void generator::visit_get_program_id_inst(ir::get_program_id_inst* pid) { Module *module = builder_->GetInsertBlock()->getModule(); Value *ret = tgt_->get_block_id(module, *builder_, pid->get_axis()); vals_[pid][{}] = ret; } /** * \brief Code Generation for `get_num_programs` */ void generator::visit_get_num_programs_inst(ir::get_num_programs_inst* np) { Module *module = builder_->GetInsertBlock()->getModule(); Value *ret = tgt_->get_num_blocks(module, *builder_, np->get_axis()); vals_[np][{}] = ret; } /** * \brief Code Generation for `exp` */ void generator::visit_exp_inst(ir::exp_inst* x){ Constant *log2e = ConstantFP::get(f32_ty, 1.4426950408889634); std::vector tys = {f32_ty}; FunctionType *fn_ty = FunctionType::get(f32_ty, tys, false); InlineAsm *ex2 = InlineAsm::get(fn_ty, "ex2.approx.f32 $0, $0;", "=f,0", false); for(auto idx: idxs_.at(x)){ Value *ex2arg = fmul(vals_[x->get_operand(0)][idx], log2e); vals_[x][idx] = call(ex2, std::vector{ex2arg}); } } /** * \brief Code Generation for `cos` */ void generator::visit_cos_inst(ir::cos_inst* x){ std::vector tys = {f32_ty}; FunctionType *fn_ty = FunctionType::get(f32_ty, tys, false); InlineAsm *cos = InlineAsm::get(fn_ty, "cos.approx.f32 $0, $0;", "=f,0", false); for(auto idx: idxs_.at(x)){ vals_[x][idx] = call(cos, std::vector{vals_[x->get_operand(0)][idx]}); } } /** * \brief Code Generation for `umulhi` */ void generator::visit_umulhi_inst(ir::umulhi_inst* x){ std::vector tys = {i32_ty, i32_ty}; FunctionType *fn_ty = FunctionType::get(i32_ty, tys, false); InlineAsm *umulhi = InlineAsm::get(fn_ty, "mul.hi.u32 $0, $1, $2;", "=r,r,r", false); for(auto idx: idxs_.at(x)){ Value* lhs = vals_[x->get_operand(0)][idx]; Value* rhs = vals_[x->get_operand(1)][idx]; vals_[x][idx] = call(umulhi, std::vector{lhs, rhs}); } } /** * \brief Code Generation for `sin` */ void generator::visit_sin_inst(ir::sin_inst* x){ std::vector tys = {f32_ty}; FunctionType *fn_ty = FunctionType::get(f32_ty, tys, false); InlineAsm *sin = InlineAsm::get(fn_ty, "sin.approx.f32 $0, $0;", "=f,0", false); for(auto idx: idxs_.at(x)){ vals_[x][idx] = call(sin, std::vector{vals_[x->get_operand(0)][idx]}); } } /** * \brief Code Generation for `log` */ void generator::visit_log_inst(ir::log_inst* x){ Constant *rcplog2e = ConstantFP::get(f32_ty, 0.6931471805599453); std::vector tys = {f32_ty}; FunctionType *fn_ty = FunctionType::get(f32_ty, tys, false); InlineAsm *lg2 = InlineAsm::get(fn_ty, "lg2.approx.f32 $0, $1;", "=f,f", false); for(auto idx: idxs_.at(x)){ Value *lg2arg = call(lg2, std::vector{vals_[x->get_operand(0)][idx]}); vals_[x][idx] = fmul(lg2arg, rcplog2e); } } /** * \brief Code Generation for `atomic_cas` */ void generator::visit_atomic_cas_inst(ir::atomic_cas_inst* cas) { BasicBlock *current = builder_->GetInsertBlock(); Module *module = current->getModule(); Value *tid = tgt_->get_local_id(module, *builder_, 0); Value *pred = icmp_eq(tid, i32(0)); // BasicBlock *tid_0_bb = BasicBlock::Create(*ctx_, "tid_0", current->getParent()); // BasicBlock *tid_0_done_bb = BasicBlock::Create(*ctx_, "tid_0_done", current->getParent()); add_barrier(); tgt_->add_memfence(module, *builder_); Value *atom_ptr; atom_ptr = gep(shmem_, i32(alloc_->offset(layouts_->get(layouts_->tmp(cas)))), ""); atom_ptr = bit_cast(atom_ptr, ptr_ty(cvt(cas->get_type()->get_scalar_ty()), 3)); // cond_br(pred, tid_0_bb, tid_0_done_bb); // builder_->SetInsertPoint(tid_0_bb); Value *cas_ptr = vals_[cas->get_operand(0)][{}]; Value *cas_cmp = vals_[cas->get_operand(1)][{}]; Value *cas_val = vals_[cas->get_operand(2)][{}]; std::string asm_str = "@$1 atom.global.cas.b32 $0, [$2], $3, $4;"; FunctionType *fn_ty = FunctionType::get(i32_ty, {pred->getType(), cas_ptr->getType(), cas_cmp->getType(), cas_val->getType()}, false); InlineAsm *iasm = InlineAsm::get(fn_ty, asm_str, "=r,b,l,r,r", true); add_barrier(); Value *old = call(iasm, {pred, cas_ptr, cas_cmp, cas_val}); add_barrier(); std::string asm2_str = "@$0 st.shared.b32 [$1], $2;"; FunctionType *fn2_ty = FunctionType::get(void_ty, {pred->getType(), atom_ptr->getType(), old->getType()}, false); InlineAsm *iasm2 = InlineAsm::get(fn2_ty, asm2_str, "b,r,r", true); add_barrier(); call(iasm2, {pred, atom_ptr, old}); tgt_->add_memfence(module, *builder_); add_barrier(); vals_[cas][{}] = load(atom_ptr); add_barrier(); } /** * \brief Code Generation for `atomic_rmw` */ void generator::visit_atomic_rmw_inst(ir::atomic_rmw_inst *atom) { ir::value* ptr = atom->get_operand(0); ir::value* val = atom->get_operand(1); ir::value* msk = atom->get_operand(2); // vector size int vec = 1; if(atom->get_type()->is_block_ty()){ int ld = ords_.at(ptr)[0]; unsigned alignment = alignment_->get(ptr, ld); vec = std::min(layouts_->get(ptr)->to_scanline()->nts(ld), alignment); vec = std::min(vec, val->get_type()->get_tile_element_ty()->is_fp16_ty() ? 2 : 1); } for(int i = 0; i < idxs_.at(val).size(); i += vec){ auto idx = idxs_[val][i]; Value *rmw_val = UndefValue::get(vec_ty(vals_[val][idx]->getType(), vec)); for(int ii = 0; ii < vec; ii++) rmw_val = insert_elt(rmw_val, vals_[val][idxs_[val][i+ii]], ii); Value *rmw_ptr = vals_[ptr][idx]; Value *rmw_msk = vals_[msk][idx]; if(vec == 1) rmw_val = extract_elt(rmw_val, i32(0)); Type* ty = rmw_val->getType(); size_t nbits = ty->getScalarSizeInBits(); // extract pointer offset std::string offset = ""; if(GetElementPtrInst *gep = dyn_cast(rmw_ptr)) if(gep->getNumIndices() == 1) if(ConstantInt *cst = dyn_cast(gep->idx_begin())){ offset = " + " + std::to_string(cst->getValue().getSExtValue()*nbits/8); rmw_ptr = gep->getPointerOperand(); } rmw_ptr = bit_cast(rmw_ptr, ty->getPointerTo(1)); // asm argument type std::vector arg_ty = {rmw_msk->getType(), rmw_ptr->getType(), rmw_val->getType()}; // asm function type FunctionType *fn_ty = FunctionType::get(ty, arg_ty, false); // asm string std::string s_nbits = std::to_string(nbits); std::string name; std::string s_ty; using tt = ir::atomic_rmw_op_t; switch(atom->get_op()){ case tt::Or: name = "or"; s_ty = "b"; break; case tt::And: name = "and"; s_ty = "b"; break; case tt::Xor: name = "xor", s_ty = "b"; break; case tt::Add: name = "add" , s_ty = "s"; break; case tt::Min: name = "min", s_ty = "s"; break; case tt::Max: name = "max", s_ty = "s"; break; case tt::UMin: name = "min", s_ty = "u"; break; case tt::UMax: name = "max", s_ty = "u"; break; case tt::FAdd: name = "add", s_ty = "f"; break; case tt::Xchg: name = "exch", s_ty = "b"; break; } std::string s_vec = vec == 2 ? "x2" : ""; std::string mod = nbits == 32 ? "" : ".noftz"; std::string asm_str = "@$1 atom.global.gpu." + name + mod + "." + s_ty + s_nbits + s_vec + " $0, [$2" + offset + "], $3;"; std::string ty_id = nbits*vec == 32 ? "r" : "h"; std::string constraint = "=" + ty_id + ",b,l," + ty_id; // create inline asm InlineAsm *iasm = InlineAsm::get(fn_ty, asm_str, constraint, true); // call asm if(atom->get_type()->is_block_ty()) vals_[atom][idx] = call(iasm, (ArrayRef{rmw_msk, rmw_ptr, rmw_val})); else{ Module *mod = builder_->GetInsertBlock()->getModule(); tgt_->add_memfence(mod, *builder_); add_barrier(); Value *tid = tgt_->get_local_id(mod, *builder_, 0); rmw_msk = builder_->CreateAnd(rmw_msk, icmp_eq(tid, i32(0))); Value *old = call(iasm, (ArrayRef{rmw_msk, rmw_ptr, rmw_val})); Value *atom_ptr; atom_ptr = gep(shmem_, i32(alloc_->offset(layouts_->get(layouts_->tmp(atom)))), ""); atom_ptr = bit_cast(atom_ptr, ptr_ty(old->getType(), 3)); store(old, atom_ptr); add_barrier(); vals_[atom][idx] = load(atom_ptr); add_barrier(); } } } /** * \brief Code Generation for `mma.884` (V100) */ //TODO: clean-up void generator::visit_mma884(ir::dot_inst* C, ir::value *A, ir::value *B, ir::value *D, unsigned NK) { // shapes auto shape_c = C->get_type()->get_block_shapes(); auto shape_a = A->get_type()->get_block_shapes(); auto shape_b = B->get_type()->get_block_shapes(); // order auto ord_a = layouts_->get(A)->get_order(); auto ord_b = layouts_->get(B)->get_order(); // layouts analysis::mma_layout* layout_c = layouts_->get(C)->to_mma(); analysis::shared_layout* layout_a = layouts_->get(A)->to_shared(); analysis::shared_layout* layout_b = layouts_->get(B)->to_shared(); // vectorization int vec_a = swizzle_->get_vec(layout_a); int vec_b = swizzle_->get_vec(layout_b); // strides bool is_a_row = ord_a[0] != 0; bool is_b_row = ord_b[0] != 0; int stride_am = is_a_row ? shape_a[1] : 1; int stride_ak = is_a_row ? 1 : shape_a[0]; int stride_a0 = is_a_row ? stride_ak : stride_am; int stride_a1 = is_a_row ? stride_am : stride_ak; int stride_bn = is_b_row ? 1 : shape_b[0]; int stride_bk = is_b_row ? shape_b[1] : 1; int stride_b0 = is_b_row ? stride_bn : stride_bk; int stride_b1 = is_b_row ? stride_bk : stride_bn; int stride_rep_m = layout_c->wpt(0) * layout_c->fpw(0) * 8; int stride_rep_n = layout_c->wpt(1) * layout_c->fpw(1) * 8; int stride_rep_k = 1; // swizzling int per_phase_a = swizzle_->get_per_phase(layout_a); int max_phase_a = swizzle_->get_max_phase(layout_a); int step_a0 = is_a_row ? stride_rep_k : stride_rep_m; int num_ptr_a = std::max(2 * per_phase_a * max_phase_a / step_a0, 1); int per_phase_b = swizzle_->get_per_phase(layout_b); int max_phase_b = swizzle_->get_max_phase(layout_b); int step_b0 = is_b_row ? stride_rep_n : stride_rep_k; int num_ptr_b = std::max(2 * per_phase_b * max_phase_b / step_b0, 1); /* --------------------------------- */ /* --- pre-compute pointer lanes --- */ /* --------------------------------- */ BasicBlock* curr_bb = builder_->GetInsertBlock(); BasicBlock* entry = &curr_bb->getParent()->getEntryBlock(); if(entry != curr_bb) builder_->SetInsertPoint(entry->getTerminator()); Value* off_a0 = is_a_row ? offset_a_k_[layout_c] : offset_a_m_[layout_c]; Value* off_a1 = is_a_row ? offset_a_m_[layout_c] : offset_a_k_[layout_c]; Value* phase_a = urem(udiv(off_a1, i32(per_phase_a)), i32(max_phase_a)); std::vector off_a(num_ptr_a); for(int i = 0; i < num_ptr_a; i++){ Value* off_a0i = add(off_a0, i32(i*(is_a_row?4:stride_rep_m))); off_a0i = exact_udiv(off_a0i, i32(vec_a)); off_a0i = xor_(off_a0i, phase_a); off_a0i = mul(off_a0i, i32(vec_a)); off_a[i] = add(mul(off_a0i, i32(stride_a0)), mul(off_a1, i32(stride_a1))); } Value* off_b0 = is_b_row ? offset_b_n_[layout_c] : offset_b_k_[layout_c]; Value* off_b1 = is_b_row ? offset_b_k_[layout_c] : offset_b_n_[layout_c]; Value* phase_b = urem(udiv(off_b1, i32(per_phase_b)), i32(max_phase_b)); std::vector off_b(num_ptr_b); for(int i = 0; i < num_ptr_b; i++){ Value* off_b0i = add(off_b0, i32(i*(is_b_row?stride_rep_n:4))); off_b0i = udiv(off_b0i, i32(vec_b)); off_b0i = xor_(off_b0i, phase_b); off_b0i = mul(off_b0i, i32(vec_b)); off_b[i] = add(mul(off_b0i, i32(stride_b0)), mul(off_b1, i32(stride_b1))); } builder_->SetInsertPoint(curr_bb); /* --------------------------------- */ /* --- MMA intrinsic --- */ /* --------------------------------- */ Type *f16x2_ty = vec_ty(f16_ty, 2); Type *ret_ty = StructType::get(*ctx_, {f32_ty, f32_ty, f32_ty, f32_ty, f32_ty, f32_ty, f32_ty, f32_ty}); std::vector arg_ty = {f16x2_ty, f16x2_ty, f16x2_ty, f16x2_ty, f32_ty, f32_ty, f32_ty, f32_ty, f32_ty, f32_ty, f32_ty, f32_ty}; InlineAsm *mma = InlineAsm::get(FunctionType::get(ret_ty, arg_ty, false), " mma.sync.aligned.m8n8k4." + std::string(is_a_row ? "row" : "col") + "." + std::string(is_b_row ? "row" : "col") + ".f32.f16.f16.f32 " "{$0, $1, $2, $3, $4, $5, $6, $7}, " "{$8, $9}, " "{$10, $11}, " "{$0, $1, $2, $3, $4, $5, $6, $7};", "=f,=f,=f,=f,=f,=f,=f,=f,r,r,r,r,0,1,2,3,4,5,6,7", false); std::vector ptr_a(num_ptr_a); std::vector ptr_b(num_ptr_b); std::map, std::pair> has, hbs; for(int i = 0; i < num_ptr_a; i++) ptr_a[i] = gep(shmems_[A], off_a[i]); for(int i = 0; i < num_ptr_b; i++) ptr_b[i] = gep(shmems_[B], off_b[i]); // initialize accumulators std::vector acc; for(indices_t idx: idxs_.at(C)) acc.push_back(vals_[D][idx]); unsigned num_m = layout_c->rep(0) * shape_c[0] / layout_c->shape_per_cta(0); unsigned num_n = layout_c->rep(1) * shape_c[1] / layout_c->shape_per_cta(1); // create mma & unpack result auto call_mma = [&](unsigned m, unsigned n, unsigned K) { auto ha = has[{m, K}]; auto hb = hbs[{n, K}]; // arguments std::vector idx = { (m*2 + 0) + (n*4 + 0)*num_m, (m*2 + 0) + (n*4 + 1)*num_m, (m*2 + 1) + (n*4 + 0)*num_m, (m*2 + 1) + (n*4 + 1)*num_m, (m*2 + 0) + (n*4 + 2)*num_m, (m*2 + 0) + (n*4 + 3)*num_m, (m*2 + 1) + (n*4 + 2)*num_m, (m*2 + 1) + (n*4 + 3)*num_m }; std::vector args = {ha.first, ha.second, hb.first, hb.second}; for(unsigned i = 0; i < 8; i++) args.push_back(acc[idx[i]]); // execute mma Value *nc = call(mma, args); // unpack for(unsigned i = 0; i < 8; i++) acc[idx[i]] = extract_val(nc, {i}); }; ir::phi_node* phiA = dynamic_cast(A); ir::phi_node* phiB = dynamic_cast(B); // Cache lds value. If values are prefetched, create phi node // @param inc: incoming block (0 = header, 1 = loop) auto register_lds = [&](decltype(has)& vals, int m, int K, int inc, Value* val0, Value *val1, bool is_prefetch) { if (K == 0 && is_prefetch) { ir::basic_block* inc_block = phiA->get_incoming_block(inc); lazy_phi_incs_.push_back(std::make_tuple((PHINode*)vals[{m, K}].first, val0, inc_block)); lazy_phi_incs_.push_back(std::make_tuple((PHINode*)vals[{m, K}].second, val1, inc_block)); } else vals[{m, K}] = {val0, val1}; }; auto load_a = [&](int m, int K, int inc, bool is_prefetch) { int offidx = (is_a_row ? K/4 : m) % num_ptr_a; Value* ptra; if(K==0 && is_prefetch){ if(inc == 0) ptra = gep(shared_pre_ptr_[layout_a], off_a[offidx]); else ptra = gep(shared_next_ptr_[layout_a], off_a[offidx]); } else ptra = ptr_a[offidx]; int step_am = is_a_row ? m : m / (num_ptr_a)*(num_ptr_a); int step_ak = is_a_row ? K / (num_ptr_a*vec_a)*(num_ptr_a*vec_a) : K; Value* pa = gep(ptra, i32(step_am*stride_rep_m*stride_am + step_ak*stride_ak)); Value* ha = load(bit_cast(pa, ptr_ty(vec_ty(i32_ty, vec_a/2), 3))); // record lds that needs to be moved if (K == 0 && inc == 1 && is_prefetch) prefetch_latch_to_bb_[phiA->get_incoming_value(1)].push_back(ha); Value *ha00 = bit_cast(extract_elt(ha, i32(0)), f16x2_ty); Value *ha01 = bit_cast(extract_elt(ha, i32(1)), f16x2_ty); register_lds(has, m, K, inc, ha00, ha01, is_prefetch); if(vec_a > 4){ Value *ha10 = bit_cast(extract_elt(ha, i32(2)), f16x2_ty); Value *ha11 = bit_cast(extract_elt(ha, i32(3)), f16x2_ty); if(is_a_row) register_lds(has, m, K+4, inc, ha10, ha11, is_prefetch); else register_lds(has, m+1, K, inc, ha10, ha11, is_prefetch); } }; auto load_b = [&](int n, int K, int inc, bool is_prefetch) { int offidx = (is_b_row? n : K/4) % num_ptr_b; Value* ptrb; if(K==0 && is_prefetch){ if(inc == 0) ptrb = gep(shared_pre_ptr_[layout_b], off_b[offidx]); else ptrb = gep(shared_next_ptr_[layout_b], off_b[offidx]); } else ptrb = ptr_b[offidx]; int stepbn = is_b_row ? n / (num_ptr_b)*(num_ptr_b) : n; int stepbk = is_b_row ? K : K / (num_ptr_b*vec_b)*(num_ptr_b*vec_b); Value* pb = gep(ptrb, i32(stepbn*stride_rep_n*stride_bn + stepbk*stride_bk)); Value* hb = load(bit_cast(pb, ptr_ty(vec_ty(i32_ty, vec_b/2), 3))); // record lds that needs to be moved if (K == 0 && inc == 1 && is_prefetch) prefetch_latch_to_bb_[phiB->get_incoming_value(1)].push_back(hb); Value *hb00 = bit_cast(extract_elt(hb, i32(0)), f16x2_ty); Value *hb01 = bit_cast(extract_elt(hb, i32(1)), f16x2_ty); register_lds(hbs, n, K, inc, hb00, hb01, is_prefetch); if(vec_b > 4){ Value *hb10 = bit_cast(extract_elt(hb, i32(2)), f16x2_ty); Value *hb11 = bit_cast(extract_elt(hb, i32(3)), f16x2_ty); if(is_b_row) register_lds(hbs, n+1, K, inc, hb10, hb11, is_prefetch); else register_lds(hbs, n, K+4, inc, hb10, hb11, is_prefetch); } }; // update accumulators if (C->is_prefetched()) { // create phis builder_->SetInsertPoint(curr_bb->getFirstNonPHI()); for (unsigned m = 0; m < num_m/2; m += is_a_row?1:2) { has[{m, 0}].first = phi(f16x2_ty, 2); has[{m, 0}].second = phi(f16x2_ty, 2); if (!is_a_row && vec_a>4) { has[{m+1, 0}].first = phi(f16x2_ty, 2); has[{m+1, 0}].second = phi(f16x2_ty, 2); } } for (unsigned n = 0; n < num_n/2; n += is_b_row?2:1) { hbs[{n, 0}].first = phi(f16x2_ty, 2); hbs[{n, 0}].second = phi(f16x2_ty, 2); if (is_b_row && vec_b>4) { hbs[{n+1, 0}].first = phi(f16x2_ty, 2); hbs[{n+1, 0}].second = phi(f16x2_ty, 2); } } // insert prefetched lds at the end of loop header builder_->SetInsertPoint(bbs_[phiA->get_incoming_block(0)]->getTerminator()); for (unsigned m = 0; m < num_m/2; m += is_a_row?1:2) load_a(m, 0, 0, true); for (unsigned n = 0; n < num_n/2; n += is_b_row?2:1) load_b(n, 0, 0, true); // update accumulators builder_->SetInsertPoint(curr_bb); for (unsigned K = 0; K < NK; K += 4) { int NEXTK = (K + 4) % NK; // prefetch A for (unsigned m = 0; m < num_m/2; m+=is_a_row?1:2) load_a(m, NEXTK, 1, true); // prefetch B for (unsigned n = 0; n < num_n/2; n+=is_b_row?2:1) load_b(n, NEXTK, 1, true); // tensor core ops for(unsigned m = 0; m < num_m/2; m++) for(unsigned n = 0; n < num_n/2; n++){ call_mma(m, n, K); } } } else { // not prefetched for(unsigned K = 0; K < NK; K += 4) for(unsigned m = 0; m < num_m/2; m++) for(unsigned n = 0; n < num_n/2; n++) { if(has.find({m, K}) == has.end()) load_a(m, K, /*inc*/0, /*is_prefetch*/false); if(hbs.find({n, K}) == hbs.end()) load_b(n, K, /*inc*/0, /*is_prefetch*/false); call_mma(m, n, K); } } // write back accumulators for(size_t i = 0; i < idxs_.at(C).size(); i++) vals_[C][idxs_[C][i]] = acc[i]; } /** * \brief Code Generation for `mma.16816` (A100) */ //TODO: clean-up void generator::visit_mma16816(ir::dot_inst* C, ir::value *A, ir::value *B, ir::value *D, unsigned NK) { const std::vector& shapes = C->get_type()->get_block_shapes(); std::map, std::vector> fcs; for(indices_t idx: idxs_.at(C)){ std::vector key(idx.size() - 2); std::copy(idx.begin() + 2, idx.end(), key.begin()); fcs[key].push_back(vals_[D][idx]); }; auto shape_a = A->get_type()->get_block_shapes(); auto shape_b = B->get_type()->get_block_shapes(); auto ord_a = layouts_->get(A)->get_order(); auto ord_b = layouts_->get(B)->get_order(); analysis::mma_layout* layout = layouts_->get(C)->to_mma(); analysis::shared_layout* layout_a = (analysis::shared_layout*)layouts_->get(C->get_operand(0)); analysis::shared_layout* layout_b = (analysis::shared_layout*)layouts_->get(C->get_operand(1)); bool is_a_row = ord_a[0] == 1; bool is_b_row = ord_b[0] == 1; std::string a_trans = is_a_row ? "" : ".trans"; std::string b_trans = is_b_row ? ".trans" : ""; int stride_a_m = is_a_row ? shape_a[1] : 1; int stride_a_k = is_a_row ? 1 : shape_a[0]; int stride_b_n = is_b_row ? 1 : shape_b[0]; int stride_b_k = is_b_row ? shape_b[1] : 1; int stride_a0 = is_a_row ? stride_a_k : stride_a_m; int stride_a1 = is_a_row ? stride_a_m : stride_a_k; int stride_b0 = is_b_row ? stride_b_n : stride_b_k; int stride_b1 = is_b_row ? stride_b_k : stride_b_n; int lda = is_a_row ? stride_a_m : stride_a_k; int ldb = is_b_row ? stride_b_k : stride_b_n; int per_phase_a = swizzle_->get_per_phase(layout_a); int max_phase_a = swizzle_->get_max_phase(layout_a); int per_phase_b = swizzle_->get_per_phase(layout_b); int max_phase_b = swizzle_->get_max_phase(layout_b); int num_ptr_a = 8; int num_ptr_b = 8; int vec_a = 8; int vec_b = 8; Type *fp32_ty = f32_ty; Type *fp16x2_ty = vec_ty(f16_ty, 2); Type *fp16x2_pack4_ty = StructType::get(*ctx_, std::vector{fp16x2_ty, fp16x2_ty, fp16x2_ty, fp16x2_ty}); Type *fp32_pack4_ty = StructType::get(*ctx_, std::vector{fp32_ty, fp32_ty, fp32_ty, fp32_ty}); FunctionType *ld_x4_ty = FunctionType::get(fp16x2_pack4_ty, std::vector{ptr_ty(f16_ty, 3)}, false); // left-hand-side values std::map, std::pair> ha; std::map, Value*> hb; BasicBlock* CurrBB = builder_->GetInsertBlock(); BasicBlock* FirstBB = &CurrBB->getParent()->getEntryBlock(); if(FirstBB != CurrBB) builder_->SetInsertPoint(FirstBB->getTerminator()); Value* thread = tgt_->get_local_id(mod_, *builder_, 0); Value *lane = urem(thread, i32(32)); Value *warp = udiv(thread, i32(32)); Value *warp12 = udiv(warp, i32(layout->wpt(0))); Value *warp0 = urem(warp, i32(layout->wpt(0))); Value *warp1 = urem(warp12, i32(layout->wpt(1))); std::vector& fc = fcs.begin()->second; Value *tidr8 = urem(lane, i32(8)); Value *phase_a = urem(udiv(tidr8, i32(per_phase_a)), i32(max_phase_a)); Value* off_a0 = mul(tidr8, i32(lda)); Value *off_am = mul(add(urem(udiv(lane, i32(8)), i32(2)), mul(warp0, i32(2))), i32(8)); Value *off_ak = mul(udiv(lane, i32(16)), i32(8)); off_am = urem(off_am, i32(shape_a[0])); off_ak = urem(off_ak, i32(shape_a[1])); off_a0 = add(off_a0, is_a_row ? off_ak : off_am); Value* off_a1 = is_a_row ? off_am : off_ak; std::vector off_a(num_ptr_a); for(int i = 0; i < num_ptr_a; i++){ Value* off_a0i = add(off_a0, i32(i*16*(is_a_row?1:layout->wpt(0)))); off_a0i = exact_udiv(off_a0i, i32(vec_a)); off_a0i = xor_(off_a0i, phase_a); off_a0i = mul(off_a0i, i32(vec_a)); off_a[i] = add(mul(off_a0i, i32(stride_a0)), mul(off_a1, i32(stride_a1))); } Value *phase_b = urem(udiv(tidr8, i32(per_phase_b)), i32(max_phase_b)); Value* off_b0 = mul(tidr8, i32(ldb)); Value *off_bn = mul(add(mul(udiv(lane, i32(16)), i32(layout->wpt(1))), mul(warp1, i32(1))), i32(8)); Value *off_bk = mul(urem(udiv(lane, i32(8)), i32(2)), i32(8)); off_bn = urem(off_bn, i32(shape_b[1])); off_bk = urem(off_bk, i32(shape_b[0])); off_b0 = add(off_b0, is_b_row ? off_bn : off_bk); Value* off_b1 = is_b_row ? off_bk : off_bn; std::vector off_b(num_ptr_b); for(int i = 0; i < num_ptr_b; i++){ Value* off_b0i = add(off_b0, i32(i*(is_b_row?8*layout->wpt(1):16))); off_b0i = exact_udiv(off_b0i, i32(vec_b)); off_b0i = xor_(off_b0i, phase_b); off_b0i = mul(off_b0i, i32(vec_b)); off_b[i] = add(mul(off_b0i, i32(stride_b0)), mul(off_b1, i32(stride_b1))); } builder_->SetInsertPoint(CurrBB); // A pointer std::vector ptrs_a(num_ptr_a); for(int i = 0; i < num_ptr_a; i++) ptrs_a[i] = gep(shmems_[A], {off_a[i]}); // B pointer std::vector ptrs_b(num_ptr_b); for(int i = 0; i < num_ptr_b; i++) ptrs_b[i] = gep(shmems_[B], {off_b[i]}); FunctionType *mma_ty = FunctionType::get(fp32_pack4_ty, std::vector{fp16x2_ty, fp16x2_ty, fp16x2_ty, fp16x2_ty, fp16x2_ty, fp16x2_ty, fp32_ty, fp32_ty, fp32_ty, fp32_ty}, false); InlineAsm *mma_fn = InlineAsm::get(mma_ty, "mma.sync.aligned.m16n8k16.row.col.f32.f16.f16.f32 " "{$0, $1, $2, $3}, " "{$4, $5, $6, $7}, " "{$8, $9}, " "{$10, $11, $12, $13};", "=f,=f,=f,=f,r,r,r,r,r,r,0,1,2,3", true); unsigned num_rep_0 = shapes[0] / layout->shape_per_cta(0); unsigned num_rep_1 = shapes[1] / layout->shape_per_cta(1); // create mma & unpack result auto call_mma = [&](unsigned m, unsigned n, unsigned K) { unsigned cols_per_thread = num_rep_0 * 2; std::vector idx = { (m*2 + 0) + (n*2 + 0)*cols_per_thread, (m*2 + 0) + (n*2 + 1)*cols_per_thread, (m*2 + 1) + (n*2 + 0)*cols_per_thread, (m*2 + 1) + (n*2 + 1)*cols_per_thread }; Value *nc = call(mma_ty, mma_fn, {ha[{m, K}].first, ha[{m, K}].second,ha[{m, K+8}].first, ha[{m, K+8}].second, hb[{n, K}], hb[{n, K+8}], fc[idx[0]], fc[idx[1]], fc[idx[2]], fc[idx[3]]}); fc[idx[0]] = extract_val(nc, std::vector{0}); fc[idx[1]] = extract_val(nc, std::vector{1}); fc[idx[2]] = extract_val(nc, std::vector{2}); fc[idx[3]] = extract_val(nc, std::vector{3}); }; ir::phi_node* phiA = dynamic_cast(A); ir::phi_node* phiB = dynamic_cast(B); auto register_lds = [&](decltype(ha)& vals, int m, int K, int inc, Value* val0, Value *val1, bool is_prefetch) { if (K <= 8 && is_prefetch) { ir::basic_block* inc_block = phiA->get_incoming_block(inc); lazy_phi_incs_.push_back(std::make_tuple((PHINode*)vals[{m, K}].first, val0, inc_block)); lazy_phi_incs_.push_back(std::make_tuple((PHINode*)vals[{m, K}].second, val1, inc_block)); } else vals[{m, K}] = {val0, val1}; }; auto register_lds2 = [&](decltype(hb)& vals, int m, int K, int inc, Value* val, bool is_prefetch) { if (K <= 8 && is_prefetch) { ir::basic_block* inc_block = phiA->get_incoming_block(inc); lazy_phi_incs_.push_back(std::make_tuple((PHINode*)vals[{m, K}], val, inc_block)); } else vals[{m, K}] = val; }; auto load_a = [&](int m, int K, int inc, bool is_prefetch) { int offidx = (is_a_row ? K/16 : m) % num_ptr_a; Value* ptra; if(K == 0 && is_prefetch){ if(inc == 0) ptra = gep(shared_pre_ptr_[layout_a], off_a[offidx]); else ptra = gep(shared_next_ptr_[layout_a], off_a[offidx]); } else ptra = ptrs_a[offidx]; int step_am = is_a_row ? m : m / (num_ptr_a)*(num_ptr_a); int step_ak = is_a_row ? K / (num_ptr_a*16)*(num_ptr_a*16) : K; InlineAsm *ld_a0_fn = InlineAsm::get(ld_x4_ty, "ldmatrix.sync.aligned.m8n8.x4" + a_trans + ".shared.b16 " "{$0, $1, $2, $3}, [$4 + " + std::to_string(2*step_am*16*layout->wpt(0)*stride_a_m + 2*step_ak*stride_a_k) + "];", "=r,=r,=r,=r,r", true); Value *haa = call(ld_x4_ty, ld_a0_fn, {ptra}); if(K == 0 && inc == 1 && is_prefetch) prefetch_latch_to_bb_[phiA->get_incoming_value(1)].push_back(haa); Value *ha0 = extract_val(haa, std::vector{0}); Value *ha1 = extract_val(haa, std::vector{1}); Value *ha2 = extract_val(haa, std::vector{2}); Value *ha3 = extract_val(haa, std::vector{3}); register_lds(ha, m, K, inc, ha0, ha1, is_prefetch); register_lds(ha, m, K + 8, inc, ha2, ha3, is_prefetch); }; auto load_b = [&](int n, int K, int inc, bool is_prefetch) { int offidx = (is_b_row ? n : K/16) % num_ptr_b; Value* ptrb; if(K == 0 && is_prefetch){ if(inc == 0) ptrb = gep(shared_pre_ptr_[layout_b], off_b[offidx]); else ptrb = gep(shared_next_ptr_[layout_b], off_b[offidx]); } else ptrb = ptrs_b[offidx]; int step_bn = is_b_row ? n / (num_ptr_b)*(num_ptr_b) : n; int step_bk = is_b_row ? K : K / (num_ptr_b*8)*(num_ptr_b*8); InlineAsm *ld_b_fn = InlineAsm::get(ld_x4_ty, "ldmatrix.sync.aligned.m8n8.x4" + b_trans + ".shared.b16 " "{$0, $1, $2, $3}, [$4 + " + std::to_string(2*step_bn*8*layout->wpt(1)*stride_b_n + 2*step_bk*stride_b_k) + "];", "=r,=r,=r,=r,r", true); Value *hbb = call(ld_x4_ty, ld_b_fn, {ptrb}); if(K == 0 && inc == 1 && is_prefetch) prefetch_latch_to_bb_[phiB->get_incoming_value(1)].push_back(hbb); Value *hb0 = extract_val(hbb, std::vector{0}); Value *hb1 = extract_val(hbb, std::vector{1}); Value *hb2 = extract_val(hbb, std::vector{2}); Value *hb3 = extract_val(hbb, std::vector{3}); register_lds2(hb, n, K, inc, hb0, is_prefetch); register_lds2(hb, n+1, K, inc, hb2, is_prefetch); register_lds2(hb, n, K+8, inc, hb1, is_prefetch); register_lds2(hb, n+1, K+8, inc, hb3, is_prefetch); }; if (C->is_prefetched()) { // create phis builder_->SetInsertPoint(CurrBB->getFirstNonPHI()); for(unsigned m = 0; m < num_rep_0; m++){ ha[{m, 0}].first = phi(fp16x2_ty, 2); ha[{m, 0}].second = phi(fp16x2_ty, 2); ha[{m, 8}].first = phi(fp16x2_ty, 2); ha[{m, 8}].second = phi(fp16x2_ty, 2); } for(unsigned n = 0; n < num_rep_1; n+=2){ hb[{n, 0}] = phi(fp16x2_ty, 2); hb[{n+1, 0}] = phi(fp16x2_ty, 2); hb[{n, 8}] = phi(fp16x2_ty, 2); hb[{n+1, 8}] = phi(fp16x2_ty, 2); } // insert prefetched lds at the end of loop header builder_->SetInsertPoint(bbs_[phiA->get_incoming_block(0)]->getTerminator()); for(unsigned m = 0; m < num_rep_0; m++) load_a(m, 0, 0, true); for(unsigned n = 0; n < num_rep_1; n+=2) load_b(n, 0, 0, true); // update accumulators builder_->SetInsertPoint(CurrBB); for(unsigned K = 0; K < NK; K += 16){ int NEXTK = (K + 16) % NK; // prefetch A for(unsigned m = 0; m < num_rep_0; m++) load_a(m, NEXTK, 1, true); // prefetch B for(unsigned n = 0; n < num_rep_1; n+=2) load_b(n, NEXTK, 1, true); // tensor core ops for(unsigned m = 0; m < num_rep_0; m++) for(unsigned n = 0; n < num_rep_1; n++){ call_mma(m, n, K); } } } else{ for(unsigned K = 0; K < NK; K += 16) for(unsigned m = 0; m < num_rep_0; m++) for(unsigned n = 0; n < num_rep_1; n++){ if(ha.find({m, K}) == ha.end()) load_a(m, K, 0, false); if(hb.find({n, K})==hb.end()) load_b(n, K, 0, false); call_mma(m, n, K); } } // write back unsigned i = 0; for(indices_t idx: idxs_.at(C)){ std::vector key(idx.size() - 2); std::copy(idx.begin() + 2, idx.end(), key.begin()); if(i >= fcs.at(key).size()) i = 0; vals_[C][idx] = fcs.at(key)[i++]; }; } /** * \brief Code Generation for FMA-based `dot` (FP32, FP64, Default) */ void generator::visit_fmadot(ir::dot_inst* C, ir::value* A, ir::value* B, ir::value* D, unsigned NK, Type *c_ty, Function *f_mul_add) { auto shape_c = C->get_type()->get_block_shapes(); auto shape_a = A->get_type()->get_block_shapes(); auto shape_b = B->get_type()->get_block_shapes(); auto ord_a = layouts_->get(A)->get_order(); auto ord_b = layouts_->get(B)->get_order(); analysis::scanline_layout* layout_c = layouts_->get(C)->to_scanline(); analysis::shared_layout* layout_a = (analysis::shared_layout*)layouts_->get(C->get_operand(0)); analysis::shared_layout* layout_b = (analysis::shared_layout*)layouts_->get(C->get_operand(1)); bool is_a_row = ord_a[0] == 1; bool is_b_row = ord_b[0] == 1; std::string a_trans = is_a_row ? "" : ".trans"; std::string b_trans = is_b_row ? ".trans" : ""; int stride_a_m = is_a_row ? shape_a[1] : 1; int stride_a_k = is_a_row ? 1 : shape_a[0]; int stride_b_n = is_b_row ? 1 : shape_b[0]; int stride_b_k = is_b_row ? shape_b[1] : 1; int stride_a0 = is_a_row ? stride_a_k : stride_a_m; int stride_a1 = is_a_row ? stride_a_m : stride_a_k; int stride_b0 = is_b_row ? stride_b_n : stride_b_k; int stride_b1 = is_b_row ? stride_b_k : stride_b_n; int lda = is_a_row ? stride_a_m : stride_a_k; int ldb = is_b_row ? stride_b_k : stride_b_n; int per_phase_a = swizzle_->get_per_phase(layout_a); int max_phase_a = swizzle_->get_max_phase(layout_a); int per_phase_b = swizzle_->get_per_phase(layout_b); int max_phase_b = swizzle_->get_max_phase(layout_b); int num_ptr_a = 8; int num_ptr_b = 8; int vec_a = 2; int vec_b = 4; distributed_axis ax_m = axes_.at(a_axes_->get(C, 0)); distributed_axis ax_n = axes_.at(a_axes_->get(C, 1)); // Value* thread = tgt_->get_local_id(mod_, *builder_, 0); Value* off_a0 = is_a_row ? i32(0) : mul(ax_m.thread_id, i32(ax_m.contiguous)); Value* off_a1 = is_a_row ? mul(ax_m.thread_id, i32(ax_m.contiguous)): i32(0); std::vector off_a(num_ptr_a); for(int i = 0; i < num_ptr_a; i++){ // Value* off_a0i = add(off_a0, i32(is_a_row ? vec_a : layout_c->mts(0)*vec_a)); // off_a0i = exact_udiv(off_a0i, i32(vec_a)); // off_a0i = xor_(off_a0i, phase_a); // off_a0i = mul(off_a0i, i32(vec_a)); off_a[i] = add(mul(off_a0, i32(stride_a0)), mul(off_a1, i32(stride_a1))); } Value* off_b0 = is_b_row ? mul(ax_n.thread_id, i32(ax_n.contiguous)): i32(0); Value* off_b1 = is_b_row ? i32(0) : mul(ax_n.thread_id, i32(ax_n.contiguous)); std::vector off_b(num_ptr_b); for(int i = 0; i < num_ptr_b; i++){ // Value* off_b0i = add(off_b0, i32(is_b_row ? layout_c->mts(1)*vec_b : vec_b)); // off_b0i = exact_udiv(off_b0i, i32(vec_b)); // off_b0i = xor_(off_b0i, phase_b); // off_b0i = mul(off_b0i, i32(vec_b)); off_b[i] = add(mul(off_b0, i32(stride_b0)), mul(off_b1, i32(stride_b1))); } std::vector ptrs_a(num_ptr_a); for(int i = 0; i < num_ptr_a; i++) ptrs_a[i] = gep(shmems_[A], off_a[i]); std::vector ptrs_b(num_ptr_b); for(int i = 0; i < num_ptr_b; i++) ptrs_b[i] = gep(shmems_[B], off_b[i]); std::map ret = vals_[D]; std::map, Value*> has, hbs; auto ord = layout_c->get_order(); for(unsigned k = 0; k < NK; k++){ int z = 0; for(unsigned i = 0; i < shape_c[ord[1]]; i += layout_c->shape_per_cta(ord[1])) for(unsigned j = 0; j < shape_c[ord[0]]; j += layout_c->shape_per_cta(ord[0])) for(unsigned ii = 0; ii < layout_c->nts(ord[1]); ii++) for(unsigned jj = 0; jj < layout_c->nts(ord[0]); jj++){ unsigned m = (ord[0] == 1) ? i : j; unsigned n = (ord[0] == 1) ? j : i; unsigned mm = (ord[0] == 1) ? ii : jj; unsigned nn = (ord[0] == 1) ? jj : ii; if(has.find({m + mm, k}) == has.end()){ Value* pa = gep(ptrs_a[0], i32((m + mm)*stride_a_m + k*stride_a_k)); Value* va = load(pa); has[{m + mm, k}] = va; } if(hbs.find({n + nn, k}) == hbs.end()){ Value* pb = gep(ptrs_b[0], i32((n + nn)*stride_b_n + k*stride_b_k)); Value* vb = load(pb); hbs[{n + nn, k}] = vb; } ret[idxs_[C].at(z)] = call(f_mul_add, {has[{m+mm,k}], hbs[{n+nn, k}], ret[idxs_[C].at(z)]}); z++; } } for(indices_t idx: idxs_.at(C)){ vals_[C][idx] = ret[idx]; } } /** * \brief Code Generation for `dot` * Dispatches to appropriate specialized function */ void generator::visit_dot_inst(ir::dot_inst* dot) { Function *fn = builder_->GetInsertBlock()->getParent(); Module *module = fn->getParent(); ir::value *A = dot->get_operand(0); ir::value *B = dot->get_operand(1); ir::value *D = dot->get_operand(2); Type *c_ty = cvt(D->get_type()->get_scalar_ty()); Function *f_mul_add = Intrinsic::getDeclaration(module, Intrinsic::fmuladd, std::vector{c_ty}); auto A_shapes = A->get_type()->get_block_shapes(); size_t red_axis = 1; unsigned NK = A_shapes[red_axis]; bool is_outer = NK == 1; bool is_mma = layouts_->get(dot)->to_mma(); if(!is_outer && is_mma && tgt_->as_nvidia()->sm() < 80) return visit_mma884(dot, A, B, D, NK); if(!is_outer && is_mma && tgt_->as_nvidia()->sm() >= 80) return visit_mma16816(dot, A, B, D, NK); return visit_fmadot(dot, A, B, D, NK, c_ty, f_mul_add); } void generator::visit_trans_inst(ir::trans_inst* trans) { throw std::runtime_error("not supported"); } /** * \brief Code Generation for `sqrt` */ void generator::visit_sqrt_inst(ir::sqrt_inst* x) { for(indices_t idx: idxs_.at(x)){ Value *val = vals_[x->get_operand(0)][idx]; Value *ret = intrinsic(Intrinsic::sqrt, {val->getType()}, {val}); vals_[x][idx] = ret; } } Value* generator::shared_off(const std::vector& shapes, const std::vector& order, indices_t idx){ // strides std::vector strides(shapes.size(), builder_->getInt32(0)); strides[order[0]] = builder_->getInt32(1); for(size_t i = 1; i < idx.size(); i++) strides[order[i]] = builder_->CreateMul(strides[order[i-1]], builder_->getInt32(shapes[order[i-1]])); // result Value *result = builder_->getInt32(0); for(size_t i = 0; i < idx.size(); i++) result = builder_->CreateAdd(result, builder_->CreateMul(idx[i], strides[i])); return result; } inline Value* generator::shfl_sync(Value* acc, int32_t i){ Type* ty = acc->getType(); std::string asm_str = "shfl.sync.bfly.b32 $0, $1, $2, 0x1f, 0xffffffff;"; InlineAsm *shfl = InlineAsm::get(FunctionType::get(ty, {ty, i32_ty}, false), asm_str, "=f,f,r", false); if(ty->getPrimitiveSizeInBits() <= 32) return call(shfl, {acc, i32(i)}); acc = builder_->CreateBitCast(acc, vec_ty(f32_ty, 2)); Value* acc0 = builder_->CreateExtractElement(acc, i32(0)); Value* acc1 = builder_->CreateExtractElement(acc, i32(1)); Value* ret = UndefValue::get(vec_ty(f32_ty, 2)); ret = insert_elt(ret, shfl_sync(acc0, i), i32(0)); ret = insert_elt(ret, shfl_sync(acc1, i), i32(1)); return builder_->CreateBitCast(ret, ty); } /** * \brief Code Generation for `reduce` (1D case) */ void generator::visit_reduce1d_inst(ir::reduce_inst* x, std::function do_acc, Value *neutral) { std::map partial; ir::value *arg = x->get_operand(0); Type *ret_ty = cvt(x->get_type()->get_scalar_ty()); Value *acc = nullptr; // reduce within thread for(indices_t idx: idxs_.at(arg)){ Value *val = vals_[arg][idx]; acc = !acc ? val : do_acc(acc, val); } // reduce within wrap for(int i = 16; i > 0; i >>= 1) acc = do_acc(acc, shfl_sync(acc, i)); // pointers unsigned addr_space = shmem_->getType()->getPointerAddressSpace(); Value *base = bit_cast(shmem_, ptr_ty(ret_ty, addr_space)); Value* thread = tgt_->get_local_id(mod_, *builder_, 0); Value* warp = udiv(thread, i32(32)); Value* lane = urem(thread, i32(32)); // store warp result in shared memory add_barrier(); store(neutral, gep(base, lane)); add_barrier(); store(acc, gep(base, warp)); add_barrier(); // reduce across warps Value *cond = icmp_eq(warp, i32(0)); Instruction *barrier = add_barrier(); builder_->SetInsertPoint(barrier->getParent()); Instruction* dummy = builder_->CreateRet(nullptr); Instruction *term = llvm::SplitBlockAndInsertIfThen(cond, barrier, false); dummy->removeFromParent(); builder_->SetInsertPoint(term); Value* ret = load(gep(base, thread)); for(int i = (num_warps_+1)/2; i > 0; i >>= 1){ Value *current = shfl_sync(ret, i); ret = do_acc(ret, current); } store(ret, gep(base, thread)); // store first warp done builder_->SetInsertPoint(barrier->getParent()); ret = load(base); for(indices_t idx: idxs_.at(x)) vals_[x][idx] = ret; } /** * \brief Code Generation for `reduce` (ND case) */ void generator::visit_reducend_inst(ir::reduce_inst* x, std::function do_acc, Value *neutral) { ir::value *arg = x->get_operand(0); Type *ty = cvt(x->get_type()->get_scalar_ty()); unsigned axis = x->get_axis(); // reduce within thread std::map accs; for(indices_t idx: idxs_.at(arg)){ indices_t pidx = idx; pidx[axis] = i32(0); Value *current = vals_[arg][idx]; bool is_first = accs.find(pidx) == accs.end(); accs[pidx] = is_first ? current : do_acc(accs[pidx], current); }; // reduce within blocks analysis::data_layout* layout = layouts_->get(layouts_->tmp(x)); Value *base = shared_ptr_.at(layout); auto shape = layout->get_shape(); auto order = layout->get_order(); int space = base->getType()->getPointerAddressSpace(); Value *ptr = bit_cast(base, ptr_ty(ty, space)); Value *lane = axes_.at(a_axes_->get(arg, axis)).thread_id; for(auto& x: accs) { // current element being computed Value *&acc = x.second; indices_t write_idx = x.first; write_idx[axis] = lane; // shared memory write pointer Value *write_off = shared_off(shape, order, write_idx); Value *write_ptr = gep(ptr, write_off); // initialize shared memory add_barrier(); store(acc, write_ptr); // build result indices_t idx(write_idx.size(), i32(0)); for(size_t i = shape[axis]/2; i > 0; i >>= 1){ idx[axis] = i32(i); // read pointer Value *read_msk = icmp_ult(lane, i32(i)); Value *read_off = select(read_msk, shared_off(shape, order, idx), i32(0)); Value *read_ptr = gep(write_ptr, read_off); add_barrier(); // update accumulator acc = do_acc(acc, load(read_ptr)); add_barrier(); store(acc, write_ptr); } } add_barrier(); // write back for(indices_t idx: idxs_.at(x)){ indices_t read_idx = idx; read_idx.insert(read_idx.begin() + axis, i32(0)); Value *read_off = shared_off(shape, order, read_idx); Value *read_ptr = gep(ptr, read_off); vals_[x][idx] = load(read_ptr); }; } /** * \brief Code Generation for `reduce` (generic case) */ void generator::visit_reduce_inst(ir::reduce_inst* x) { Type *ty = cvt(x->get_type()->get_scalar_ty()); // accumulation function ir::reduce_inst::op_t op = x->get_op(); auto do_acc = [&](Value *x, Value *y) -> Value* { switch(op){ case ir::reduce_inst::ADD: return add(x, y); case ir::reduce_inst::SUB: return sub(x, y); case ir::reduce_inst::MAX: return select(icmp_sge(x, y), x, y); case ir::reduce_inst::MIN: return select(icmp_sle(x, y), x, y); case ir::reduce_inst::FADD: return fadd(x, y); case ir::reduce_inst::FSUB: return fsub(x, y); case ir::reduce_inst::FMAX: return max_num(x, y); case ir::reduce_inst::FMIN: return min_num(x, y); default: throw std::runtime_error("unreachable"); } }; // neutral element Value *neutral; switch(op) { case ir::reduce_inst::ADD: neutral = ConstantInt::get(ty, 0); break; case ir::reduce_inst::SUB: neutral = ConstantInt::get(ty, 0); break; case ir::reduce_inst::MAX: neutral = ConstantInt::get(ty, INT32_MIN); break; case ir::reduce_inst::MIN: neutral = ConstantInt::get(ty, INT32_MAX); break; case ir::reduce_inst::FADD: neutral = ConstantFP::get(ty, 0); break; case ir::reduce_inst::FSUB: neutral = ConstantFP::get(ty, 0); break; case ir::reduce_inst::FMAX: neutral = ConstantFP::get(ty, -INFINITY); break; case ir::reduce_inst::FMIN: neutral = ConstantFP::get(ty, INFINITY); break; default: throw std::runtime_error("unreachable"); } ir::value *arg = x->get_operand(0); if(arg->get_type()->get_tile_rank() == 1) visit_reduce1d_inst(x, do_acc, neutral); else visit_reducend_inst(x, do_acc, neutral); } /** * \brief Code Generation for `select` */ void generator::visit_select_inst(ir::select_inst* x) { for(indices_t idx: idxs_.at(x)){ vals_[x][idx] = select(vals_[x->get_operand(0)][idx], vals_[x->get_operand(1)][idx], vals_[x->get_operand(2)][idx]); } } void generator::visit_layout_convert(ir::value *out, ir::value *in){ ir::block_type::block_shapes_t shape = out->get_type()->get_block_shapes(); // pointer to temporary shared memory Type *ty = cvt(out->get_type()->get_scalar_ty()); // Orders analysis::distributed_layout* in_layout = dynamic_cast(layouts_->get(in)); analysis::distributed_layout* out_layout = dynamic_cast(layouts_->get(out)); auto in_ord = in_layout->get_order(); auto out_ord = out_layout->get_order(); Value *base; base = gep(shmem_, i32(alloc_->offset(layouts_->get(layouts_->tmp(out))))); base = bit_cast(base, ptr_ty(ty, 3)); std::vector n_reps; for(int i = 0; i < shape.size(); i++){ int in_per_cta = in_layout->shape_per_cta(i); int out_per_cta = out_layout->shape_per_cta(i); int max_per_cta = std::max(in_per_cta, out_per_cta); n_reps.push_back(shape[i]/max_per_cta); } std::vector> in_ax; std::vector> out_ax; for(int d = 0; d < shape.size(); d++){ in_ax.push_back(axes_.at(a_axes_->get(in, d)).values); out_ax.push_back(axes_.at(a_axes_->get(out, d)).values); } in_ord = in_layout->to_mma() ? out_ord : in_ord; out_ord = out_layout->to_mma() ? in_ord : out_ord; Value *in_ld = i32(shape[in_ord[0]]); Value *out_ld = i32(shape[out_ord[0]]); for(int i = 0; i < n_reps[0]; i++) for(int j = 0; j < n_reps[1]; j++){ int max_ii, max_jj; add_barrier(); max_ii = in_ax[0].size()/n_reps[0]; max_jj = in_ax[1].size()/n_reps[1]; for(int ii = 0; ii < max_ii; ii++) for(int jj = 0; jj < max_jj; jj++){ // shared mem pointer indices_t offs = {in_ax[0][ii], in_ax[1][jj]}; Value *off = add(offs[out_ord[0]], mul(out_ld, offs[out_ord[1]])); Value *ptr = gep(base, off); // stash value to shared mem indices_t idxs = {in_ax[0][i*max_ii + ii], in_ax[1][j*max_jj + jj]}; store(vals_[in][idxs], ptr); } add_barrier(); max_ii = out_ax[0].size()/n_reps[0]; max_jj = out_ax[1].size()/n_reps[1]; for(int ii = 0; ii < max_ii; ii++) for(int jj = 0; jj < max_jj; jj++){ // shared mem pointer indices_t offs = {out_ax[0][ii], out_ax[1][jj]}; Value *off = add(offs[out_ord[0]], mul(out_ld, offs[out_ord[1]])); Value *ptr = gep(base, off); // load value from shared rem indices_t idxs = {out_ax[0][i*max_ii + ii], out_ax[1][j*max_jj + jj]}; vals_[out][idxs] = load(ptr); } } } void generator::visit_cvt_layout_inst(ir::cvt_layout_inst *rc) { visit_layout_convert(rc, rc->get_operand(0)); } void generator::visit_masked_load_async_inst(ir::masked_load_async_inst* x){ unsigned in_vec = 1; ir::value *arg = x->get_pointer_operand(); analysis::shared_layout* out_layout = layouts_->get(x)->to_shared(); analysis::scanline_layout* in_layout = layouts_->get(arg)->to_scanline(); auto out_order = out_layout->get_order(); auto in_order = in_layout->get_order(); // tiles if(out_order == in_order) in_vec = in_layout->nts(in_order[0]); int out_vec = swizzle_->get_vec(out_layout); int min_vec = std::min(out_vec, in_vec); int s = std::max(out_vec / in_vec, 1); // int per_phase = swizzle_->get_per_phase(out_layout); int max_phase = swizzle_->get_max_phase(out_layout); // int in_ld = in_layout->get_shape()[in_order[0]] / in_layout->mts(in_order[0]); int n_shared_1 = std::max(per_phase*max_phase / in_layout->mts(in_order[1]), 1); int n_shared_0 = std::max(in_vec / out_vec, 1); auto shapes = x->get_type()->get_block_shapes(); BasicBlock* CurrBB = builder_->GetInsertBlock(); BasicBlock* FirstBB = &CurrBB->getParent()->getEntryBlock(); std::map, Value*> tmp; std::vector> shared; for(int i = 0; i < idxs_.at(arg).size(); i++){ unsigned id = i / min_vec; // input ptr info int id_0 = id % (in_ld/min_vec); int id_1 = id / (in_ld/min_vec); int off_0 = id_0 / n_shared_0 * n_shared_0 * in_layout->mts(in_order[0]); int off_1 = id_1 / n_shared_1 * n_shared_1 * in_layout->mts(in_order[1]); int off = (off_1*shapes[in_order[0]] + off_0); std::pair key = {id_1 % n_shared_1, id_0 % n_shared_0}; if(tmp.find(key) == tmp.end()){ if(CurrBB != FirstBB) builder_->SetInsertPoint(FirstBB->getTerminator()); indices_t idx = idxs_.at(arg).at(key.first*in_ld); Value* phase = udiv(idx[in_order[1]], i32(per_phase)); phase = urem(phase, i32(max_phase)); Value* off_1 = mul(idx[in_order[1]], i32(shapes[in_order[0]])); Value* off_0 = add(idx[in_order[0]], i32(key.second*out_vec)); off_0 = udiv(off_0, i32(min_vec)); off_0 = add(mul(xor_(udiv(off_0, i32(s)), phase),i32(s)), urem(off_0, i32(s))); off_0 = mul(off_0 , i32(min_vec)); Value* off = add(off_0, off_1); if(CurrBB != FirstBB) builder_->SetInsertPoint(CurrBB); tmp[key] = gep(shmems_[x], {off}); } shared.push_back({tmp[key], off}); } size_t dtsize = x->get_type()->get_scalar_ty()->get_primitive_size_in_bits() / 8; for(size_t i = 0; i < idxs_.at(arg).size(); i += in_vec){ auto idx = idxs_[arg][i]; // input ptr info Value *ptr = vals_[arg][idx]; size_t in_off = 0; GetElementPtrInst *in_gep = dyn_cast(vals_[arg][idx]); if(in_gep){ ConstantInt* cst = dyn_cast(in_gep->idx_begin()); in_off = cst ? cst->getValue().getSExtValue()*dtsize : 0; ptr= cst ? in_gep->getPointerOperand() : in_gep; } // output ptr info Value* out_base = shared[i].first; int out_off = shared[i].second*dtsize; // asm std::string mod = (in_vec*dtsize == 16) ? ".cg" : ".ca"; // Value* false_value = vals_[x->get_false_value_operand()][idx]; // bool is_zero_false_value = false; // if(Constant* cst = dyn_cast(false_value)) // is_zero_false_value = cst->isZeroValue(); Value* src_size = builder_->CreateSelect(vals_[x->get_mask_operand()][idx], i32(in_vec*dtsize), i32(0)); std::string asm_str = "cp.async" + mod + ".shared.global [$0 + " + std::to_string(out_off) + "], [$1 + " + std::to_string(in_off) + "], " + std::to_string(in_vec*dtsize) + ", $2;"; FunctionType *ty = FunctionType::get(void_ty, {out_base->getType(), ptr->getType(), builder_->getInt32Ty()}, false); InlineAsm *iasm = InlineAsm::get(ty, asm_str, "r,l,r", true); call(iasm, {out_base, ptr, src_size}); } std::string asm_str = "cp.async.commit_group;"; InlineAsm *iasm = InlineAsm::get(FunctionType::get(void_ty, {}), asm_str, "", true); call(iasm); } void generator::visit_copy_to_shared_inst(ir::copy_to_shared_inst* cts) { unsigned in_vec = 1; ir::value *arg = cts->get_operand(0); analysis::shared_layout* out_layout = layouts_->get(cts)->to_shared(); analysis::scanline_layout* in_layout = layouts_->get(arg)->to_scanline(); auto out_order = out_layout->get_order(); auto in_order = in_layout->get_order(); // tiles if(out_order == in_order) in_vec = in_layout->nts(in_order[0]); int out_vec = swizzle_->get_vec(out_layout); int min_vec = std::min(out_vec, in_vec); int s = std::max(out_vec / in_vec, 1); // int per_phase = swizzle_->get_per_phase(out_layout); int max_phase = swizzle_->get_max_phase(out_layout); // int in_ld = in_layout->get_shape()[in_order[0]] / in_layout->mts(in_order[0]); int n_shared_1 = std::max(per_phase*max_phase / in_layout->mts(in_order[1]), 1); int n_shared_0 = std::max(in_vec / out_vec, 1); BasicBlock* CurrBB = builder_->GetInsertBlock(); BasicBlock* FirstBB = &CurrBB->getParent()->getEntryBlock(); auto shapes = cts->get_type()->get_block_shapes(); // store to shared Value *current = nullptr; std::map, Value*> ptrs; for(int i = 0; i < idxs_.at(arg).size(); i++){ auto idx = idxs_[arg][i]; Value *in_value = vals_[arg][idx]; if(i % min_vec == 0) current = UndefValue::get(vec_ty(in_value->getType(), min_vec)); current = insert_elt(current, in_value, i % min_vec); if(i % min_vec == min_vec - 1){ unsigned id = i / min_vec; // input ptr info int id_0 = id % (in_ld/min_vec); int id_1 = id / (in_ld/min_vec); int off_0 = id_0 / n_shared_0 * n_shared_0 * in_layout->mts(in_order[0]); int off_1 = id_1 / n_shared_1 * n_shared_1 * in_layout->mts(in_order[1]); int off = (off_1*shapes[in_order[0]] + off_0); std::pair key = {id_1 % n_shared_1, id_0 % n_shared_0}; if(ptrs.find(key) == ptrs.end()){ if(FirstBB->getTerminator()) builder_->SetInsertPoint(FirstBB->getTerminator()); else builder_->SetInsertPoint(FirstBB); indices_t idx = idxs_.at(arg).at(key.first*in_ld); Value* phase = udiv(idx[in_order[1]], i32(per_phase)); phase = urem(phase, i32(max_phase)); Value* off_1 = mul(idx[in_order[1]], i32(shapes[in_order[0]])); Value* off_0 = add(idx[in_order[0]], i32(key.second*out_vec)); off_0 = udiv(off_0, i32(min_vec)); off_0 = add(mul(xor_(udiv(off_0, i32(s)), phase),i32(s)), urem(off_0, i32(s))); off_0 = mul(off_0 , i32(min_vec)); Value* off = add(off_0, off_1); builder_->SetInsertPoint(CurrBB); ptrs[key] = gep(shmems_.at(cts), {off}); } Value* ptr = gep(ptrs[key], {i32(off)}); ptr = bit_cast(ptr, current->getType()->getPointerTo(3)); // asm store(current, ptr); } }; } void generator::visit_copy_from_shared_inst(ir::copy_from_shared_inst*) { throw std::runtime_error("TODO"); } Instruction* generator::add_barrier() { Module *module = builder_->GetInsertBlock()->getModule(); return tgt_->add_barrier(module, *builder_); } void generator::visit_barrier_inst(ir::barrier_inst*) { add_barrier(); } void generator::visit_prefetch_s_inst(ir::prefetch_s_inst *i) { ir::value *v = i->get_operand(0); int inc = i->get_inc(); if (inc == 0) { // If dot has not been visitied, do nothing. } else { // If dot has been visitied, insert prefetched lds assert(inc == 1); assert(prefetch_latch_to_bb_.find(v) != prefetch_latch_to_bb_.end() && "dot hasn't be visited"); // sink lds & extract element // move lds & all uses to current location std::stack work_stack; for (Value *value : prefetch_latch_to_bb_[v]) work_stack.push(value); std::vector dead_instrs; while (!work_stack.empty()) { Value *m = work_stack.top(); work_stack.pop(); for (auto u : m->users()) work_stack.push(u); assert(isa(m)); auto m_instr = static_cast(m); m_instr->removeFromParent(); m_instr->insertAfter(&*std::prev(builder_->GetInsertBlock()->end())); assert(m_instr->getParent() == &*builder_->GetInsertBlock()); builder_->SetInsertPoint(m_instr->getParent()); } } } void generator::visit_async_wait_inst(ir::async_wait_inst* i) { std::string asm_str = "cp.async.wait_group " + std::to_string(i->get_N()) + ";"; InlineAsm *iasm = InlineAsm::get(FunctionType::get(void_ty, {}), asm_str, "", true); call(iasm); } //void generator::visit_make_range_dyn(ir::make_range_dyn* x) { // for(indices_t idx: idxs_.at(x)){ // assert(idx.size() == 1); // if(idx[0] == i32(0)) // vals_[x][idx] = idx[0]; // else{ // BinaryOperator *bin_add = dyn_cast(idx[0]); // assert(bin_add); // vals_[x][idx] = bin_add->getOperand(0); // } // } //} //void generator::visit_make_range_sta(ir::make_range_sta* x) { // for(indices_t idx: idxs_.at(x)){ // assert(idx.size() == 1); // if(idx[0] == i32(0)){ // vals_[x][idx] = idx[0]; // } // else{ // BinaryOperator *bin_add = dyn_cast(idx[0]); // assert(bin_add); // Value *cst = bin_add->getOperand(1); // assert(isa(cst)); // vals_[x][idx] = cst; // } // }; //} void generator::visit_make_range(ir::make_range* x) { for(indices_t idx: idxs_.at(x)){ Value* start = ConstantInt::get(idx[0]->getType(), x->get_first()->get_value()); vals_[x][idx] = add(start, idx[0]); } } void generator::visit_undef_value(ir::undef_value *x) { Type* ty = cvt(x->get_type()->get_scalar_ty()); for(indices_t idx: idxs_.at(x)) vals_[x][idx] = llvm::UndefValue::get(ty); } void generator::visit_constant_int(ir::constant_int *x){ Type *ty = cvt(x->get_type()->get_scalar_ty()); for(indices_t idx: idxs_.at(x)) vals_[x][idx] = ConstantInt::get(ty, x->get_value()); } void generator::visit_constant_fp(ir::constant_fp *x){ Type *ty = cvt(x->get_type()->get_scalar_ty()); for(indices_t idx: idxs_.at(x)) vals_[x][idx] = ConstantFP::get(ty, x->get_value()); } void generator::visit_alloc_const(ir::alloc_const *alloc) { unsigned size = ((ir::constant_int*)alloc->get_operand(0))->get_value(); Type *element_ty = cvt(alloc->get_type()->get_pointer_element_ty()); Type *array_ty = llvm::ArrayType::get(element_ty, size); Value *array = new llvm::GlobalVariable(*mod_, array_ty, false, llvm::GlobalVariable::ExternalLinkage, nullptr, alloc->get_name(), nullptr, llvm::GlobalVariable::NotThreadLocal, 4); vals_[alloc][{}] = bit_cast(array, element_ty->getPointerTo(4)); } void generator::visit_function(ir::function* fn) { LLVMContext &ctx = builder_->getContext(); FunctionType *fn_ty = (FunctionType*)cvt(fn->get_fn_type()); if(!tgt_->is_gpu()){ Type *fn_ret_ty = fn_ty->getReturnType(); std::vector fn_args_ty; for(unsigned i = 0; i < fn_ty->getNumParams(); i++) fn_args_ty.push_back(fn_ty->getParamType(i)); fn_args_ty.push_back(i32_ty); fn_args_ty.push_back(i32_ty); fn_args_ty.push_back(i32_ty); fn_ty = FunctionType::get(fn_ret_ty, fn_args_ty, false); } Function *ret = Function::Create(fn_ty, Function::ExternalLinkage, fn->get_name(), mod_); // set attributes for(auto attr_pair: fn->attrs()){ unsigned id = attr_pair.first; for(ir::attribute attr: attr_pair.second) if(attr.is_llvm_attr()){ llvm::Attribute llattr = cvt(attr); if(llattr.getKindAsEnum() != llvm::Attribute::None) ret->addAttribute(id, cvt(attr)); } } // set metadata if(tgt_->is_gpu()){ tgt_->set_kernel(*builder_, ctx, mod_, ret); Metadata *md_args[] = { ValueAsMetadata::get(ret), MDString::get(ctx, "maxntidx"), ValueAsMetadata::get(i32(num_warps_*32)) }; mod_->getOrInsertNamedMetadata("nvvm.annotations")->addOperand(MDNode::get(ctx, md_args)); } // set arguments for(unsigned i = 0; i < fn->args().size(); i++) vals_[fn->args()[i]][{}] = &*(ret->arg_begin() + i); // create blocks for(ir::basic_block *block: fn->blocks()) { BasicBlock *dst_block = BasicBlock::Create(ctx, block->get_name(), ret); bbs_[block] = dst_block; } builder_->SetInsertPoint(bbs_[fn->blocks()[0]]); // initialize layouts for(auto x: layouts_->get_all()){ visit_layout(x.second); } // generate LLVM-IR code for(ir::basic_block *block: fn->blocks()) visit_basic_block(block); // finalize finalize_function(fn); } void generator::visit_layout_mma(analysis::mma_layout* layout) { ir::value *a = nullptr; ir::value *b = nullptr; for(ir::value* v: layout->get_values()) if(ir::dot_inst* dot = dynamic_cast(v)){ a = dot->get_operand(0); b = dot->get_operand(1); } analysis::data_layout* layout_a = layouts_->get(a); analysis::data_layout* layout_b = layouts_->get(b); const auto& shape = layout->get_shape(); Value *_1 = i32(1); Value *_2 = i32(2); Value *_3 = i32(3); Value *_4 = i32(4); Value *_8 = i32(8); Value *_16 = i32(16); Value *_32 = i32(32); int cc = tgt_->as_nvidia()->sm(); std::vector idx_m; std::vector idx_n; std::vector idx_z; // Value* thread = tgt_->get_local_id(mod_, *builder_, 0); Value *lane = urem(thread, _32); Value *warp = udiv(thread, _32); /* lane offset */ if(cc < 80){ auto ord_a = layout_a->get_order(); auto ord_b = layout_b->get_order(); bool is_a_row = ord_a[0] != 0; bool is_b_row = ord_b[0] != 0; /* warp offset */ Value *warp_0 = urem(warp, i32(layout->wpt(0))); Value *warp_12 = udiv(warp, i32(layout->wpt(0))); Value *warp_1 = urem(warp_12, i32(layout->wpt(1))); Value *off_warp_m = mul(warp_0, i32(layout->spw(0))); Value *off_warp_n = mul(warp_1, i32(layout->spw(1))); // Quad offset Value *off_quad_m = mul(udiv(and_(lane, _16), _4), i32(layout->fpw(0))); Value *off_quad_n = mul(udiv(and_(lane, _16), _4), i32(layout->fpw(1))); // Pair offset Value *off_pair_m = udiv(urem(lane, _16), _4); off_pair_m = urem(off_pair_m, i32(layout->fpw(0))); off_pair_m = mul(off_pair_m, i32(4)); Value *off_pair_n = udiv(urem(lane, _16), _4); off_pair_n = udiv(off_pair_n, i32(layout->fpw(0))); off_pair_n = urem(off_pair_n, i32(layout->fpw(1))); off_pair_n = mul(off_pair_n, i32(4)); // scale off_pair_m = mul(off_pair_m, i32(layout->rep(0)/2)); off_quad_m = mul(off_quad_m, i32(layout->rep(0)/2)); off_pair_n = mul(off_pair_n, i32(layout->rep(1)/2)); off_quad_n = mul(off_quad_n, i32(layout->rep(1)/2)); // Quad pair offset Value *off_lane_m = add(off_pair_m, off_quad_m); Value *off_lane_n = add(off_pair_n, off_quad_n); // a offset offset_a_m_[layout] = add(off_warp_m, off_lane_m); offset_a_k_[layout] = and_(lane, _3); // b offsets offset_b_n_[layout] = add(off_warp_n, off_lane_n); offset_b_k_[layout] = and_(lane, _3); // i indices Value *offset_c_m = add(and_(lane, _1), offset_a_m_[layout]); for(unsigned m = 0; m < shape[0]; m+=layout->shape_per_cta(0)) for(unsigned mm = 0; mm < layout->rep(0); mm++) idx_m.push_back(add(offset_c_m, i32(m + mm*2))); // j indices Value *offset_c_n = add(and_(lane, _2), add(off_warp_n, off_pair_n)); for(unsigned n = 0; n < shape[1]; n+=layout->shape_per_cta(1)) for(unsigned nn = 0; nn < layout->rep(1); nn++){ idx_n.push_back(add(offset_c_n, i32(n + nn/2*4 + (nn%2)*2*layout->fpw(1)*layout->rep(1)))); idx_n.push_back(add(offset_c_n, i32(n + nn/2*4 + (nn%2)*2*layout->fpw(1)*layout->rep(1) + 1))); } if(is_a_row){ offset_a_m_[layout] = add(offset_a_m_[layout], urem(thread, i32(4))); offset_a_k_[layout] = i32(0); } if(!is_b_row){ offset_b_n_[layout] = add(offset_b_n_[layout], urem(thread, i32(4))); offset_b_k_[layout] = i32(0); } /* axes */ axes_[layout->get_axis(0)] = distributed_axis{1, idx_m, warp_0}; axes_[layout->get_axis(1)] = distributed_axis{1, idx_n, warp_1}; } else{ /* warp offset */ Value *warp_0 = urem(warp, i32(layout->wpt(0))); Value *warp_12 = udiv(warp, i32(layout->wpt(0))); Value *warp_1 = urem(warp_12, i32(layout->wpt(1))); Value *off_warp_m = mul(warp_0, i32(layout->spw(0))); Value *off_warp_n = mul(warp_1, i32(layout->spw(1))); Value *off_lane_m = urem(lane, _16); Value *off_lane_n = urem(lane, _8); /* offsets */ // a offset offset_a_m_[layout] = add(off_warp_m, off_lane_m); offset_a_k_[layout] = i32(0); // b offsets offset_b_n_[layout] = add(off_warp_n, off_lane_n); offset_b_k_[layout] = i32(0); // c offset Value *off_c_m = add(udiv(lane, _4), off_warp_m); Value *off_c_n = add(mul(_2, urem(lane, _4)), off_warp_n); for(unsigned m = 0; m < shape[0]; m+=layout->shape_per_cta(0)){ idx_m.push_back(add(off_c_m, i32(m))); idx_m.push_back(add(off_c_m, i32(m + 8))); } for(unsigned n = 0; n < shape[1]; n+=layout->shape_per_cta(1)){ idx_n.push_back(add(off_c_n, i32(n))); idx_n.push_back(add(off_c_n, i32(n + 1))); } /* axes */ axes_[layout->get_axis(0)] = distributed_axis{1, idx_m, warp_0}; axes_[layout->get_axis(1)] = distributed_axis{1, idx_n, warp_1}; } } void generator::visit_layout_scanline(analysis::scanline_layout* layout) { Value *warp_size = i32(32); Value* u_thread_id_0 = tgt_->get_local_id(mod_, *builder_, 0); Value *u_thread_id = urem(u_thread_id_0, warp_size); Value *u_warp_id = udiv(u_thread_id_0, warp_size); auto order = layout->get_order(); const auto& shape = layout->get_shape(); Value* full_thread_id = add(mul(u_warp_id, i32(32)), u_thread_id); // Delinearize size_t dim = shape.size(); std::vector thread_id(dim); for(unsigned k = 0; k < dim - 1; k++){ Constant *dim_k = i32(layout->mts(order[k])); Value *rem = urem(full_thread_id, dim_k); full_thread_id = udiv(full_thread_id, dim_k); thread_id[order[k]] = rem; } thread_id[order[dim - 1]] = full_thread_id; // Create axes for(unsigned k = 0; k < dim; k++) { int nts = layout->nts(k); int mts = layout->mts(k); std::string str_k = std::to_string(k); Value *contiguous_k = i32(nts); Value *scaled_thread_id = mul(thread_id[k], contiguous_k); unsigned per_cta = layout->shape_per_cta(k); unsigned per_thread = nts * shape[k] / per_cta; std::vector idx_list(per_thread); for(unsigned n = 0 ; n < per_thread; n++){ unsigned offset = n / nts * per_cta + n % nts; idx_list[n] = add(scaled_thread_id, i32(offset), "idx_" + str_k + "_" + std::to_string(n)); } axes_[layout->get_axis(k)] = distributed_axis{nts, idx_list, thread_id[k]}; } } void generator::visit_layout_shared(analysis::shared_layout* layout) { Type* ty = cvt(layout->get_type()); PointerType *ptr_ty = ty->getPointerTo(shmem_->getType()->getPointerAddressSpace()); if (layout->get_N_buffer()) { // create pointers shared_pre_ptr_[layout] = gep(shmem_, i32(alloc_->offset(layout))); shared_pre_ptr_[layout] = bit_cast(shared_pre_ptr_[layout], ptr_ty); BasicBlock *current = builder_->GetInsertBlock(); auto info = *layout->get_N_buffer(); ir::phi_node *phi = info.phi; BasicBlock *parent = bbs_.at(phi->get_parent()); if(parent->empty()) builder_->SetInsertPoint(parent); else if (const Instruction *first_non_phi = &*parent->getFirstNonPHI()) { builder_->SetInsertPoint(&*parent->getFirstNonPHI()); } else builder_->SetInsertPoint(parent); // create smem_idx read_smem_idx_[layout] = phi(i32_ty, 2); write_smem_idx_[layout] = phi(i32_ty, 2); // create pointers // ptr of the current iteration shared_ptr_[layout] = phi(ptr_ty, 2); // ptr of the next iteration shared_next_ptr_[layout] = phi(ptr_ty, 2); builder_->SetInsertPoint(current); } else if(layout->get_double_buffer()) { BasicBlock *current = builder_->GetInsertBlock(); auto info = *layout->get_double_buffer(); ir::phi_node *phi = info.phi; BasicBlock *parent = bbs_.at(phi->get_parent()); if(parent->empty()) builder_->SetInsertPoint(parent); else builder_->SetInsertPoint(&*parent->getFirstNonPHI()); // create pointers shared_ptr_[layout] = phi(ptr_ty, 2); shared_pre_ptr_[layout] = gep(shmem_, i32(alloc_->offset(layout))); shared_pre_ptr_[layout] = bit_cast(shared_pre_ptr_[layout], shared_ptr_[layout]->getType()); shared_off_[layout] = phi(i32_ty, 2); shared_next_ptr_[layout] = gep(shared_ptr_[layout], shared_off_[layout], "next_ptr"); builder_->SetInsertPoint(current); } else{ size_t offset = alloc_->offset(layout); shared_ptr_[layout] = gep(shmem_, i32(offset)); shared_ptr_[layout] = bit_cast(shared_ptr_[layout], ptr_ty); } } void generator::visit_basic_block(ir::basic_block * block) { BasicBlock *parent = bbs_[block]; builder_->SetInsertPoint(parent); for(ir::instruction *i: block->get_inst_list()) visit_value(i); // Update ir bb -> llvm bb mapping bbs_[block] = builder_->GetInsertBlock(); } void generator::visit_argument(ir::argument* arg) { } void generator::init_idx(ir::value *v) { idxs_[v].clear(); if(!v->get_type()->is_block_ty()){ idxs_[v].push_back({}); return; } if(layouts_->get(v)->to_shared()) return; const auto &shapes = v->get_type()->get_block_shapes(); size_t rank = shapes.size(); std::vector axes(rank); std::vector ord(rank); // compute axes for(size_t d = 0; d < shapes.size(); d++){ if(shapes[d] > 1){ unsigned x = a_axes_->get(v, d); axes[d] = axes_.at(x); } else{ axes[d].contiguous = 1; axes[d].values = {i32(0)}; } } // compute order analysis::data_layout* layout = layouts_->get(v); std::iota(ord.begin(), ord.end(), 0); auto cmp = [&](int x, int y) { unsigned axx = a_axes_->get(v, x); unsigned axy = a_axes_->get(v, y); size_t posx = layout->find_axis(axx); size_t posy = layout->find_axis(axy); if(posx < rank && posy < rank) return layout->get_order(posx) < layout->get_order(posy); return false; }; std::sort(ord.begin(), ord.end(), cmp); ords_[v] = ord; // indices if(axes.size() == 1) for(Value* x0: axes[ord[0]].values){ idxs_[v].push_back({x0}); } if(axes.size() == 2) for(Value* x1: axes[ord[1]].values) for(Value* x0: axes[ord[0]].values){ indices_t idx(2); idx[ord[0]] = x0; idx[ord[1]] = x1; idxs_[v].push_back(idx); } if(axes.size() == 3) for(Value* x2: axes[ord[2]].values) for(Value* x1: axes[ord[1]].values) for(Value* x0: axes[ord[0]].values){ indices_t idx(3); idx[ord[0]] = x0; idx[ord[1]] = x1; idx[ord[2]] = x2; idxs_[v].push_back(idx); } } void generator::finalize_shared_layout(analysis::shared_layout *shared) { if (auto n_buffer = shared->get_N_buffer()) { // if (*_smem_idx == #stages-1) { // *_smem_idx = 0; // } else *_smem_idx++; auto finalize_smem_idx = [&](auto &smem_idx, int init_stage) { // insert point Value *idx = smem_idx[shared]; builder_->SetInsertPoint(bbs_.at(n_buffer->phi->get_parent())->getTerminator()); Value *cond = icmp_eq(idx, i32(shared->get_num_stages()-1)); PHINode *_ret = phi(i32_ty, 2); Instruction *then_term = nullptr; Instruction *else_term = nullptr; Instruction *dummy = builder_->CreateRet(nullptr); llvm::SplitBlockAndInsertIfThenElse(cond, _ret, &then_term, &else_term, nullptr); dummy->removeFromParent(); builder_->SetInsertPoint(then_term); Value *zero_smem_idx = i32(0); builder_->SetInsertPoint(else_term); Value *inc_smem_idx = add(idx, i32(1)); builder_->SetInsertPoint(_ret->getParent()); _ret->addIncoming(zero_smem_idx, then_term->getParent()); _ret->addIncoming(inc_smem_idx, else_term->getParent()); // update ir::bb -> llvm::bb mapping bbs_.at(n_buffer->phi->get_parent()) = builder_->GetInsertBlock(); // idx = init_stage; // loop: ... if (auto idx_phi = llvm::dyn_cast(smem_idx[shared])) { idx_phi->addIncoming(i32(init_stage), bbs_.at(n_buffer->phi->get_incoming_block(0))); idx_phi->addIncoming(_ret, bbs_.at(n_buffer->phi->get_incoming_block(1))); } else throw std::runtime_error("Should be PHINode"); }; // read_smem_idx is used by next_ptr to compute the next iteration value, so init value is 2 finalize_smem_idx(read_smem_idx_, 2); finalize_smem_idx(write_smem_idx_, shared->get_num_stages()-1); // finalize pointers ir::phi_node *pn = n_buffer->phi; BasicBlock *header = bbs_.at(pn->get_incoming_block(0)); BasicBlock *loop = bbs_.at(pn->get_incoming_block(1)); // %curr_ptr = phi %shared_pre_ptr, %next_ptr // %next_ptr = phi %shared_pre_ptr[+1], (gep(%pre_ptr, read_smem_idx*per_stage_size)) if (auto curr_ptr = dyn_cast(shared_ptr_[shared])) { curr_ptr->addIncoming(shared_pre_ptr_[shared], header); curr_ptr->addIncoming(shared_next_ptr_[shared], loop); } else throw std::runtime_error("Should be PHINode"); BasicBlock *current = builder_->GetInsertBlock(); builder_->SetInsertPoint(header->getTerminator()); Value *next_ptr_header = gep(shared_pre_ptr_[shared], i32(shared->get_per_stage_elements())); builder_->SetInsertPoint(current->getTerminator()); assert(isa(shared_next_ptr_[shared])); static_cast(shared_next_ptr_[shared])->addIncoming(next_ptr_header, header); Value *lds_offset = mul(read_smem_idx_[shared], i32(shared->get_per_stage_elements())); Value *next_ptr = gep(shared_pre_ptr_[shared], lds_offset); static_cast(shared_next_ptr_[shared])->addIncoming(next_ptr, loop); } else if(shared->get_double_buffer()) { auto info = *shared->get_double_buffer(); ir::phi_node *phi = info.phi; PHINode *ptr = (PHINode*)shmems_[phi]; PHINode *offset = (PHINode*)shoffs_[phi]; for(unsigned n = 0; n < phi->get_num_incoming(); n++){ ir::basic_block* inc_block = phi->get_incoming_block(n); ir::value* inc_val = phi->get_incoming_value(n); BasicBlock *llvm_inc_block = bbs_.at(inc_block); if(inc_val == info.latch){ builder_->SetInsertPoint(llvm_inc_block->getTerminator()); Value *next_offset = neg(offset); offset->addIncoming(next_offset, llvm_inc_block); } else { unsigned num_bytes = shared->get_type()->get_primitive_size_in_bits() / 8; offset->addIncoming(i32(shared->get_size() / (2*num_bytes)), llvm_inc_block); } ptr->addIncoming(shmems_[inc_val], llvm_inc_block); } } } void generator::finalize_function(ir::function *fn) { // finalize double-buffering for(const auto& x: layouts_->get_all()) if(auto *shared = dynamic_cast(x.second)) finalize_shared_layout(shared); // finalize phi for(ir::basic_block *block: fn->blocks()) for(ir::instruction *inst: block->get_inst_list()) if(auto *phi = dynamic_cast(inst)) finalize_phi_node(phi); for(auto& x: lazy_phi_incs_) std::get<0>(x)->addIncoming(std::get<1>(x), bbs_[std::get<2>(x)]); } void generator::finalize_phi_node(ir::phi_node *x) { if(shmems_.find(x) != shmems_.end()) return; for(unsigned n = 0; n < x->get_num_incoming(); n++){ ir::basic_block *_block = x->get_incoming_block(n); BasicBlock *block = bbs_.at(_block); for(indices_t idx: idxs_.at(x)){ PHINode *phi = (PHINode*)vals_[x][idx]; Value *inc = vals_[x->get_incoming_value(n)][idx]; phi->addIncoming(inc, block); } } } void generator::visit(ir::module &src, llvm::Module &dst) { mod_ = &dst; ctx_ = &dst.getContext(); builder_ = new Builder(*ctx_); // allocate shared memory if(tgt_->is_gpu()) if(unsigned alloc_size = alloc_->allocated_size()){ Type *int_8_ty = Type::getInt8Ty(*ctx_); Type *int_32_ty = Type::getInt32Ty(*ctx_); ArrayType *array_ty = ArrayType::get(int_32_ty, 0); Type *ptr_ty = ptr_ty(int_8_ty, 3); GlobalVariable *sh_mem_array = new GlobalVariable(*mod_, array_ty, false, GlobalVariable::ExternalLinkage, nullptr, "__shared_ptr", nullptr, GlobalVariable::NotThreadLocal, 3); shmem_ = bit_cast(sh_mem_array, ptr_ty); } // visit functions for(ir::function *fn: src.get_function_list()) visit_function(fn); } } }