-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add context params and init OpenVINO method (#13)
Signed-off-by: Miguel Álvarez <miguelwork92@gmail.com>
- Loading branch information
Showing
5 changed files
with
98 additions
and
25 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
20 changes: 20 additions & 0 deletions
20
src/main/java/io/github/givimad/whisperjni/WhisperContextParams.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
package io.github.givimad.whisperjni; | ||
|
||
/** | ||
* The {@link WhisperContextParams} class contains the {@link WhisperContext} params. | ||
* | ||
* @author Miguel Álvarez Díez - Initial contribution | ||
*/ | ||
public class WhisperContextParams { | ||
/** | ||
* Enables GPU usage. | ||
*/ | ||
public boolean useGPU = true; | ||
|
||
/** | ||
* Public constructor. | ||
*/ | ||
public WhisperContextParams() { | ||
|
||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.