mirror of
https://github.com/ROCm/composable_kernel.git
synced 2026-05-14 10:09:41 +00:00
Add default arguments for prologue and epilogue. (#2020)
[ROCm/composable_kernel commit: 21e0ca197d]
This commit is contained in:
@@ -39,8 +39,8 @@ struct Problem
|
||||
|
||||
// returns a list of instances based on the problem spec and provided fusion operations
|
||||
std::vector<Solution> GetSolutions(const std::string& arch,
|
||||
const std::string& prologue,
|
||||
const std::string& epilogue) const;
|
||||
const std::string& prologue = "",
|
||||
const std::string& epilogue = "") const;
|
||||
};
|
||||
|
||||
} // namespace device_batched_gemm_softmax_gemm
|
||||
|
||||
@@ -37,8 +37,8 @@ struct Problem
|
||||
|
||||
// returns a list of instances based on the problem spec and provided fusion operations
|
||||
std::vector<Solution> GetSolutions(const std::string& arch,
|
||||
const std::string& prologue,
|
||||
const std::string& epilogue) const;
|
||||
const std::string& prologue = "",
|
||||
const std::string& epilogue = "") const;
|
||||
};
|
||||
|
||||
} // namespace device_gemm_multiple_d
|
||||
|
||||
Reference in New Issue
Block a user