summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorCedric Nugteren <web@cedricnugteren.nl>2017-02-18 10:59:38 +0100
committerCedric Nugteren <web@cedricnugteren.nl>2017-02-18 10:59:38 +0100
commitd6538dfc25a14251e49da0f95007e03b2b3fe3be (patch)
tree6b4339e5377b3f159a1a5164e0de819fad51e945 /src
parent3d10690c830a749d1e9c2c60bcd68a61590ef994 (diff)
Fixed the naming of the C API of OverrideParameters and fixed the description
Diffstat (limited to 'src')
-rw-r--r--src/clblast_c.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/clblast_c.cpp b/src/clblast_c.cpp
index 79b6a640..de431fa4 100644
--- a/src/clblast_c.cpp
+++ b/src/clblast_c.cpp
@@ -3487,9 +3487,9 @@ CLBlastStatusCode CLBlastFillCache(const cl_device_id device) {
// =================================================================================================
// Overrides the tuning parameters for this device-precision-kernel combination
-CLBlastStatusCode PUBLIC_API OverrideParameters(const cl_device_id device, const char* kernel_name,
- const CLBlastPrecision precision, const size_t num_parameters,
- const char** parameters_names, const size_t* parameters_values) {
+CLBlastStatusCode PUBLIC_API CLBlastOverrideParameters(const cl_device_id device, const char* kernel_name,
+ const CLBlastPrecision precision, const size_t num_parameters,
+ const char** parameters_names, const size_t* parameters_values) {
try {
const auto kernel_name_cpp = std::string(kernel_name);
const auto precision_cpp = static_cast<clblast::Precision>(precision);