This repository has been archived on 2025-08-26. You can view files and clone it, but cannot push or open issues or pull requests.
Files
enginex-mr_series-sherpa-onnx/sherpa-onnx/csrc/version.cc
2025-07-04 19:41:02 +08:00

25 lines
446 B
C++

// sherpa-onnx/csrc/version.h
//
// Copyright 2025 Xiaomi Corporation
#include "sherpa-onnx/csrc/version.h"
namespace sherpa_onnx {
const char *GetGitDate() {
static const char *date = "Fri Jul 4 15:57:07 2025";
return date;
}
const char *GetGitSha1() {
static const char *sha1 = "3bf986d0";
return sha1;
}
const char *GetVersionStr() {
static const char *version = "1.12.4";
return version;
}
} // namespace sherpa_onnx