Skip to content

Commit

Permalink
BLAS: fix blas fptype for complex
Browse files Browse the repository at this point in the history
  • Loading branch information
wsmoses committed Nov 16, 2024
1 parent 0a81fa1 commit 46b633f
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
6 changes: 5 additions & 1 deletion enzyme/Enzyme/Utils.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -579,14 +579,18 @@ void ErrorIfRuntimeInactive(llvm::IRBuilder<> &B, llvm::Value *primal,
call->setDebugLoc(loc);
}

Type *BlasInfo::fpType(LLVMContext &ctx) const {
Type *BlasInfo::fpType(LLVMContext &ctx, bool to_scalar) const {
if (floatType == "d" || floatType == "D") {
return Type::getDoubleTy(ctx);
} else if (floatType == "s" || floatType == "S") {
return Type::getFloatTy(ctx);
} else if (floatType == "c" || floatType == "C") {
if (to_scalar)
return Type::getFloatTy(ctx);
return VectorType::get(Type::getFloatTy(ctx), 2, false);
} else if (floatType == "z" || floatType == "Z") {
if (to_scalar)
return Type::getDoubleTy(ctx);
return VectorType::get(Type::getDoubleTy(ctx), 2, false);
} else {
assert(false && "Unreachable");
Expand Down
2 changes: 1 addition & 1 deletion enzyme/Enzyme/Utils.h
Original file line number Diff line number Diff line change
Expand Up @@ -678,7 +678,7 @@ struct BlasInfo {
std::string function;
bool is64;

llvm::Type *fpType(llvm::LLVMContext &ctx) const;
llvm::Type *fpType(llvm::LLVMContext &ctx, bool to_scalar=false) const;
llvm::IntegerType *intType(llvm::LLVMContext &ctx) const;
};

Expand Down
2 changes: 1 addition & 1 deletion enzyme/tools/enzyme-tblgen/blasTAUpdater.h
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ inline void emit_BLASTypes(raw_ostream &os) {
"\"cublas\" && StringRef(blas.suffix).contains(\"v2\");\n";

os << "TypeTree ttFloat;\n"
<< "llvm::Type *floatType = blas.fpType(call.getContext()); \n"
<< "llvm::Type *floatType = blas.fpType(call.getContext(), true); \n"
<< "if (byRefFloat) {\n"
<< " ttFloat.insert({-1},BaseType::Pointer);\n"
<< " ttFloat.insert({-1,0},floatType);\n"
Expand Down

0 comments on commit 46b633f

Please sign in to comment.