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_bi_series-sherpa-onnx/sherpa-onnx/csrc/version.cc
2025-07-10 15:31:26 +08:00

25 lines
447 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 = "Thu Jul 10 14:53:33 2025";
return date;
}
const char *GetGitSha1() {
static const char *sha1 = "fd9a687e";
return sha1;
}
const char *GetVersionStr() {
static const char *version = "1.12.5";
return version;
}
} // namespace sherpa_onnx