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

25 lines
447 B
C++
Raw Normal View History

// sherpa-onnx/csrc/version.h
//
// Copyright 2025 Xiaomi Corporation
#include "sherpa-onnx/csrc/version.h"
namespace sherpa_onnx {
const char *GetGitDate() {
2025-06-25 00:37:55 +08:00
static const char *date = "Wed Jun 25 00:22:21 2025";
return date;
}
const char *GetGitSha1() {
2025-06-25 00:37:55 +08:00
static const char *sha1 = "bda427f4";
return sha1;
}
const char *GetVersionStr() {
2025-06-25 00:37:55 +08:00
static const char *version = "1.12.2";
return version;
}
} // namespace sherpa_onnx