Skip to content

Commit

Permalink
Update version number.
Browse files Browse the repository at this point in the history
  • Loading branch information
Jared Casper committed Nov 2, 2016
1 parent 13d1e16 commit 49b37ba
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/ctc_entrypoint.cpp
Expand Up @@ -13,7 +13,7 @@
extern "C" {

int get_warpctc_version() {
return 1;
return 2;
}

const char* ctcGetStatusString(ctcStatus_t status) {
Expand Down
2 changes: 1 addition & 1 deletion tests/test_cpu.cpp
Expand Up @@ -366,7 +366,7 @@ bool run_tests() {
}

int main(void) {
if (get_warpctc_version() != 1) {
if (get_warpctc_version() != 2) {
std::cerr << "Invalid WarpCTC version." << std::endl;
return 1;
}
Expand Down
2 changes: 1 addition & 1 deletion tests/test_gpu.cu
Expand Up @@ -478,7 +478,7 @@ bool run_tests() {
}

int main(void) {
if (get_warpctc_version() != 1) {
if (get_warpctc_version() != 2) {
std::cerr << "Invalid WarpCTC version." << std::endl;
return 1;
}
Expand Down

0 comments on commit 49b37ba

Please sign in to comment.