Spaces:
Running
Running
whisper : fix compile warning for unused params
Browse files- src/whisper.cpp +2 -0
src/whisper.cpp
CHANGED
|
@@ -1297,6 +1297,8 @@ static ggml_backend_t whisper_backend_init_gpu(const whisper_context_params & pa
|
|
| 1297 |
}
|
| 1298 |
#endif
|
| 1299 |
|
|
|
|
|
|
|
| 1300 |
return result;
|
| 1301 |
}
|
| 1302 |
|
|
|
|
| 1297 |
}
|
| 1298 |
#endif
|
| 1299 |
|
| 1300 |
+
GGML_UNUSED(params);
|
| 1301 |
+
|
| 1302 |
return result;
|
| 1303 |
}
|
| 1304 |
|