@qvac/translation-nmtcpp 0.1.1 → 0.1.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +35 -0
- package/marian.js +30 -1
- package/package.json +12 -2
- package/prebuilds/android-arm/qvac__translation-nmtcpp.bare +0 -0
- package/prebuilds/android-arm64/qvac__translation-nmtcpp.bare +0 -0
- package/prebuilds/android-ia32/qvac__translation-nmtcpp.bare +0 -0
- package/prebuilds/android-x64/qvac__translation-nmtcpp.bare +0 -0
- package/prebuilds/darwin-arm64/qvac__translation-nmtcpp.bare +0 -0
- package/prebuilds/darwin-arm64/qvac__translation-nmtcpp.bare.exports +16 -6
- package/prebuilds/darwin-x64/qvac__translation-nmtcpp.bare +0 -0
- package/prebuilds/darwin-x64/qvac__translation-nmtcpp.bare.exports +20 -8
- package/prebuilds/ios-arm64/qvac__translation-nmtcpp.bare +0 -0
- package/prebuilds/ios-arm64/qvac__translation-nmtcpp.bare.exports +15 -5
- package/prebuilds/ios-arm64-simulator/qvac__translation-nmtcpp.bare +0 -0
- package/prebuilds/ios-arm64-simulator/qvac__translation-nmtcpp.bare.exports +15 -5
- package/prebuilds/ios-x64-simulator/qvac__translation-nmtcpp.bare +0 -0
- package/prebuilds/ios-x64-simulator/qvac__translation-nmtcpp.bare.exports +19 -7
- package/prebuilds/linux-x64/qvac__translation-nmtcpp.bare +0 -0
- package/prebuilds/win32-x64/qvac__translation-nmtcpp.bare +0 -0
- package/prebuilds/win32-x64/qvac__translation-nmtcpp.bare.exports +0 -0
package/README.md
CHANGED
|
@@ -437,6 +437,41 @@ The benchmarking covers:
|
|
|
437
437
|
|
|
438
438
|
Results are updated regularly as new model versions are released.
|
|
439
439
|
|
|
440
|
+
## Testing
|
|
441
|
+
|
|
442
|
+
This project includes comprehensive testing capabilities for both JavaScript and C++ components.
|
|
443
|
+
|
|
444
|
+
### JavaScript Tests
|
|
445
|
+
|
|
446
|
+
```bash
|
|
447
|
+
# Run all JavaScript tests
|
|
448
|
+
npm test # Unit + integration tests
|
|
449
|
+
npm run test:unit # Unit tests only
|
|
450
|
+
npm run test:integration # Integration tests only
|
|
451
|
+
```
|
|
452
|
+
|
|
453
|
+
### C++ Tests
|
|
454
|
+
|
|
455
|
+
The project includes C++ tests using Google Test framework.
|
|
456
|
+
|
|
457
|
+
#### npm Commands (Recommended - Cross-Platform)
|
|
458
|
+
|
|
459
|
+
```bash
|
|
460
|
+
# Build and run C++ tests
|
|
461
|
+
npm run test:cpp:build # Build C++ test suite (auto-detects platform)
|
|
462
|
+
npm run test:cpp:run # Run all C++ unit tests
|
|
463
|
+
npm run test:cpp # Build and run in one command
|
|
464
|
+
|
|
465
|
+
# C++ Code Coverage
|
|
466
|
+
npm run coverage:cpp:build # Build with coverage instrumentation
|
|
467
|
+
npm run coverage:cpp:run # Run tests and collect coverage data
|
|
468
|
+
npm run coverage:cpp:report # Generate HTML coverage report
|
|
469
|
+
npm run coverage:cpp # Complete coverage workflow
|
|
470
|
+
|
|
471
|
+
# Combined Testing
|
|
472
|
+
npm run test:all # Run both JavaScript and C++ tests
|
|
473
|
+
```
|
|
474
|
+
|
|
440
475
|
## Other Examples
|
|
441
476
|
|
|
442
477
|
- [Filesystem Data Loader](examples/example.fs.js): Demonstrates using the library with the Filesystem Data Loader for Marian model inference.
|
package/marian.js
CHANGED
|
@@ -18,15 +18,33 @@ class TranslationInterface {
|
|
|
18
18
|
outputCb,
|
|
19
19
|
transitionCb
|
|
20
20
|
)
|
|
21
|
+
|
|
22
|
+
// Set up C++ → JS logger
|
|
23
|
+
this._loggerInitialized = false
|
|
24
|
+
if (transitionCb && typeof transitionCb === 'object') {
|
|
25
|
+
binding.setLogger((priority, message) => {
|
|
26
|
+
// Map C++ priority levels to logger methods
|
|
27
|
+
// Priority: ERROR=0, WARNING=1, INFO=2, DEBUG=3
|
|
28
|
+
const levels = ['error', 'warn', 'info', 'debug']
|
|
29
|
+
const level = levels[priority] || 'info'
|
|
30
|
+
if (typeof transitionCb[level] === 'function') {
|
|
31
|
+
transitionCb[level](message)
|
|
32
|
+
}
|
|
33
|
+
})
|
|
34
|
+
this._loggerInitialized = true
|
|
35
|
+
}
|
|
21
36
|
}
|
|
22
37
|
|
|
23
38
|
/**
|
|
24
39
|
* Stops the current process execution,
|
|
25
40
|
* frees memory allocated for configuration and weights,
|
|
26
|
-
* and moves addon to the UNLOADED state.
|
|
41
|
+
* destroys the native instance, and moves addon to the UNLOADED state.
|
|
27
42
|
*/
|
|
28
43
|
async unload () {
|
|
29
44
|
binding.unload(this._handle)
|
|
45
|
+
// Automatically destroy the instance to free native resources
|
|
46
|
+
// This mirrors the pattern used in other QVAC addons
|
|
47
|
+
await this.destroy()
|
|
30
48
|
}
|
|
31
49
|
|
|
32
50
|
/**
|
|
@@ -168,7 +186,18 @@ class TranslationInterface {
|
|
|
168
186
|
* Stops addon process and clears resources (including memory).
|
|
169
187
|
*/
|
|
170
188
|
async destroy () {
|
|
189
|
+
// If already destroyed, do nothing
|
|
190
|
+
if (this._handle === null) {
|
|
191
|
+
return
|
|
192
|
+
}
|
|
193
|
+
|
|
171
194
|
try {
|
|
195
|
+
// Clean up logger before destroying instance
|
|
196
|
+
if (this._loggerInitialized) {
|
|
197
|
+
binding.releaseLogger()
|
|
198
|
+
this._loggerInitialized = false
|
|
199
|
+
}
|
|
200
|
+
|
|
172
201
|
binding.destroyInstance(this._handle)
|
|
173
202
|
this._handle = null
|
|
174
203
|
} catch (err) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@qvac/translation-nmtcpp",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.3",
|
|
4
4
|
"description": "translation addon for qvac",
|
|
5
5
|
"addon": true,
|
|
6
6
|
"engines": {
|
|
@@ -18,7 +18,17 @@
|
|
|
18
18
|
"model:init": "qvac-dev model init",
|
|
19
19
|
"model:new": "qvac-dev model new",
|
|
20
20
|
"model:generate": "qvac-dev model generate",
|
|
21
|
-
"test:dts": "tsc index.d.ts --noEmit"
|
|
21
|
+
"test:dts": "tsc index.d.ts --noEmit",
|
|
22
|
+
"test:cpp:build": "bare-make generate -D BUILD_TESTING=ON && bare-make build --target addon-test && bare-make install",
|
|
23
|
+
"test:cpp:run": "cd build/addon/tests/ && ./addon-test --gtest_output=xml:cpp-test-results.xml",
|
|
24
|
+
"test:cpp": "npm run test:cpp:build && npm run test:cpp:run",
|
|
25
|
+
"coverage:cpp:build": "bare-make generate -D BUILD_TESTING=ON -D ENABLE_COVERAGE=ON && bare-make build --target addon-test",
|
|
26
|
+
"coverage:cpp:run": "cd build/addon/tests/ && LLVM_PROFILE_FILE=default.profraw ./addon-test --gtest_output=xml:cpp-test-results.xml",
|
|
27
|
+
"coverage:cpp:summary" : "cd build/addon/tests && llvm-cov-19 report ./addon-test --instr-profile=coverage.profdata -ignore-filename-regex='(tests|build|node_modules|gtest|gmock|\\.vcpkg|/usr)/' > coverage-summary.txt",
|
|
28
|
+
"coverage:cpp:report": "cd build/addon/tests/ && ls -lha && llvm-profdata-19 merge -sparse default.profraw -o coverage.profdata && llvm-cov-19 show ./addon-test -instr-profile=coverage.profdata -format=html -output-dir=coverage-html -ignore-filename-regex='(tests|build|node_modules|gtest|gmock|\\.vcpkg|/usr)/' && llvm-cov-19 export ./addon-test -instr-profile=coverage.profdata -format=lcov -ignore-filename-regex='(tests|build|node_modules|gtest|gmock|\\.vcpkg|/usr)/' > lcov.info && npm run coverage:cpp:summary",
|
|
29
|
+
"coverage:cpp": "npm run coverage:cpp:build && npm run coverage:cpp:run && npm run coverage:cpp:report",
|
|
30
|
+
"test:all": "npm run test && npm run test:cpp"
|
|
31
|
+
|
|
22
32
|
},
|
|
23
33
|
"files": [
|
|
24
34
|
"binding.js",
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
],
|
|
8
8
|
"current_versions": [
|
|
9
9
|
{
|
|
10
|
-
"version": "0.1.
|
|
10
|
+
"version": "0.1.3"
|
|
11
11
|
}
|
|
12
12
|
],
|
|
13
13
|
"exported_symbols": [
|
|
@@ -346,6 +346,7 @@
|
|
|
346
346
|
"__ZN4absl12lts_2024072213base_internal11FastTypeTagINSt3__16vectorINS3_12basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEENS8_ISA_EEEEE9dummy_varE",
|
|
347
347
|
"__ZN28qvac_lib_inference_addon_cpp6logger8JsLogger6state_E",
|
|
348
348
|
"__ZN4absl12lts_2024072213base_internal11FastTypeTagIxE9dummy_varE",
|
|
349
|
+
"__ZN28qvac_lib_inference_addon_cpp6logger8JsLogger13logger_async_E",
|
|
349
350
|
"__ZGVN28qvac_lib_inference_addon_cpp6logger8JsLogger10log_queue_E",
|
|
350
351
|
"__ZZN4absl12lts_2024072218container_internal12raw_hash_setINS1_17FlatHashMapPolicyINS0_11string_viewENSt3__14pairIS4_S4_EEEENS1_10StringHashENS1_8StringEqENS5_9allocatorINS6_IKS4_S7_EEEEE18GetPolicyFunctionsEvE5value",
|
|
351
352
|
"__ZN4absl12lts_2024072213base_internal11FastTypeTagIlE9dummy_varE",
|
|
@@ -357,6 +358,7 @@
|
|
|
357
358
|
"__ZN4absl12lts_2024072213base_internal11FastTypeTagIdE9dummy_varE",
|
|
358
359
|
"__ZN4absl12lts_2024072213base_internal11FastTypeTagItE9dummy_varE",
|
|
359
360
|
"__ZGVN28qvac_lib_inference_addon_cpp11JsInterfaceINS_5AddonIN35qvac_lib_inference_addon_mlc_marian16TranslationModelEEEE10instances_E",
|
|
361
|
+
"__ZN28qvac_lib_inference_addon_cpp6logger8JsLogger16async_initiated_E",
|
|
360
362
|
"__ZGVZN6google8protobuf8internal12ShutdownData3getEvE4data",
|
|
361
363
|
"__ZN13sentencepiece10normalizer10Normalizer19kMaxTrieResultsSizeE",
|
|
362
364
|
"__ZN4absl12lts_2024072213base_internal11FastTypeTagImE9dummy_varE",
|
|
@@ -389,6 +391,7 @@
|
|
|
389
391
|
"__ZN6google8protobuf22Base64UnescapeInternalEPKciPciPKa",
|
|
390
392
|
"__ZNK13sentencepiece26ImmutableSentencePieceText6piecesEv",
|
|
391
393
|
"__ZNK6google8protobuf8internal12ExtensionSet9Extension53InternalSerializeMessageSetItemWithCachedSizesToArrayEPKNS0_11MessageLiteEPKS2_iPhPNS0_2io19EpsCopyOutputStreamE",
|
|
394
|
+
"__ZN35qvac_lib_inference_addon_mlc_marian16TranslationModel9setUseGpuEb",
|
|
392
395
|
"__ZN13sentencepiece7unigram7LatticeC2Ev",
|
|
393
396
|
"__ZN4absl12lts_2024072215CommandLineFlag9ParseFromENS0_11string_viewEPNSt3__112basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEE",
|
|
394
397
|
"_ggml_backend_dev_count",
|
|
@@ -420,6 +423,7 @@
|
|
|
420
423
|
"__ZN4absl12lts_2024072213AbslParseFlagENS0_11string_viewEPNS0_11LogSeverityEPNSt3__112basic_stringIcNS4_11char_traitsIcEENS4_9allocatorIcEEEE",
|
|
421
424
|
"__ZN4absl12lts_2024072214flags_internal7UnparseEd",
|
|
422
425
|
"_ggml_rope_custom",
|
|
426
|
+
"__ZNK35qvac_lib_inference_addon_mlc_marian16TranslationModel9getConfigEv",
|
|
423
427
|
"__ZN6google8protobuf2io16CodedInputStream7RefreshEv",
|
|
424
428
|
"__ZN4absl12lts_2024072219str_format_internal13FlagsToStringENS1_5FlagsE",
|
|
425
429
|
"__ZNK4absl12lts_2024072213time_internal4cctz9time_zone11descriptionEv",
|
|
@@ -498,6 +502,7 @@
|
|
|
498
502
|
"_ggml_cont_1d",
|
|
499
503
|
"__ZN4ggml3cpu13tensor_traitsD2Ev",
|
|
500
504
|
"_ggml_compute_forward_repeat",
|
|
505
|
+
"__ZN35qvac_lib_inference_addon_mlc_marian16TranslationModel13unloadWeightsEv",
|
|
501
506
|
"__ZNK13sentencepiece7unigram7Lattice7surfaceEi",
|
|
502
507
|
"__Z21nmt_get_runtime_statsP11nmt_contextPdS1_Pi",
|
|
503
508
|
"__ZN6google8protobuf8internal16ReadSizeFallbackEPKcj",
|
|
@@ -780,7 +785,6 @@
|
|
|
780
785
|
"__ZN6google8protobuf8internal12FieldSkipper11SkipMessageEPNS0_2io16CodedInputStreamE",
|
|
781
786
|
"_ggml_scale",
|
|
782
787
|
"__ZN6google8protobuf8internal12ExtensionSetC1EPNS0_5ArenaE",
|
|
783
|
-
"__ZN28qvac_lib_inference_addon_cpp5AddonIN35qvac_lib_inference_addon_mlc_marian16TranslationModelEEC2IJP8js_env_sNSt3__117reference_wrapperIKNS7_12basic_stringIcNS7_11char_traitsIcEENS7_9allocatorIcEEEEEENS7_13unordered_mapISE_NS7_7variantIJdxEEENS7_4hashISE_EENS7_8equal_toISE_EENSC_INS7_4pairISF_SJ_EEEEEEP10js_value_sST_ST_EEEDpT_",
|
|
784
788
|
"__ZN6google8protobuf8internal17PackedInt32ParserEPvPKcPNS1_12ParseContextE",
|
|
785
789
|
"__ZN13sentencepiece17SentencePieceTextC1EPN6google8protobuf5ArenaEb",
|
|
786
790
|
"__ZN6google8protobuf11LogSilencerD1Ev",
|
|
@@ -840,7 +844,6 @@
|
|
|
840
844
|
"__ZN4absl12lts_2024072213time_internal4cctz9time_zone4ImplC1ERKNSt3__112basic_stringIcNS5_11char_traitsIcEENS5_9allocatorIcEEEE",
|
|
841
845
|
"_ggml_set_1d",
|
|
842
846
|
"__ZN6google8protobuf8internal23SerializeNotImplementedEi",
|
|
843
|
-
"__ZN28qvac_lib_inference_addon_cpp5AddonIN35qvac_lib_inference_addon_mlc_marian16TranslationModelEEC1IJP8js_env_sNSt3__117reference_wrapperIKNS7_12basic_stringIcNS7_11char_traitsIcEENS7_9allocatorIcEEEEEENS7_13unordered_mapISE_NS7_7variantIJdxEEENS7_4hashISE_EENS7_8equal_toISE_EENSC_INS7_4pairISF_SJ_EEEEEEP10js_value_sST_ST_EEEDpT_",
|
|
844
847
|
"__ZN4absl12lts_202407227uint128C2Ef",
|
|
845
848
|
"__ZN4absl12lts_2024072214flags_internal23RegisterCommandLineFlagERNS0_15CommandLineFlagEPKc",
|
|
846
849
|
"__ZN6google8protobuf8internal12FieldSkipper15SkipUnknownEnumEii",
|
|
@@ -1220,13 +1223,13 @@
|
|
|
1220
1223
|
"_ggml_backend_sched_set_tensor_backend",
|
|
1221
1224
|
"__ZN4absl12lts_2024072214flags_internal13AbslParseFlagENS0_11string_viewEPtPNSt3__112basic_stringIcNS4_11char_traitsIcEENS4_9allocatorIcEEEE",
|
|
1222
1225
|
"__ZNK6google8protobuf2io18IstreamInputStream9ByteCountEv",
|
|
1223
|
-
"__ZN6google8protobuf2io16FileOutputStream23CopyingFileOutputStreamD0Ev",
|
|
1224
1226
|
"__ZN13sentencepiece10ModelProtoC1EPN6google8protobuf5ArenaEb",
|
|
1225
1227
|
"__ZN13sentencepiece4util6StatusC2Ev",
|
|
1226
1228
|
"_ggml_cpu_has_avx512_vbmi",
|
|
1227
|
-
"
|
|
1229
|
+
"__ZN6google8protobuf2io16FileOutputStream23CopyingFileOutputStreamD0Ev",
|
|
1228
1230
|
"__ZN6google8protobuf10SimpleItoaEl",
|
|
1229
1231
|
"__ZN4absl12lts_2024072214flags_internal19NumLeakedFlagValuesEv",
|
|
1232
|
+
"_ggml_backend_reg_name",
|
|
1230
1233
|
"_ggml_vec_dot_tq1_0_q8_K_generic",
|
|
1231
1234
|
"_ggml_rope_ext_back",
|
|
1232
1235
|
"__ZN4absl12lts_2024072218container_internal17ClearBackingArrayERNS1_12CommonFieldsERKNS1_15PolicyFunctionsEbb",
|
|
@@ -1547,6 +1550,7 @@
|
|
|
1547
1550
|
"__ZN28qvac_lib_inference_addon_cpp5AddonIN35qvac_lib_inference_addon_mlc_marian16TranslationModelEE4loadIJNSt3__112basic_stringIcNS5_11char_traitsIcEENS5_9allocatorIcEEEENS5_13unordered_mapISB_NS5_7variantIJdxEEENS5_4hashISB_EENS5_8equal_toISB_EENS9_INS5_4pairIKSB_SE_EEEEEEEEEvDpT_",
|
|
1548
1551
|
"__ZN6google8protobuf8internal12ExtensionSet9SetUInt32EihjPKNS0_15FieldDescriptorE",
|
|
1549
1552
|
"__ZNK6google8protobuf14FatalException4whatEv",
|
|
1553
|
+
"__ZN28qvac_lib_inference_addon_cpp5AddonIN35qvac_lib_inference_addon_mlc_marian16TranslationModelEEC2IJP8js_env_sNSt3__117reference_wrapperIKNS7_12basic_stringIcNS7_11char_traitsIcEENS7_9allocatorIcEEEEEENS7_13unordered_mapISE_NS7_7variantIJdxEEENS7_4hashISE_EENS7_8equal_toISE_EENSC_INS7_4pairISF_SJ_EEEEEEbP10js_value_sST_ST_EEEDpT_",
|
|
1550
1554
|
"__ZN6google8protobuf8internal14WireFormatLite22WriteGroupMaybeToArrayEiRKNS0_11MessageLiteEPNS0_2io17CodedOutputStreamE",
|
|
1551
1555
|
"_ggml_is_contiguous_0",
|
|
1552
1556
|
"__ZN6google8protobuf8internal12ExtensionSet11ReleaseLastEi",
|
|
@@ -2067,6 +2071,7 @@
|
|
|
2067
2071
|
"__ZN4absl12lts_2024072219str_format_internal16ParsedFormatBaseC1ENS0_11string_viewEbSt16initializer_listINS0_23FormatConversionCharSetEE",
|
|
2068
2072
|
"__ZN13sentencepiece17SentencePieceText12InternalSwapEPS0_",
|
|
2069
2073
|
"_ggml_rope_multi",
|
|
2074
|
+
"__ZN35qvac_lib_inference_addon_mlc_marian13releaseLoggerEP8js_env_sP18js_callback_info_s",
|
|
2070
2075
|
"__ZN35qvac_lib_inference_addon_mlc_marian16TranslationModel6reloadEv",
|
|
2071
2076
|
"__ZN6google8protobuf2io16ArrayInputStreamC1EPKvii",
|
|
2072
2077
|
"__ZN6google8protobuf4util15status_internal17IsUnauthenticatedERKNS2_6StatusE",
|
|
@@ -2078,11 +2083,11 @@
|
|
|
2078
2083
|
"_quantize_row_q5_0",
|
|
2079
2084
|
"_ggml_backend_sched_set_eval_callback",
|
|
2080
2085
|
"__ZN13sentencepiece7unigram7LatticeC1Ev",
|
|
2086
|
+
"__ZN35qvac_lib_inference_addon_mlc_marian9setLoggerEP8js_env_sP18js_callback_info_s",
|
|
2081
2087
|
"__ZN4absl12lts_2024072214flags_internal16FinalizeRegistryEv",
|
|
2082
2088
|
"__ZN6google8protobuf8internal13VerifyVersionEiiPKc",
|
|
2083
2089
|
"__ZN13sentencepiece22SentencePieceProcessorD1Ev",
|
|
2084
2090
|
"__ZN6google8protobuf8internal24InitProtobufDefaultsSlowEv",
|
|
2085
|
-
"_ggml_scale_inplace",
|
|
2086
2091
|
"__ZNK6google8protobuf20stringpiece_internal11StringPiece17find_first_not_ofES2_m",
|
|
2087
2092
|
"__ZN4absl12lts_2024072214flags_internal21PrivateHandleAccessor18ValidateInputValueERKNS0_15CommandLineFlagENS0_11string_viewE",
|
|
2088
2093
|
"__ZN4absl12lts_2024072214flags_internal26ShortProgramInvocationNameEv",
|
|
@@ -2091,6 +2096,7 @@
|
|
|
2091
2096
|
"__ZN14beam_candidateC1ERKNSt3__16vectorIiNS0_9allocatorIiEEEEf",
|
|
2092
2097
|
"_ggml_gelu_quick_inplace",
|
|
2093
2098
|
"__ZNK13sentencepiece17SentencePieceText12ByteSizeLongEv",
|
|
2099
|
+
"_ggml_scale_inplace",
|
|
2094
2100
|
"_ggml_dup_inplace",
|
|
2095
2101
|
"__ZN4absl12lts_2024072214flags_internal21PrivateHandleAccessor24IsSpecifiedOnCommandLineERKNS0_15CommandLineFlagE",
|
|
2096
2102
|
"_ggml_new_tensor_2d",
|
|
@@ -2603,6 +2609,7 @@
|
|
|
2603
2609
|
"__ZN6google8protobuf8internal24RepeatedStringTypeTraits23GetDefaultRepeatedFieldEv",
|
|
2604
2610
|
"_ggml_unary_op_name",
|
|
2605
2611
|
"__ZN13sentencepiece10ModelProto9MergeFromERKS0_",
|
|
2612
|
+
"__ZN28qvac_lib_inference_addon_cpp5AddonIN35qvac_lib_inference_addon_mlc_marian16TranslationModelEEC1IJP8js_env_sNSt3__117reference_wrapperIKNS7_12basic_stringIcNS7_11char_traitsIcEENS7_9allocatorIcEEEEEENS7_13unordered_mapISE_NS7_7variantIJdxEEENS7_4hashISE_EENS7_8equal_toISE_EENSC_INS7_4pairISF_SJ_EEEEEEbP10js_value_sST_ST_EEEDpT_",
|
|
2606
2613
|
"__ZN4absl12lts_2024072219str_format_internal10AppendPackEPNSt3__112basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEENS1_21UntypedFormatSpecImplENS0_4SpanIKNS1_13FormatArgImplEEE",
|
|
2607
2614
|
"__ZN4absl12lts_202407225MutexD2Ev",
|
|
2608
2615
|
"_ggml_backend_dev_backend_reg",
|
|
@@ -3077,6 +3084,7 @@
|
|
|
3077
3084
|
"__ZN6google8protobuf13RepeatedFieldIdE18AddAlreadyReservedEv",
|
|
3078
3085
|
"__ZN6google8protobuf13RepeatedFieldIyE7ReserveEi",
|
|
3079
3086
|
"__ZN6google8protobuf13RepeatedFieldIbEaSERKS2_",
|
|
3087
|
+
"__ZZN28qvac_lib_inference_addon_cpp6logger8JsLogger13releaseLoggerEP8js_env_sP18js_callback_info_sENUlP11uv_handle_sE_8__invokeES7_",
|
|
3080
3088
|
"__ZN4absl12lts_2024072216strings_internal11BigUnsignedILi84EE10MultiplyByEj",
|
|
3081
3089
|
"__ZN4absl12lts_2024072216strings_internal11BigUnsignedILi4EE17ReadFloatMantissaERKNS1_11ParsedFloatEi",
|
|
3082
3090
|
"__ZN6google8protobuf8internal16RepeatedIteratorIfEppEv",
|
|
@@ -3145,6 +3153,7 @@
|
|
|
3145
3153
|
"__ZNK6google8protobuf13RepeatedFieldIdE4dataEv",
|
|
3146
3154
|
"__ZN6google8protobuf8internal16RepeatedIteratorIxEpLEl",
|
|
3147
3155
|
"__ZN6google8protobuf8internal16RepeatedIteratorIdEmmEi",
|
|
3156
|
+
"__ZN28qvac_lib_inference_addon_cpp6logger8JsLogger13asyncCallbackEP10uv_async_s",
|
|
3148
3157
|
"__ZN6google8protobuf8internal16RepeatedIteratorIxEmIEl",
|
|
3149
3158
|
"__ZN6google8protobuf13RepeatedFieldIdE4rendEv",
|
|
3150
3159
|
"__ZN6google8protobuf13RepeatedFieldIfE6ResizeEiRKf",
|
|
@@ -3507,6 +3516,7 @@
|
|
|
3507
3516
|
"__ZN6google8protobuf13RepeatedFieldIbEC2EOS2_",
|
|
3508
3517
|
"__ZN6google8protobuf8internal16RepeatedIteratorIbEpLEl",
|
|
3509
3518
|
"__ZN6google8protobuf13RepeatedFieldIfE15UnsafeArenaSwapEPS2_",
|
|
3519
|
+
"__ZZZN28qvac_lib_inference_addon_cpp6logger8JsLogger9setLoggerEP8js_env_sP18js_callback_info_sENKUlvE0_clEvENUlP11uv_handle_sE_8__invokeES8_",
|
|
3510
3520
|
"__ZNK6google8protobuf8internal16RepeatedIteratorIbEptEv",
|
|
3511
3521
|
"__ZNK6google8protobuf13RepeatedFieldIdE8CapacityEv",
|
|
3512
3522
|
"__ZN6google8protobuf13RepeatedFieldIfE5eraseENS0_8internal16RepeatedIteratorIKfEES6_",
|
|
Binary file
|
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
],
|
|
8
8
|
"current_versions": [
|
|
9
9
|
{
|
|
10
|
-
"version": "0.1.
|
|
10
|
+
"version": "0.1.3"
|
|
11
11
|
}
|
|
12
12
|
],
|
|
13
13
|
"exported_symbols": [
|
|
@@ -361,6 +361,7 @@
|
|
|
361
361
|
"__ZTSN13sentencepiece10filesystem17PosixReadableFileE",
|
|
362
362
|
"__ZTIN6google8protobuf16RepeatedPtrFieldINSt3__112basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEEEE",
|
|
363
363
|
"__ZTSN6google8protobuf8internal12ExtensionSet8KeyValueE",
|
|
364
|
+
"__ZN28qvac_lib_inference_addon_cpp6logger8JsLogger13logger_async_E",
|
|
364
365
|
"__ZGVN28qvac_lib_inference_addon_cpp6logger8JsLogger10log_queue_E",
|
|
365
366
|
"__ZZN4absl12lts_2024072218container_internal12raw_hash_setINS1_17FlatHashMapPolicyINS0_11string_viewENSt3__14pairIS4_S4_EEEENS1_10StringHashENS1_8StringEqENS5_9allocatorINS6_IKS4_S7_EEEEE18GetPolicyFunctionsEvE5value",
|
|
366
367
|
"__ZTSN4ggml3cpu6repack13tensor_traitsI10block_q4_0Lx4ELx4EL9ggml_type8EEE",
|
|
@@ -422,10 +423,12 @@
|
|
|
422
423
|
"__ZTIN6google8protobuf2io19CopyingOutputStreamE",
|
|
423
424
|
"__ZTIN13sentencepiece5model8FreeListINS_7unigram7Lattice4NodeEEE",
|
|
424
425
|
"__ZTSNSt3__120__shared_ptr_emplaceIN13sentencepiece22NBestSentencePieceTextENS_9allocatorIS2_EEEE",
|
|
426
|
+
"__ZTSNSt3__120__shared_ptr_emplaceIN28qvac_lib_inference_addon_cpp6logger8JsLogger5StateENS_9allocatorIS4_EEEE",
|
|
425
427
|
"__ZTSN4ggml3cpu6repack13tensor_traitsI10block_q4_KLx8ELx8EL9ggml_type15EEE",
|
|
426
428
|
"__ZTSN13sentencepiece10filesystem17PosixWritableFileE",
|
|
427
429
|
"__ZTSNSt3__110__function6__baseIFvRN4absl12lts_2024072215CommandLineFlagEEEE",
|
|
428
430
|
"__ZTSNSt3__110__function6__baseIFP11ggml_cgraphvEEE",
|
|
431
|
+
"__ZN28qvac_lib_inference_addon_cpp6logger8JsLogger16async_initiated_E",
|
|
429
432
|
"__ZTSN6google8protobuf13RepeatedFieldIyEE",
|
|
430
433
|
"__ZTSN6google8protobuf13RepeatedFieldIfEE",
|
|
431
434
|
"__ZTSNSt3__110__function6__funcIZN4absl12lts_2024072214flags_internal13FlagSaverImpl16SaveFromRegistryEvEUlRNS3_15CommandLineFlagEE_NS_9allocatorIS8_EEFvS7_EEE",
|
|
@@ -433,6 +436,7 @@
|
|
|
433
436
|
"__ZTIN13sentencepiece10filesystem12ReadableFileE",
|
|
434
437
|
"__ZGVZN6google8protobuf8internal12ShutdownData3getEvE4data",
|
|
435
438
|
"__ZTIFbN4absl12lts_2024072211string_viewEE",
|
|
439
|
+
"__ZTINSt3__120__shared_ptr_emplaceIN28qvac_lib_inference_addon_cpp6logger8JsLogger5StateENS_9allocatorIS4_EEEE",
|
|
436
440
|
"__ZTSN13sentencepiece10filesystem12ReadableFileE",
|
|
437
441
|
"__ZN13sentencepiece10normalizer10Normalizer19kMaxTrieResultsSizeE",
|
|
438
442
|
"__ZTIN6google8protobuf8internal16InternalMetadata9ContainerINSt3__112basic_stringIcNS4_11char_traitsIcEENS4_9allocatorIcEEEEEE",
|
|
@@ -502,6 +506,7 @@
|
|
|
502
506
|
"__ZN6google8protobuf22Base64UnescapeInternalEPKciPciPKa",
|
|
503
507
|
"__ZNK13sentencepiece26ImmutableSentencePieceText6piecesEv",
|
|
504
508
|
"__ZNK6google8protobuf8internal12ExtensionSet9Extension53InternalSerializeMessageSetItemWithCachedSizesToArrayEPKNS0_11MessageLiteEPKS2_iPhPNS0_2io19EpsCopyOutputStreamE",
|
|
509
|
+
"__ZN35qvac_lib_inference_addon_mlc_marian16TranslationModel9setUseGpuEb",
|
|
505
510
|
"__ZN13sentencepiece7unigram7LatticeC2Ev",
|
|
506
511
|
"__ZN4absl12lts_2024072215CommandLineFlag9ParseFromENS0_11string_viewEPNSt3__112basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEE",
|
|
507
512
|
"_ggml_backend_dev_count",
|
|
@@ -533,6 +538,7 @@
|
|
|
533
538
|
"__ZN4absl12lts_2024072213AbslParseFlagENS0_11string_viewEPNS0_11LogSeverityEPNSt3__112basic_stringIcNS4_11char_traitsIcEENS4_9allocatorIcEEEE",
|
|
534
539
|
"__ZN4absl12lts_2024072214flags_internal7UnparseEd",
|
|
535
540
|
"_ggml_rope_custom",
|
|
541
|
+
"__ZNK35qvac_lib_inference_addon_mlc_marian16TranslationModel9getConfigEv",
|
|
536
542
|
"__ZN6google8protobuf2io16CodedInputStream7RefreshEv",
|
|
537
543
|
"__ZN4absl12lts_2024072219str_format_internal13FlagsToStringENS1_5FlagsE",
|
|
538
544
|
"__ZNK4absl12lts_2024072213time_internal4cctz9time_zone11descriptionEv",
|
|
@@ -611,6 +617,7 @@
|
|
|
611
617
|
"_ggml_cont_1d",
|
|
612
618
|
"__ZN4ggml3cpu13tensor_traitsD2Ev",
|
|
613
619
|
"_ggml_compute_forward_repeat",
|
|
620
|
+
"__ZN35qvac_lib_inference_addon_mlc_marian16TranslationModel13unloadWeightsEv",
|
|
614
621
|
"__ZNK13sentencepiece7unigram7Lattice7surfaceEi",
|
|
615
622
|
"__Z21nmt_get_runtime_statsP11nmt_contextPdS1_Pi",
|
|
616
623
|
"__ZN6google8protobuf8internal16ReadSizeFallbackEPKcj",
|
|
@@ -892,7 +899,6 @@
|
|
|
892
899
|
"__ZN6google8protobuf8internal12FieldSkipper11SkipMessageEPNS0_2io16CodedInputStreamE",
|
|
893
900
|
"_ggml_scale",
|
|
894
901
|
"__ZN6google8protobuf8internal12ExtensionSetC1EPNS0_5ArenaE",
|
|
895
|
-
"__ZN28qvac_lib_inference_addon_cpp5AddonIN35qvac_lib_inference_addon_mlc_marian16TranslationModelEEC2IJP8js_env_sNSt3__117reference_wrapperIKNS7_12basic_stringIcNS7_11char_traitsIcEENS7_9allocatorIcEEEEEENS7_13unordered_mapISE_NS7_7variantIJdxEEENS7_4hashISE_EENS7_8equal_toISE_EENSC_INS7_4pairISF_SJ_EEEEEEP10js_value_sST_ST_EEEDpT_",
|
|
896
902
|
"__ZN6google8protobuf8internal17PackedInt32ParserEPvPKcPNS1_12ParseContextE",
|
|
897
903
|
"__ZN13sentencepiece17SentencePieceTextC1EPN6google8protobuf5ArenaEb",
|
|
898
904
|
"__ZN6google8protobuf11LogSilencerD1Ev",
|
|
@@ -952,7 +958,6 @@
|
|
|
952
958
|
"__ZN4absl12lts_2024072213time_internal4cctz9time_zone4ImplC1ERKNSt3__112basic_stringIcNS5_11char_traitsIcEENS5_9allocatorIcEEEE",
|
|
953
959
|
"_ggml_set_1d",
|
|
954
960
|
"__ZN6google8protobuf8internal23SerializeNotImplementedEi",
|
|
955
|
-
"__ZN28qvac_lib_inference_addon_cpp5AddonIN35qvac_lib_inference_addon_mlc_marian16TranslationModelEEC1IJP8js_env_sNSt3__117reference_wrapperIKNS7_12basic_stringIcNS7_11char_traitsIcEENS7_9allocatorIcEEEEEENS7_13unordered_mapISE_NS7_7variantIJdxEEENS7_4hashISE_EENS7_8equal_toISE_EENSC_INS7_4pairISF_SJ_EEEEEEP10js_value_sST_ST_EEEDpT_",
|
|
956
961
|
"__ZN4absl12lts_202407227uint128C2Ef",
|
|
957
962
|
"__ZN4absl12lts_2024072214flags_internal23RegisterCommandLineFlagERNS0_15CommandLineFlagEPKc",
|
|
958
963
|
"__ZN6google8protobuf8internal12FieldSkipper15SkipUnknownEnumEii",
|
|
@@ -1332,14 +1337,14 @@
|
|
|
1332
1337
|
"__ZN4absl12lts_2024072214flags_internal13AbslParseFlagENS0_11string_viewEPtPNSt3__112basic_stringIcNS4_11char_traitsIcEENS4_9allocatorIcEEEE",
|
|
1333
1338
|
"_ggml_gemv_q4_K_8x8_q8_K_generic",
|
|
1334
1339
|
"__ZNK6google8protobuf2io18IstreamInputStream9ByteCountEv",
|
|
1335
|
-
"__ZN6google8protobuf2io16FileOutputStream23CopyingFileOutputStreamD0Ev",
|
|
1336
1340
|
"__ZN13sentencepiece10ModelProtoC1EPN6google8protobuf5ArenaEb",
|
|
1337
1341
|
"__ZN13sentencepiece4util6StatusC2Ev",
|
|
1338
1342
|
"_ggml_cpu_has_avx512_vbmi",
|
|
1339
|
-
"
|
|
1343
|
+
"__ZN6google8protobuf2io16FileOutputStream23CopyingFileOutputStreamD0Ev",
|
|
1340
1344
|
"__ZN6google8protobuf10SimpleItoaEl",
|
|
1341
1345
|
"__ZN4absl12lts_2024072214flags_internal19NumLeakedFlagValuesEv",
|
|
1342
1346
|
"_ggml_vec_dot_tq1_0_q8_K_generic",
|
|
1347
|
+
"_ggml_backend_reg_name",
|
|
1343
1348
|
"_ggml_rope_ext_back",
|
|
1344
1349
|
"__ZN4absl12lts_2024072218container_internal17ClearBackingArrayERNS1_12CommonFieldsERKNS1_15PolicyFunctionsEbb",
|
|
1345
1350
|
"_ggml_backend_load_all",
|
|
@@ -1657,6 +1662,7 @@
|
|
|
1657
1662
|
"__ZN28qvac_lib_inference_addon_cpp5AddonIN35qvac_lib_inference_addon_mlc_marian16TranslationModelEE4loadIJNSt3__112basic_stringIcNS5_11char_traitsIcEENS5_9allocatorIcEEEENS5_13unordered_mapISB_NS5_7variantIJdxEEENS5_4hashISB_EENS5_8equal_toISB_EENS9_INS5_4pairIKSB_SE_EEEEEEEEEvDpT_",
|
|
1658
1663
|
"__ZN6google8protobuf8internal12ExtensionSet9SetUInt32EihjPKNS0_15FieldDescriptorE",
|
|
1659
1664
|
"__ZNK6google8protobuf14FatalException4whatEv",
|
|
1665
|
+
"__ZN28qvac_lib_inference_addon_cpp5AddonIN35qvac_lib_inference_addon_mlc_marian16TranslationModelEEC2IJP8js_env_sNSt3__117reference_wrapperIKNS7_12basic_stringIcNS7_11char_traitsIcEENS7_9allocatorIcEEEEEENS7_13unordered_mapISE_NS7_7variantIJdxEEENS7_4hashISE_EENS7_8equal_toISE_EENSC_INS7_4pairISF_SJ_EEEEEEbP10js_value_sST_ST_EEEDpT_",
|
|
1660
1666
|
"__ZN6google8protobuf8internal14WireFormatLite22WriteGroupMaybeToArrayEiRKNS0_11MessageLiteEPNS0_2io17CodedOutputStreamE",
|
|
1661
1667
|
"_ggml_is_contiguous_0",
|
|
1662
1668
|
"__ZN6google8protobuf8internal12ExtensionSet11ReleaseLastEi",
|
|
@@ -2176,6 +2182,7 @@
|
|
|
2176
2182
|
"__ZN4absl12lts_2024072219str_format_internal16ParsedFormatBaseC1ENS0_11string_viewEbSt16initializer_listINS0_23FormatConversionCharSetEE",
|
|
2177
2183
|
"__ZN13sentencepiece17SentencePieceText12InternalSwapEPS0_",
|
|
2178
2184
|
"_ggml_rope_multi",
|
|
2185
|
+
"__ZN35qvac_lib_inference_addon_mlc_marian13releaseLoggerEP8js_env_sP18js_callback_info_s",
|
|
2179
2186
|
"__ZN35qvac_lib_inference_addon_mlc_marian16TranslationModel6reloadEv",
|
|
2180
2187
|
"__ZN6google8protobuf2io16ArrayInputStreamC1EPKvii",
|
|
2181
2188
|
"__ZN6google8protobuf4util15status_internal17IsUnauthenticatedERKNS2_6StatusE",
|
|
@@ -2187,11 +2194,11 @@
|
|
|
2187
2194
|
"_quantize_row_q5_0",
|
|
2188
2195
|
"_ggml_backend_sched_set_eval_callback",
|
|
2189
2196
|
"__ZN13sentencepiece7unigram7LatticeC1Ev",
|
|
2197
|
+
"__ZN35qvac_lib_inference_addon_mlc_marian9setLoggerEP8js_env_sP18js_callback_info_s",
|
|
2190
2198
|
"__ZN4absl12lts_2024072214flags_internal16FinalizeRegistryEv",
|
|
2191
2199
|
"__ZN6google8protobuf8internal13VerifyVersionEiiPKc",
|
|
2192
2200
|
"__ZN13sentencepiece22SentencePieceProcessorD1Ev",
|
|
2193
2201
|
"__ZN6google8protobuf8internal24InitProtobufDefaultsSlowEv",
|
|
2194
|
-
"_ggml_scale_inplace",
|
|
2195
2202
|
"__ZNK6google8protobuf20stringpiece_internal11StringPiece17find_first_not_ofES2_m",
|
|
2196
2203
|
"__ZN4absl12lts_2024072214flags_internal21PrivateHandleAccessor18ValidateInputValueERKNS0_15CommandLineFlagENS0_11string_viewE",
|
|
2197
2204
|
"__ZN4absl12lts_2024072214flags_internal26ShortProgramInvocationNameEv",
|
|
@@ -2200,6 +2207,7 @@
|
|
|
2200
2207
|
"__ZN14beam_candidateC1ERKNSt3__16vectorIiNS0_9allocatorIiEEEEf",
|
|
2201
2208
|
"_ggml_gelu_quick_inplace",
|
|
2202
2209
|
"__ZNK13sentencepiece17SentencePieceText12ByteSizeLongEv",
|
|
2210
|
+
"_ggml_scale_inplace",
|
|
2203
2211
|
"_ggml_dup_inplace",
|
|
2204
2212
|
"__ZN4absl12lts_2024072214flags_internal21PrivateHandleAccessor24IsSpecifiedOnCommandLineERKNS0_15CommandLineFlagE",
|
|
2205
2213
|
"_ggml_new_tensor_2d",
|
|
@@ -2712,6 +2720,7 @@
|
|
|
2712
2720
|
"__ZN6google8protobuf8internal24RepeatedStringTypeTraits23GetDefaultRepeatedFieldEv",
|
|
2713
2721
|
"_ggml_unary_op_name",
|
|
2714
2722
|
"__ZN13sentencepiece10ModelProto9MergeFromERKS0_",
|
|
2723
|
+
"__ZN28qvac_lib_inference_addon_cpp5AddonIN35qvac_lib_inference_addon_mlc_marian16TranslationModelEEC1IJP8js_env_sNSt3__117reference_wrapperIKNS7_12basic_stringIcNS7_11char_traitsIcEENS7_9allocatorIcEEEEEENS7_13unordered_mapISE_NS7_7variantIJdxEEENS7_4hashISE_EENS7_8equal_toISE_EENSC_INS7_4pairISF_SJ_EEEEEEbP10js_value_sST_ST_EEEDpT_",
|
|
2715
2724
|
"_ggml_gemm_q4_K_8x8_q8_K_generic",
|
|
2716
2725
|
"__ZN4absl12lts_2024072219str_format_internal10AppendPackEPNSt3__112basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEENS1_21UntypedFormatSpecImplENS0_4SpanIKNS1_13FormatArgImplEEE",
|
|
2717
2726
|
"__ZN4absl12lts_202407225MutexD2Ev",
|
|
@@ -2877,13 +2886,13 @@
|
|
|
2877
2886
|
"__ZN6google8protobuf2io17ArrayOutputStream4NextEPPvPi",
|
|
2878
2887
|
"__ZN4absl12lts_2024072213time_internal4cctz9time_zone4ImplC2ERKNSt3__112basic_stringIcNS5_11char_traitsIcEENS5_9allocatorIcEEEE",
|
|
2879
2888
|
"__Z37qvacLibInferenceAddonMlcMarianExportsP8js_env_sP10js_value_s",
|
|
2880
|
-
"_ggml_backend_reg_get_proc_address",
|
|
2881
|
-
"_ggml_cpu_has_dotprod",
|
|
2882
2889
|
"__ZNK4absl12lts_2024072213time_internal4cctz12TimeZoneLibC11DescriptionEv",
|
|
2890
|
+
"_ggml_backend_reg_get_proc_address",
|
|
2883
2891
|
"_ggml_compute_forward_rms_norm",
|
|
2884
2892
|
"_ggml_mul_inplace",
|
|
2885
2893
|
"__ZNK13sentencepiece10normalizer10Normalizer9NormalizeEN4absl12lts_2024072211string_viewEPNSt3__112basic_stringIcNS5_11char_traitsIcEENS5_9allocatorIcEEEEPNS5_6vectorImNS9_ImEEEE",
|
|
2886
2894
|
"__ZN13sentencepiece10ModelProto8CopyFromERKS0_",
|
|
2895
|
+
"_ggml_cpu_has_dotprod",
|
|
2887
2896
|
"_ggml_unravel_index",
|
|
2888
2897
|
"_ggml_backend_dev_description",
|
|
2889
2898
|
"_ggml_conv_1d_dw",
|
|
@@ -3186,6 +3195,7 @@
|
|
|
3186
3195
|
"__ZN6google8protobuf13RepeatedFieldIdE18AddAlreadyReservedEv",
|
|
3187
3196
|
"__ZN6google8protobuf13RepeatedFieldIyE7ReserveEi",
|
|
3188
3197
|
"__ZN6google8protobuf13RepeatedFieldIbEaSERKS2_",
|
|
3198
|
+
"__ZZN28qvac_lib_inference_addon_cpp6logger8JsLogger13releaseLoggerEP8js_env_sP18js_callback_info_sENUlP11uv_handle_sE_8__invokeES7_",
|
|
3189
3199
|
"__ZN4absl12lts_2024072216strings_internal11BigUnsignedILi84EE10MultiplyByEj",
|
|
3190
3200
|
"__ZN4absl12lts_2024072216strings_internal11BigUnsignedILi4EE17ReadFloatMantissaERKNS1_11ParsedFloatEi",
|
|
3191
3201
|
"__ZN6google8protobuf8internal16RepeatedIteratorIfEppEv",
|
|
@@ -3254,6 +3264,7 @@
|
|
|
3254
3264
|
"__ZNK6google8protobuf13RepeatedFieldIdE4dataEv",
|
|
3255
3265
|
"__ZN6google8protobuf8internal16RepeatedIteratorIxEpLEl",
|
|
3256
3266
|
"__ZN6google8protobuf8internal16RepeatedIteratorIdEmmEi",
|
|
3267
|
+
"__ZN28qvac_lib_inference_addon_cpp6logger8JsLogger13asyncCallbackEP10uv_async_s",
|
|
3257
3268
|
"__ZN6google8protobuf8internal16RepeatedIteratorIxEmIEl",
|
|
3258
3269
|
"__ZN6google8protobuf13RepeatedFieldIdE4rendEv",
|
|
3259
3270
|
"__ZN6google8protobuf13RepeatedFieldIfE6ResizeEiRKf",
|
|
@@ -3616,6 +3627,7 @@
|
|
|
3616
3627
|
"__ZN6google8protobuf13RepeatedFieldIbEC2EOS2_",
|
|
3617
3628
|
"__ZN6google8protobuf8internal16RepeatedIteratorIbEpLEl",
|
|
3618
3629
|
"__ZN6google8protobuf13RepeatedFieldIfE15UnsafeArenaSwapEPS2_",
|
|
3630
|
+
"__ZZZN28qvac_lib_inference_addon_cpp6logger8JsLogger9setLoggerEP8js_env_sP18js_callback_info_sENKUlvE0_clEvENUlP11uv_handle_sE_8__invokeES8_",
|
|
3619
3631
|
"__ZNK6google8protobuf8internal16RepeatedIteratorIbEptEv",
|
|
3620
3632
|
"__ZNK6google8protobuf13RepeatedFieldIdE8CapacityEv",
|
|
3621
3633
|
"__ZN6google8protobuf13RepeatedFieldIfE5eraseENS0_8internal16RepeatedIteratorIKfEES6_",
|
|
Binary file
|
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
],
|
|
8
8
|
"current_versions": [
|
|
9
9
|
{
|
|
10
|
-
"version": "0.1.
|
|
10
|
+
"version": "0.1.3"
|
|
11
11
|
}
|
|
12
12
|
],
|
|
13
13
|
"exported_symbols": [
|
|
@@ -345,6 +345,7 @@
|
|
|
345
345
|
"__ZN4absl12lts_2024072213base_internal11FastTypeTagINSt3__16vectorINS3_12basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEENS8_ISA_EEEEE9dummy_varE",
|
|
346
346
|
"__ZN28qvac_lib_inference_addon_cpp6logger8JsLogger6state_E",
|
|
347
347
|
"__ZN4absl12lts_2024072213base_internal11FastTypeTagIxE9dummy_varE",
|
|
348
|
+
"__ZN28qvac_lib_inference_addon_cpp6logger8JsLogger13logger_async_E",
|
|
348
349
|
"__ZGVN28qvac_lib_inference_addon_cpp6logger8JsLogger10log_queue_E",
|
|
349
350
|
"__ZZN4absl12lts_2024072218container_internal12raw_hash_setINS1_17FlatHashMapPolicyINS0_11string_viewENSt3__14pairIS4_S4_EEEENS1_10StringHashENS1_8StringEqENS5_9allocatorINS6_IKS4_S7_EEEEE18GetPolicyFunctionsEvE5value",
|
|
350
351
|
"__ZN4absl12lts_2024072213base_internal11FastTypeTagIlE9dummy_varE",
|
|
@@ -355,6 +356,7 @@
|
|
|
355
356
|
"__ZN4absl12lts_2024072213base_internal11FastTypeTagIdE9dummy_varE",
|
|
356
357
|
"__ZN4absl12lts_2024072213base_internal11FastTypeTagItE9dummy_varE",
|
|
357
358
|
"__ZGVN28qvac_lib_inference_addon_cpp11JsInterfaceINS_5AddonIN35qvac_lib_inference_addon_mlc_marian16TranslationModelEEEE10instances_E",
|
|
359
|
+
"__ZN28qvac_lib_inference_addon_cpp6logger8JsLogger16async_initiated_E",
|
|
358
360
|
"__ZGVZN6google8protobuf8internal12ShutdownData3getEvE4data",
|
|
359
361
|
"__ZN13sentencepiece10normalizer10Normalizer19kMaxTrieResultsSizeE",
|
|
360
362
|
"__ZN4absl12lts_2024072213base_internal11FastTypeTagImE9dummy_varE",
|
|
@@ -387,6 +389,7 @@
|
|
|
387
389
|
"__ZN6google8protobuf22Base64UnescapeInternalEPKciPciPKa",
|
|
388
390
|
"__ZNK13sentencepiece26ImmutableSentencePieceText6piecesEv",
|
|
389
391
|
"__ZNK6google8protobuf8internal12ExtensionSet9Extension53InternalSerializeMessageSetItemWithCachedSizesToArrayEPKNS0_11MessageLiteEPKS2_iPhPNS0_2io19EpsCopyOutputStreamE",
|
|
392
|
+
"__ZN35qvac_lib_inference_addon_mlc_marian16TranslationModel9setUseGpuEb",
|
|
390
393
|
"__ZN13sentencepiece7unigram7LatticeC2Ev",
|
|
391
394
|
"__ZN4absl12lts_2024072215CommandLineFlag9ParseFromENS0_11string_viewEPNSt3__112basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEE",
|
|
392
395
|
"_ggml_backend_dev_count",
|
|
@@ -418,6 +421,7 @@
|
|
|
418
421
|
"__ZN4absl12lts_2024072213AbslParseFlagENS0_11string_viewEPNS0_11LogSeverityEPNSt3__112basic_stringIcNS4_11char_traitsIcEENS4_9allocatorIcEEEE",
|
|
419
422
|
"__ZN4absl12lts_2024072214flags_internal7UnparseEd",
|
|
420
423
|
"_ggml_rope_custom",
|
|
424
|
+
"__ZNK35qvac_lib_inference_addon_mlc_marian16TranslationModel9getConfigEv",
|
|
421
425
|
"__ZN6google8protobuf2io16CodedInputStream7RefreshEv",
|
|
422
426
|
"__ZN4absl12lts_2024072219str_format_internal13FlagsToStringENS1_5FlagsE",
|
|
423
427
|
"__ZNK4absl12lts_2024072213time_internal4cctz9time_zone11descriptionEv",
|
|
@@ -496,6 +500,7 @@
|
|
|
496
500
|
"_ggml_cont_1d",
|
|
497
501
|
"__ZN4ggml3cpu13tensor_traitsD2Ev",
|
|
498
502
|
"_ggml_compute_forward_repeat",
|
|
503
|
+
"__ZN35qvac_lib_inference_addon_mlc_marian16TranslationModel13unloadWeightsEv",
|
|
499
504
|
"__ZNK13sentencepiece7unigram7Lattice7surfaceEi",
|
|
500
505
|
"__Z21nmt_get_runtime_statsP11nmt_contextPdS1_Pi",
|
|
501
506
|
"__ZN6google8protobuf8internal16ReadSizeFallbackEPKcj",
|
|
@@ -776,7 +781,6 @@
|
|
|
776
781
|
"__ZN6google8protobuf8internal12FieldSkipper11SkipMessageEPNS0_2io16CodedInputStreamE",
|
|
777
782
|
"_ggml_scale",
|
|
778
783
|
"__ZN6google8protobuf8internal12ExtensionSetC1EPNS0_5ArenaE",
|
|
779
|
-
"__ZN28qvac_lib_inference_addon_cpp5AddonIN35qvac_lib_inference_addon_mlc_marian16TranslationModelEEC2IJP8js_env_sNSt3__117reference_wrapperIKNS7_12basic_stringIcNS7_11char_traitsIcEENS7_9allocatorIcEEEEEENS7_13unordered_mapISE_NS7_7variantIJdxEEENS7_4hashISE_EENS7_8equal_toISE_EENSC_INS7_4pairISF_SJ_EEEEEEP10js_value_sST_ST_EEEDpT_",
|
|
780
784
|
"__ZN6google8protobuf8internal17PackedInt32ParserEPvPKcPNS1_12ParseContextE",
|
|
781
785
|
"__ZN13sentencepiece17SentencePieceTextC1EPN6google8protobuf5ArenaEb",
|
|
782
786
|
"__ZN6google8protobuf11LogSilencerD1Ev",
|
|
@@ -836,7 +840,6 @@
|
|
|
836
840
|
"__ZN4absl12lts_2024072213time_internal4cctz9time_zone4ImplC1ERKNSt3__112basic_stringIcNS5_11char_traitsIcEENS5_9allocatorIcEEEE",
|
|
837
841
|
"_ggml_set_1d",
|
|
838
842
|
"__ZN6google8protobuf8internal23SerializeNotImplementedEi",
|
|
839
|
-
"__ZN28qvac_lib_inference_addon_cpp5AddonIN35qvac_lib_inference_addon_mlc_marian16TranslationModelEEC1IJP8js_env_sNSt3__117reference_wrapperIKNS7_12basic_stringIcNS7_11char_traitsIcEENS7_9allocatorIcEEEEEENS7_13unordered_mapISE_NS7_7variantIJdxEEENS7_4hashISE_EENS7_8equal_toISE_EENSC_INS7_4pairISF_SJ_EEEEEEP10js_value_sST_ST_EEEDpT_",
|
|
840
843
|
"__ZN4absl12lts_202407227uint128C2Ef",
|
|
841
844
|
"__ZN6google8protobuf8internal12FieldSkipper15SkipUnknownEnumEii",
|
|
842
845
|
"_ggml_compute_forward_cos",
|
|
@@ -1214,13 +1217,13 @@
|
|
|
1214
1217
|
"_ggml_backend_sched_set_tensor_backend",
|
|
1215
1218
|
"__ZN4absl12lts_2024072214flags_internal13AbslParseFlagENS0_11string_viewEPtPNSt3__112basic_stringIcNS4_11char_traitsIcEENS4_9allocatorIcEEEE",
|
|
1216
1219
|
"__ZNK6google8protobuf2io18IstreamInputStream9ByteCountEv",
|
|
1217
|
-
"__ZN6google8protobuf2io16FileOutputStream23CopyingFileOutputStreamD0Ev",
|
|
1218
1220
|
"__ZN13sentencepiece10ModelProtoC1EPN6google8protobuf5ArenaEb",
|
|
1219
1221
|
"__ZN13sentencepiece4util6StatusC2Ev",
|
|
1220
1222
|
"_ggml_cpu_has_avx512_vbmi",
|
|
1221
|
-
"
|
|
1223
|
+
"__ZN6google8protobuf2io16FileOutputStream23CopyingFileOutputStreamD0Ev",
|
|
1222
1224
|
"__ZN6google8protobuf10SimpleItoaEl",
|
|
1223
1225
|
"__ZN4absl12lts_2024072214flags_internal19NumLeakedFlagValuesEv",
|
|
1226
|
+
"_ggml_backend_reg_name",
|
|
1224
1227
|
"_ggml_vec_dot_tq1_0_q8_K_generic",
|
|
1225
1228
|
"_ggml_rope_ext_back",
|
|
1226
1229
|
"__ZN4absl12lts_2024072218container_internal17ClearBackingArrayERNS1_12CommonFieldsERKNS1_15PolicyFunctionsEbb",
|
|
@@ -1540,6 +1543,7 @@
|
|
|
1540
1543
|
"__ZN28qvac_lib_inference_addon_cpp5AddonIN35qvac_lib_inference_addon_mlc_marian16TranslationModelEE4loadIJNSt3__112basic_stringIcNS5_11char_traitsIcEENS5_9allocatorIcEEEENS5_13unordered_mapISB_NS5_7variantIJdxEEENS5_4hashISB_EENS5_8equal_toISB_EENS9_INS5_4pairIKSB_SE_EEEEEEEEEvDpT_",
|
|
1541
1544
|
"__ZN6google8protobuf8internal12ExtensionSet9SetUInt32EihjPKNS0_15FieldDescriptorE",
|
|
1542
1545
|
"__ZNK6google8protobuf14FatalException4whatEv",
|
|
1546
|
+
"__ZN28qvac_lib_inference_addon_cpp5AddonIN35qvac_lib_inference_addon_mlc_marian16TranslationModelEEC2IJP8js_env_sNSt3__117reference_wrapperIKNS7_12basic_stringIcNS7_11char_traitsIcEENS7_9allocatorIcEEEEEENS7_13unordered_mapISE_NS7_7variantIJdxEEENS7_4hashISE_EENS7_8equal_toISE_EENSC_INS7_4pairISF_SJ_EEEEEEbP10js_value_sST_ST_EEEDpT_",
|
|
1543
1547
|
"__ZN6google8protobuf8internal14WireFormatLite22WriteGroupMaybeToArrayEiRKNS0_11MessageLiteEPNS0_2io17CodedOutputStreamE",
|
|
1544
1548
|
"_ggml_is_contiguous_0",
|
|
1545
1549
|
"__ZN6google8protobuf8internal12ExtensionSet11ReleaseLastEi",
|
|
@@ -2054,6 +2058,7 @@
|
|
|
2054
2058
|
"__ZN4absl12lts_2024072219str_format_internal16ParsedFormatBaseC1ENS0_11string_viewEbSt16initializer_listINS0_23FormatConversionCharSetEE",
|
|
2055
2059
|
"__ZN13sentencepiece17SentencePieceText12InternalSwapEPS0_",
|
|
2056
2060
|
"_ggml_rope_multi",
|
|
2061
|
+
"__ZN35qvac_lib_inference_addon_mlc_marian13releaseLoggerEP8js_env_sP18js_callback_info_s",
|
|
2057
2062
|
"__ZN35qvac_lib_inference_addon_mlc_marian16TranslationModel6reloadEv",
|
|
2058
2063
|
"__ZN6google8protobuf2io16ArrayInputStreamC1EPKvii",
|
|
2059
2064
|
"__ZN6google8protobuf4util15status_internal17IsUnauthenticatedERKNS2_6StatusE",
|
|
@@ -2065,6 +2070,7 @@
|
|
|
2065
2070
|
"_quantize_row_q5_0",
|
|
2066
2071
|
"_ggml_backend_sched_set_eval_callback",
|
|
2067
2072
|
"__ZN13sentencepiece7unigram7LatticeC1Ev",
|
|
2073
|
+
"__ZN35qvac_lib_inference_addon_mlc_marian9setLoggerEP8js_env_sP18js_callback_info_s",
|
|
2068
2074
|
"__ZN6google8protobuf8internal13VerifyVersionEiiPKc",
|
|
2069
2075
|
"__ZN13sentencepiece22SentencePieceProcessorD1Ev",
|
|
2070
2076
|
"__ZN6google8protobuf8internal24InitProtobufDefaultsSlowEv",
|
|
@@ -2583,6 +2589,7 @@
|
|
|
2583
2589
|
"__ZN6google8protobuf8internal24RepeatedStringTypeTraits23GetDefaultRepeatedFieldEv",
|
|
2584
2590
|
"_ggml_unary_op_name",
|
|
2585
2591
|
"__ZN13sentencepiece10ModelProto9MergeFromERKS0_",
|
|
2592
|
+
"__ZN28qvac_lib_inference_addon_cpp5AddonIN35qvac_lib_inference_addon_mlc_marian16TranslationModelEEC1IJP8js_env_sNSt3__117reference_wrapperIKNS7_12basic_stringIcNS7_11char_traitsIcEENS7_9allocatorIcEEEEEENS7_13unordered_mapISE_NS7_7variantIJdxEEENS7_4hashISE_EENS7_8equal_toISE_EENSC_INS7_4pairISF_SJ_EEEEEEbP10js_value_sST_ST_EEEDpT_",
|
|
2586
2593
|
"__ZN4absl12lts_2024072219str_format_internal10AppendPackEPNSt3__112basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEENS1_21UntypedFormatSpecImplENS0_4SpanIKNS1_13FormatArgImplEEE",
|
|
2587
2594
|
"__ZN4absl12lts_202407225MutexD2Ev",
|
|
2588
2595
|
"_ggml_backend_dev_backend_reg",
|
|
@@ -3056,6 +3063,7 @@
|
|
|
3056
3063
|
"__ZN6google8protobuf13RepeatedFieldIdE18AddAlreadyReservedEv",
|
|
3057
3064
|
"__ZN6google8protobuf13RepeatedFieldIyE7ReserveEi",
|
|
3058
3065
|
"__ZN6google8protobuf13RepeatedFieldIbEaSERKS2_",
|
|
3066
|
+
"__ZZN28qvac_lib_inference_addon_cpp6logger8JsLogger13releaseLoggerEP8js_env_sP18js_callback_info_sENUlP11uv_handle_sE_8__invokeES7_",
|
|
3059
3067
|
"__ZN4absl12lts_2024072216strings_internal11BigUnsignedILi84EE10MultiplyByEj",
|
|
3060
3068
|
"__ZN4absl12lts_2024072216strings_internal11BigUnsignedILi4EE17ReadFloatMantissaERKNS1_11ParsedFloatEi",
|
|
3061
3069
|
"__ZN6google8protobuf8internal16RepeatedIteratorIfEppEv",
|
|
@@ -3124,6 +3132,7 @@
|
|
|
3124
3132
|
"__ZNK6google8protobuf13RepeatedFieldIdE4dataEv",
|
|
3125
3133
|
"__ZN6google8protobuf8internal16RepeatedIteratorIxEpLEl",
|
|
3126
3134
|
"__ZN6google8protobuf8internal16RepeatedIteratorIdEmmEi",
|
|
3135
|
+
"__ZN28qvac_lib_inference_addon_cpp6logger8JsLogger13asyncCallbackEP10uv_async_s",
|
|
3127
3136
|
"__ZN6google8protobuf8internal16RepeatedIteratorIxEmIEl",
|
|
3128
3137
|
"__ZN6google8protobuf13RepeatedFieldIdE4rendEv",
|
|
3129
3138
|
"__ZN6google8protobuf13RepeatedFieldIfE6ResizeEiRKf",
|
|
@@ -3488,6 +3497,7 @@
|
|
|
3488
3497
|
"__ZN6google8protobuf13RepeatedFieldIbEC2EOS2_",
|
|
3489
3498
|
"__ZN6google8protobuf8internal16RepeatedIteratorIbEpLEl",
|
|
3490
3499
|
"__ZN6google8protobuf13RepeatedFieldIfE15UnsafeArenaSwapEPS2_",
|
|
3500
|
+
"__ZZZN28qvac_lib_inference_addon_cpp6logger8JsLogger9setLoggerEP8js_env_sP18js_callback_info_sENKUlvE0_clEvENUlP11uv_handle_sE_8__invokeES8_",
|
|
3491
3501
|
"__ZNK6google8protobuf8internal16RepeatedIteratorIbEptEv",
|
|
3492
3502
|
"__ZNK6google8protobuf13RepeatedFieldIdE8CapacityEv",
|
|
3493
3503
|
"__ZN6google8protobuf13RepeatedFieldIfE5eraseENS0_8internal16RepeatedIteratorIKfEES6_",
|
|
Binary file
|
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
],
|
|
8
8
|
"current_versions": [
|
|
9
9
|
{
|
|
10
|
-
"version": "0.1.
|
|
10
|
+
"version": "0.1.3"
|
|
11
11
|
}
|
|
12
12
|
],
|
|
13
13
|
"exported_symbols": [
|
|
@@ -345,6 +345,7 @@
|
|
|
345
345
|
"__ZN4absl12lts_2024072213base_internal11FastTypeTagINSt3__16vectorINS3_12basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEENS8_ISA_EEEEE9dummy_varE",
|
|
346
346
|
"__ZN28qvac_lib_inference_addon_cpp6logger8JsLogger6state_E",
|
|
347
347
|
"__ZN4absl12lts_2024072213base_internal11FastTypeTagIxE9dummy_varE",
|
|
348
|
+
"__ZN28qvac_lib_inference_addon_cpp6logger8JsLogger13logger_async_E",
|
|
348
349
|
"__ZGVN28qvac_lib_inference_addon_cpp6logger8JsLogger10log_queue_E",
|
|
349
350
|
"__ZZN4absl12lts_2024072218container_internal12raw_hash_setINS1_17FlatHashMapPolicyINS0_11string_viewENSt3__14pairIS4_S4_EEEENS1_10StringHashENS1_8StringEqENS5_9allocatorINS6_IKS4_S7_EEEEE18GetPolicyFunctionsEvE5value",
|
|
350
351
|
"__ZN4absl12lts_2024072213base_internal11FastTypeTagIlE9dummy_varE",
|
|
@@ -355,6 +356,7 @@
|
|
|
355
356
|
"__ZN4absl12lts_2024072213base_internal11FastTypeTagIdE9dummy_varE",
|
|
356
357
|
"__ZN4absl12lts_2024072213base_internal11FastTypeTagItE9dummy_varE",
|
|
357
358
|
"__ZGVN28qvac_lib_inference_addon_cpp11JsInterfaceINS_5AddonIN35qvac_lib_inference_addon_mlc_marian16TranslationModelEEEE10instances_E",
|
|
359
|
+
"__ZN28qvac_lib_inference_addon_cpp6logger8JsLogger16async_initiated_E",
|
|
358
360
|
"__ZGVZN6google8protobuf8internal12ShutdownData3getEvE4data",
|
|
359
361
|
"__ZN13sentencepiece10normalizer10Normalizer19kMaxTrieResultsSizeE",
|
|
360
362
|
"__ZN4absl12lts_2024072213base_internal11FastTypeTagImE9dummy_varE",
|
|
@@ -387,6 +389,7 @@
|
|
|
387
389
|
"__ZN6google8protobuf22Base64UnescapeInternalEPKciPciPKa",
|
|
388
390
|
"__ZNK13sentencepiece26ImmutableSentencePieceText6piecesEv",
|
|
389
391
|
"__ZNK6google8protobuf8internal12ExtensionSet9Extension53InternalSerializeMessageSetItemWithCachedSizesToArrayEPKNS0_11MessageLiteEPKS2_iPhPNS0_2io19EpsCopyOutputStreamE",
|
|
392
|
+
"__ZN35qvac_lib_inference_addon_mlc_marian16TranslationModel9setUseGpuEb",
|
|
390
393
|
"__ZN13sentencepiece7unigram7LatticeC2Ev",
|
|
391
394
|
"__ZN4absl12lts_2024072215CommandLineFlag9ParseFromENS0_11string_viewEPNSt3__112basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEE",
|
|
392
395
|
"_ggml_backend_dev_count",
|
|
@@ -418,6 +421,7 @@
|
|
|
418
421
|
"__ZN4absl12lts_2024072213AbslParseFlagENS0_11string_viewEPNS0_11LogSeverityEPNSt3__112basic_stringIcNS4_11char_traitsIcEENS4_9allocatorIcEEEE",
|
|
419
422
|
"__ZN4absl12lts_2024072214flags_internal7UnparseEd",
|
|
420
423
|
"_ggml_rope_custom",
|
|
424
|
+
"__ZNK35qvac_lib_inference_addon_mlc_marian16TranslationModel9getConfigEv",
|
|
421
425
|
"__ZN6google8protobuf2io16CodedInputStream7RefreshEv",
|
|
422
426
|
"__ZN4absl12lts_2024072219str_format_internal13FlagsToStringENS1_5FlagsE",
|
|
423
427
|
"__ZNK4absl12lts_2024072213time_internal4cctz9time_zone11descriptionEv",
|
|
@@ -496,6 +500,7 @@
|
|
|
496
500
|
"_ggml_cont_1d",
|
|
497
501
|
"__ZN4ggml3cpu13tensor_traitsD2Ev",
|
|
498
502
|
"_ggml_compute_forward_repeat",
|
|
503
|
+
"__ZN35qvac_lib_inference_addon_mlc_marian16TranslationModel13unloadWeightsEv",
|
|
499
504
|
"__ZNK13sentencepiece7unigram7Lattice7surfaceEi",
|
|
500
505
|
"__Z21nmt_get_runtime_statsP11nmt_contextPdS1_Pi",
|
|
501
506
|
"__ZN6google8protobuf8internal16ReadSizeFallbackEPKcj",
|
|
@@ -776,7 +781,6 @@
|
|
|
776
781
|
"__ZN6google8protobuf8internal12FieldSkipper11SkipMessageEPNS0_2io16CodedInputStreamE",
|
|
777
782
|
"_ggml_scale",
|
|
778
783
|
"__ZN6google8protobuf8internal12ExtensionSetC1EPNS0_5ArenaE",
|
|
779
|
-
"__ZN28qvac_lib_inference_addon_cpp5AddonIN35qvac_lib_inference_addon_mlc_marian16TranslationModelEEC2IJP8js_env_sNSt3__117reference_wrapperIKNS7_12basic_stringIcNS7_11char_traitsIcEENS7_9allocatorIcEEEEEENS7_13unordered_mapISE_NS7_7variantIJdxEEENS7_4hashISE_EENS7_8equal_toISE_EENSC_INS7_4pairISF_SJ_EEEEEEP10js_value_sST_ST_EEEDpT_",
|
|
780
784
|
"__ZN6google8protobuf8internal17PackedInt32ParserEPvPKcPNS1_12ParseContextE",
|
|
781
785
|
"__ZN13sentencepiece17SentencePieceTextC1EPN6google8protobuf5ArenaEb",
|
|
782
786
|
"__ZN6google8protobuf11LogSilencerD1Ev",
|
|
@@ -836,7 +840,6 @@
|
|
|
836
840
|
"__ZN4absl12lts_2024072213time_internal4cctz9time_zone4ImplC1ERKNSt3__112basic_stringIcNS5_11char_traitsIcEENS5_9allocatorIcEEEE",
|
|
837
841
|
"_ggml_set_1d",
|
|
838
842
|
"__ZN6google8protobuf8internal23SerializeNotImplementedEi",
|
|
839
|
-
"__ZN28qvac_lib_inference_addon_cpp5AddonIN35qvac_lib_inference_addon_mlc_marian16TranslationModelEEC1IJP8js_env_sNSt3__117reference_wrapperIKNS7_12basic_stringIcNS7_11char_traitsIcEENS7_9allocatorIcEEEEEENS7_13unordered_mapISE_NS7_7variantIJdxEEENS7_4hashISE_EENS7_8equal_toISE_EENSC_INS7_4pairISF_SJ_EEEEEEP10js_value_sST_ST_EEEDpT_",
|
|
840
843
|
"__ZN4absl12lts_202407227uint128C2Ef",
|
|
841
844
|
"__ZN6google8protobuf8internal12FieldSkipper15SkipUnknownEnumEii",
|
|
842
845
|
"_ggml_compute_forward_cos",
|
|
@@ -1214,13 +1217,13 @@
|
|
|
1214
1217
|
"_ggml_backend_sched_set_tensor_backend",
|
|
1215
1218
|
"__ZN4absl12lts_2024072214flags_internal13AbslParseFlagENS0_11string_viewEPtPNSt3__112basic_stringIcNS4_11char_traitsIcEENS4_9allocatorIcEEEE",
|
|
1216
1219
|
"__ZNK6google8protobuf2io18IstreamInputStream9ByteCountEv",
|
|
1217
|
-
"__ZN6google8protobuf2io16FileOutputStream23CopyingFileOutputStreamD0Ev",
|
|
1218
1220
|
"__ZN13sentencepiece10ModelProtoC1EPN6google8protobuf5ArenaEb",
|
|
1219
1221
|
"__ZN13sentencepiece4util6StatusC2Ev",
|
|
1220
1222
|
"_ggml_cpu_has_avx512_vbmi",
|
|
1221
|
-
"
|
|
1223
|
+
"__ZN6google8protobuf2io16FileOutputStream23CopyingFileOutputStreamD0Ev",
|
|
1222
1224
|
"__ZN6google8protobuf10SimpleItoaEl",
|
|
1223
1225
|
"__ZN4absl12lts_2024072214flags_internal19NumLeakedFlagValuesEv",
|
|
1226
|
+
"_ggml_backend_reg_name",
|
|
1224
1227
|
"_ggml_vec_dot_tq1_0_q8_K_generic",
|
|
1225
1228
|
"_ggml_rope_ext_back",
|
|
1226
1229
|
"__ZN4absl12lts_2024072218container_internal17ClearBackingArrayERNS1_12CommonFieldsERKNS1_15PolicyFunctionsEbb",
|
|
@@ -1540,6 +1543,7 @@
|
|
|
1540
1543
|
"__ZN28qvac_lib_inference_addon_cpp5AddonIN35qvac_lib_inference_addon_mlc_marian16TranslationModelEE4loadIJNSt3__112basic_stringIcNS5_11char_traitsIcEENS5_9allocatorIcEEEENS5_13unordered_mapISB_NS5_7variantIJdxEEENS5_4hashISB_EENS5_8equal_toISB_EENS9_INS5_4pairIKSB_SE_EEEEEEEEEvDpT_",
|
|
1541
1544
|
"__ZN6google8protobuf8internal12ExtensionSet9SetUInt32EihjPKNS0_15FieldDescriptorE",
|
|
1542
1545
|
"__ZNK6google8protobuf14FatalException4whatEv",
|
|
1546
|
+
"__ZN28qvac_lib_inference_addon_cpp5AddonIN35qvac_lib_inference_addon_mlc_marian16TranslationModelEEC2IJP8js_env_sNSt3__117reference_wrapperIKNS7_12basic_stringIcNS7_11char_traitsIcEENS7_9allocatorIcEEEEEENS7_13unordered_mapISE_NS7_7variantIJdxEEENS7_4hashISE_EENS7_8equal_toISE_EENSC_INS7_4pairISF_SJ_EEEEEEbP10js_value_sST_ST_EEEDpT_",
|
|
1543
1547
|
"__ZN6google8protobuf8internal14WireFormatLite22WriteGroupMaybeToArrayEiRKNS0_11MessageLiteEPNS0_2io17CodedOutputStreamE",
|
|
1544
1548
|
"_ggml_is_contiguous_0",
|
|
1545
1549
|
"__ZN6google8protobuf8internal12ExtensionSet11ReleaseLastEi",
|
|
@@ -2054,6 +2058,7 @@
|
|
|
2054
2058
|
"__ZN4absl12lts_2024072219str_format_internal16ParsedFormatBaseC1ENS0_11string_viewEbSt16initializer_listINS0_23FormatConversionCharSetEE",
|
|
2055
2059
|
"__ZN13sentencepiece17SentencePieceText12InternalSwapEPS0_",
|
|
2056
2060
|
"_ggml_rope_multi",
|
|
2061
|
+
"__ZN35qvac_lib_inference_addon_mlc_marian13releaseLoggerEP8js_env_sP18js_callback_info_s",
|
|
2057
2062
|
"__ZN35qvac_lib_inference_addon_mlc_marian16TranslationModel6reloadEv",
|
|
2058
2063
|
"__ZN6google8protobuf2io16ArrayInputStreamC1EPKvii",
|
|
2059
2064
|
"__ZN6google8protobuf4util15status_internal17IsUnauthenticatedERKNS2_6StatusE",
|
|
@@ -2065,6 +2070,7 @@
|
|
|
2065
2070
|
"_quantize_row_q5_0",
|
|
2066
2071
|
"_ggml_backend_sched_set_eval_callback",
|
|
2067
2072
|
"__ZN13sentencepiece7unigram7LatticeC1Ev",
|
|
2073
|
+
"__ZN35qvac_lib_inference_addon_mlc_marian9setLoggerEP8js_env_sP18js_callback_info_s",
|
|
2068
2074
|
"__ZN6google8protobuf8internal13VerifyVersionEiiPKc",
|
|
2069
2075
|
"__ZN13sentencepiece22SentencePieceProcessorD1Ev",
|
|
2070
2076
|
"__ZN6google8protobuf8internal24InitProtobufDefaultsSlowEv",
|
|
@@ -2583,6 +2589,7 @@
|
|
|
2583
2589
|
"__ZN6google8protobuf8internal24RepeatedStringTypeTraits23GetDefaultRepeatedFieldEv",
|
|
2584
2590
|
"_ggml_unary_op_name",
|
|
2585
2591
|
"__ZN13sentencepiece10ModelProto9MergeFromERKS0_",
|
|
2592
|
+
"__ZN28qvac_lib_inference_addon_cpp5AddonIN35qvac_lib_inference_addon_mlc_marian16TranslationModelEEC1IJP8js_env_sNSt3__117reference_wrapperIKNS7_12basic_stringIcNS7_11char_traitsIcEENS7_9allocatorIcEEEEEENS7_13unordered_mapISE_NS7_7variantIJdxEEENS7_4hashISE_EENS7_8equal_toISE_EENSC_INS7_4pairISF_SJ_EEEEEEbP10js_value_sST_ST_EEEDpT_",
|
|
2586
2593
|
"__ZN4absl12lts_2024072219str_format_internal10AppendPackEPNSt3__112basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEENS1_21UntypedFormatSpecImplENS0_4SpanIKNS1_13FormatArgImplEEE",
|
|
2587
2594
|
"__ZN4absl12lts_202407225MutexD2Ev",
|
|
2588
2595
|
"_ggml_backend_dev_backend_reg",
|
|
@@ -3056,6 +3063,7 @@
|
|
|
3056
3063
|
"__ZN6google8protobuf13RepeatedFieldIdE18AddAlreadyReservedEv",
|
|
3057
3064
|
"__ZN6google8protobuf13RepeatedFieldIyE7ReserveEi",
|
|
3058
3065
|
"__ZN6google8protobuf13RepeatedFieldIbEaSERKS2_",
|
|
3066
|
+
"__ZZN28qvac_lib_inference_addon_cpp6logger8JsLogger13releaseLoggerEP8js_env_sP18js_callback_info_sENUlP11uv_handle_sE_8__invokeES7_",
|
|
3059
3067
|
"__ZN4absl12lts_2024072216strings_internal11BigUnsignedILi84EE10MultiplyByEj",
|
|
3060
3068
|
"__ZN4absl12lts_2024072216strings_internal11BigUnsignedILi4EE17ReadFloatMantissaERKNS1_11ParsedFloatEi",
|
|
3061
3069
|
"__ZN6google8protobuf8internal16RepeatedIteratorIfEppEv",
|
|
@@ -3124,6 +3132,7 @@
|
|
|
3124
3132
|
"__ZNK6google8protobuf13RepeatedFieldIdE4dataEv",
|
|
3125
3133
|
"__ZN6google8protobuf8internal16RepeatedIteratorIxEpLEl",
|
|
3126
3134
|
"__ZN6google8protobuf8internal16RepeatedIteratorIdEmmEi",
|
|
3135
|
+
"__ZN28qvac_lib_inference_addon_cpp6logger8JsLogger13asyncCallbackEP10uv_async_s",
|
|
3127
3136
|
"__ZN6google8protobuf8internal16RepeatedIteratorIxEmIEl",
|
|
3128
3137
|
"__ZN6google8protobuf13RepeatedFieldIdE4rendEv",
|
|
3129
3138
|
"__ZN6google8protobuf13RepeatedFieldIfE6ResizeEiRKf",
|
|
@@ -3488,6 +3497,7 @@
|
|
|
3488
3497
|
"__ZN6google8protobuf13RepeatedFieldIbEC2EOS2_",
|
|
3489
3498
|
"__ZN6google8protobuf8internal16RepeatedIteratorIbEpLEl",
|
|
3490
3499
|
"__ZN6google8protobuf13RepeatedFieldIfE15UnsafeArenaSwapEPS2_",
|
|
3500
|
+
"__ZZZN28qvac_lib_inference_addon_cpp6logger8JsLogger9setLoggerEP8js_env_sP18js_callback_info_sENKUlvE0_clEvENUlP11uv_handle_sE_8__invokeES8_",
|
|
3491
3501
|
"__ZNK6google8protobuf8internal16RepeatedIteratorIbEptEv",
|
|
3492
3502
|
"__ZNK6google8protobuf13RepeatedFieldIdE8CapacityEv",
|
|
3493
3503
|
"__ZN6google8protobuf13RepeatedFieldIfE5eraseENS0_8internal16RepeatedIteratorIKfEES6_",
|
|
Binary file
|
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
],
|
|
8
8
|
"current_versions": [
|
|
9
9
|
{
|
|
10
|
-
"version": "0.1.
|
|
10
|
+
"version": "0.1.3"
|
|
11
11
|
}
|
|
12
12
|
],
|
|
13
13
|
"exported_symbols": [
|
|
@@ -364,6 +364,7 @@
|
|
|
364
364
|
"__ZTIN6google8protobuf16RepeatedPtrFieldINSt3__112basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEEEE",
|
|
365
365
|
"__ZTSN6google8protobuf8internal12ExtensionSet8KeyValueE",
|
|
366
366
|
"__ZTSNSt3__114basic_ifstreamIcNS_11char_traitsIcEEEE",
|
|
367
|
+
"__ZN28qvac_lib_inference_addon_cpp6logger8JsLogger13logger_async_E",
|
|
367
368
|
"__ZGVN28qvac_lib_inference_addon_cpp6logger8JsLogger10log_queue_E",
|
|
368
369
|
"__ZZN4absl12lts_2024072218container_internal12raw_hash_setINS1_17FlatHashMapPolicyINS0_11string_viewENSt3__14pairIS4_S4_EEEENS1_10StringHashENS1_8StringEqENS5_9allocatorINS6_IKS4_S7_EEEEE18GetPolicyFunctionsEvE5value",
|
|
369
370
|
"__ZTSN4ggml3cpu6repack13tensor_traitsI10block_q4_0Lx4ELx4EL9ggml_type8EEE",
|
|
@@ -427,9 +428,11 @@
|
|
|
427
428
|
"__ZTIN6google8protobuf2io19CopyingOutputStreamE",
|
|
428
429
|
"__ZTIN13sentencepiece5model8FreeListINS_7unigram7Lattice4NodeEEE",
|
|
429
430
|
"__ZTSNSt3__120__shared_ptr_emplaceIN13sentencepiece22NBestSentencePieceTextENS_9allocatorIS2_EEEE",
|
|
431
|
+
"__ZTSNSt3__120__shared_ptr_emplaceIN28qvac_lib_inference_addon_cpp6logger8JsLogger5StateENS_9allocatorIS4_EEEE",
|
|
430
432
|
"__ZTSN4ggml3cpu6repack13tensor_traitsI10block_q4_KLx8ELx8EL9ggml_type15EEE",
|
|
431
433
|
"__ZTSN13sentencepiece10filesystem17PosixWritableFileE",
|
|
432
434
|
"__ZTSNSt3__110__function6__baseIFP11ggml_cgraphvEEE",
|
|
435
|
+
"__ZN28qvac_lib_inference_addon_cpp6logger8JsLogger16async_initiated_E",
|
|
433
436
|
"__ZTSNSt3__119basic_ostringstreamIcNS_11char_traitsIcEENS_9allocatorIcEEEE",
|
|
434
437
|
"__ZTSN6google8protobuf13RepeatedFieldIyEE",
|
|
435
438
|
"__ZTSNSt3__115basic_stringbufIcNS_11char_traitsIcEENS_9allocatorIcEEEE",
|
|
@@ -439,6 +442,7 @@
|
|
|
439
442
|
"__ZTINSt3__114basic_ifstreamIcNS_11char_traitsIcEEEE",
|
|
440
443
|
"__ZGVZN6google8protobuf8internal12ShutdownData3getEvE4data",
|
|
441
444
|
"__ZTIFbN4absl12lts_2024072211string_viewEE",
|
|
445
|
+
"__ZTINSt3__120__shared_ptr_emplaceIN28qvac_lib_inference_addon_cpp6logger8JsLogger5StateENS_9allocatorIS4_EEEE",
|
|
442
446
|
"__ZTSN13sentencepiece10filesystem12ReadableFileE",
|
|
443
447
|
"__ZN13sentencepiece10normalizer10Normalizer19kMaxTrieResultsSizeE",
|
|
444
448
|
"__ZTIN6google8protobuf8internal16InternalMetadata9ContainerINSt3__112basic_stringIcNS4_11char_traitsIcEENS4_9allocatorIcEEEEEE",
|
|
@@ -508,6 +512,7 @@
|
|
|
508
512
|
"__ZN6google8protobuf22Base64UnescapeInternalEPKciPciPKa",
|
|
509
513
|
"__ZNK13sentencepiece26ImmutableSentencePieceText6piecesEv",
|
|
510
514
|
"__ZNK6google8protobuf8internal12ExtensionSet9Extension53InternalSerializeMessageSetItemWithCachedSizesToArrayEPKNS0_11MessageLiteEPKS2_iPhPNS0_2io19EpsCopyOutputStreamE",
|
|
515
|
+
"__ZN35qvac_lib_inference_addon_mlc_marian16TranslationModel9setUseGpuEb",
|
|
511
516
|
"__ZN13sentencepiece7unigram7LatticeC2Ev",
|
|
512
517
|
"__ZN4absl12lts_2024072215CommandLineFlag9ParseFromENS0_11string_viewEPNSt3__112basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEE",
|
|
513
518
|
"_ggml_backend_dev_count",
|
|
@@ -539,6 +544,7 @@
|
|
|
539
544
|
"__ZN4absl12lts_2024072213AbslParseFlagENS0_11string_viewEPNS0_11LogSeverityEPNSt3__112basic_stringIcNS4_11char_traitsIcEENS4_9allocatorIcEEEE",
|
|
540
545
|
"__ZN4absl12lts_2024072214flags_internal7UnparseEd",
|
|
541
546
|
"_ggml_rope_custom",
|
|
547
|
+
"__ZNK35qvac_lib_inference_addon_mlc_marian16TranslationModel9getConfigEv",
|
|
542
548
|
"__ZN6google8protobuf2io16CodedInputStream7RefreshEv",
|
|
543
549
|
"__ZN4absl12lts_2024072219str_format_internal13FlagsToStringENS1_5FlagsE",
|
|
544
550
|
"__ZNK4absl12lts_2024072213time_internal4cctz9time_zone11descriptionEv",
|
|
@@ -617,6 +623,7 @@
|
|
|
617
623
|
"_ggml_cont_1d",
|
|
618
624
|
"__ZN4ggml3cpu13tensor_traitsD2Ev",
|
|
619
625
|
"_ggml_compute_forward_repeat",
|
|
626
|
+
"__ZN35qvac_lib_inference_addon_mlc_marian16TranslationModel13unloadWeightsEv",
|
|
620
627
|
"__ZNK13sentencepiece7unigram7Lattice7surfaceEi",
|
|
621
628
|
"__Z21nmt_get_runtime_statsP11nmt_contextPdS1_Pi",
|
|
622
629
|
"__ZN6google8protobuf8internal16ReadSizeFallbackEPKcj",
|
|
@@ -896,7 +903,6 @@
|
|
|
896
903
|
"__ZN6google8protobuf8internal12FieldSkipper11SkipMessageEPNS0_2io16CodedInputStreamE",
|
|
897
904
|
"_ggml_scale",
|
|
898
905
|
"__ZN6google8protobuf8internal12ExtensionSetC1EPNS0_5ArenaE",
|
|
899
|
-
"__ZN28qvac_lib_inference_addon_cpp5AddonIN35qvac_lib_inference_addon_mlc_marian16TranslationModelEEC2IJP8js_env_sNSt3__117reference_wrapperIKNS7_12basic_stringIcNS7_11char_traitsIcEENS7_9allocatorIcEEEEEENS7_13unordered_mapISE_NS7_7variantIJdxEEENS7_4hashISE_EENS7_8equal_toISE_EENSC_INS7_4pairISF_SJ_EEEEEEP10js_value_sST_ST_EEEDpT_",
|
|
900
906
|
"__ZN6google8protobuf8internal17PackedInt32ParserEPvPKcPNS1_12ParseContextE",
|
|
901
907
|
"__ZN13sentencepiece17SentencePieceTextC1EPN6google8protobuf5ArenaEb",
|
|
902
908
|
"__ZN6google8protobuf11LogSilencerD1Ev",
|
|
@@ -956,7 +962,6 @@
|
|
|
956
962
|
"__ZN4absl12lts_2024072213time_internal4cctz9time_zone4ImplC1ERKNSt3__112basic_stringIcNS5_11char_traitsIcEENS5_9allocatorIcEEEE",
|
|
957
963
|
"_ggml_set_1d",
|
|
958
964
|
"__ZN6google8protobuf8internal23SerializeNotImplementedEi",
|
|
959
|
-
"__ZN28qvac_lib_inference_addon_cpp5AddonIN35qvac_lib_inference_addon_mlc_marian16TranslationModelEEC1IJP8js_env_sNSt3__117reference_wrapperIKNS7_12basic_stringIcNS7_11char_traitsIcEENS7_9allocatorIcEEEEEENS7_13unordered_mapISE_NS7_7variantIJdxEEENS7_4hashISE_EENS7_8equal_toISE_EENSC_INS7_4pairISF_SJ_EEEEEEP10js_value_sST_ST_EEEDpT_",
|
|
960
965
|
"__ZN4absl12lts_202407227uint128C2Ef",
|
|
961
966
|
"__ZN6google8protobuf8internal12FieldSkipper15SkipUnknownEnumEii",
|
|
962
967
|
"_ggml_compute_forward_cos",
|
|
@@ -1115,13 +1120,13 @@
|
|
|
1115
1120
|
"_ggml_vec_dot_iq2_xxs_q8_K",
|
|
1116
1121
|
"__ZN4absl12lts_2024072213ToDoubleHoursENS0_8DurationE",
|
|
1117
1122
|
"__ZN6google8protobuf8internal14WireFormatLite9Int32SizeERKNS0_13RepeatedFieldIiEE",
|
|
1118
|
-
"_ggml_backend_sched_reserve",
|
|
1119
1123
|
"_ggml_backend_sched_new",
|
|
1120
|
-
"
|
|
1124
|
+
"_ggml_backend_sched_reserve",
|
|
1121
1125
|
"__ZNK35qvac_lib_inference_addon_mlc_marian16TranslationModel20runtimeStatsToStringEv",
|
|
1122
1126
|
"__ZN13sentencepiece17SentencePieceTextC2EPN6google8protobuf5ArenaEb",
|
|
1123
1127
|
"__ZNK6google8protobuf8internal12ExtensionSet19GetRawRepeatedFieldEiPKv",
|
|
1124
1128
|
"__ZN6google8protobuf8internal11SerialArena16AllocateNewBlockEmPKNS1_16AllocationPolicyE",
|
|
1129
|
+
"_ggml_rms_norm",
|
|
1125
1130
|
"_ggml_compute_forward_map_custom3",
|
|
1126
1131
|
"__ZN6google8protobuf11safe_strtodEPKcPd",
|
|
1127
1132
|
"_ggml_hash_set_free",
|
|
@@ -1334,13 +1339,13 @@
|
|
|
1334
1339
|
"__ZN4absl12lts_2024072214flags_internal13AbslParseFlagENS0_11string_viewEPtPNSt3__112basic_stringIcNS4_11char_traitsIcEENS4_9allocatorIcEEEE",
|
|
1335
1340
|
"_ggml_gemv_q4_K_8x8_q8_K_generic",
|
|
1336
1341
|
"__ZNK6google8protobuf2io18IstreamInputStream9ByteCountEv",
|
|
1337
|
-
"__ZN6google8protobuf2io16FileOutputStream23CopyingFileOutputStreamD0Ev",
|
|
1338
1342
|
"__ZN13sentencepiece10ModelProtoC1EPN6google8protobuf5ArenaEb",
|
|
1339
1343
|
"__ZN13sentencepiece4util6StatusC2Ev",
|
|
1340
1344
|
"_ggml_cpu_has_avx512_vbmi",
|
|
1341
|
-
"
|
|
1345
|
+
"__ZN6google8protobuf2io16FileOutputStream23CopyingFileOutputStreamD0Ev",
|
|
1342
1346
|
"__ZN6google8protobuf10SimpleItoaEl",
|
|
1343
1347
|
"__ZN4absl12lts_2024072214flags_internal19NumLeakedFlagValuesEv",
|
|
1348
|
+
"_ggml_backend_reg_name",
|
|
1344
1349
|
"_ggml_vec_dot_tq1_0_q8_K_generic",
|
|
1345
1350
|
"_ggml_rope_ext_back",
|
|
1346
1351
|
"__ZN4absl12lts_2024072218container_internal17ClearBackingArrayERNS1_12CommonFieldsERKNS1_15PolicyFunctionsEbb",
|
|
@@ -1658,6 +1663,7 @@
|
|
|
1658
1663
|
"__ZN28qvac_lib_inference_addon_cpp5AddonIN35qvac_lib_inference_addon_mlc_marian16TranslationModelEE4loadIJNSt3__112basic_stringIcNS5_11char_traitsIcEENS5_9allocatorIcEEEENS5_13unordered_mapISB_NS5_7variantIJdxEEENS5_4hashISB_EENS5_8equal_toISB_EENS9_INS5_4pairIKSB_SE_EEEEEEEEEvDpT_",
|
|
1659
1664
|
"__ZN6google8protobuf8internal12ExtensionSet9SetUInt32EihjPKNS0_15FieldDescriptorE",
|
|
1660
1665
|
"__ZNK6google8protobuf14FatalException4whatEv",
|
|
1666
|
+
"__ZN28qvac_lib_inference_addon_cpp5AddonIN35qvac_lib_inference_addon_mlc_marian16TranslationModelEEC2IJP8js_env_sNSt3__117reference_wrapperIKNS7_12basic_stringIcNS7_11char_traitsIcEENS7_9allocatorIcEEEEEENS7_13unordered_mapISE_NS7_7variantIJdxEEENS7_4hashISE_EENS7_8equal_toISE_EENSC_INS7_4pairISF_SJ_EEEEEEbP10js_value_sST_ST_EEEDpT_",
|
|
1661
1667
|
"__ZN6google8protobuf8internal14WireFormatLite22WriteGroupMaybeToArrayEiRKNS0_11MessageLiteEPNS0_2io17CodedOutputStreamE",
|
|
1662
1668
|
"_ggml_is_contiguous_0",
|
|
1663
1669
|
"__ZN6google8protobuf8internal12ExtensionSet11ReleaseLastEi",
|
|
@@ -2171,6 +2177,7 @@
|
|
|
2171
2177
|
"__ZN4absl12lts_2024072219str_format_internal16ParsedFormatBaseC1ENS0_11string_viewEbSt16initializer_listINS0_23FormatConversionCharSetEE",
|
|
2172
2178
|
"__ZN13sentencepiece17SentencePieceText12InternalSwapEPS0_",
|
|
2173
2179
|
"_ggml_rope_multi",
|
|
2180
|
+
"__ZN35qvac_lib_inference_addon_mlc_marian13releaseLoggerEP8js_env_sP18js_callback_info_s",
|
|
2174
2181
|
"__ZN35qvac_lib_inference_addon_mlc_marian16TranslationModel6reloadEv",
|
|
2175
2182
|
"__ZN6google8protobuf2io16ArrayInputStreamC1EPKvii",
|
|
2176
2183
|
"__ZN6google8protobuf4util15status_internal17IsUnauthenticatedERKNS2_6StatusE",
|
|
@@ -2182,6 +2189,7 @@
|
|
|
2182
2189
|
"_quantize_row_q5_0",
|
|
2183
2190
|
"_ggml_backend_sched_set_eval_callback",
|
|
2184
2191
|
"__ZN13sentencepiece7unigram7LatticeC1Ev",
|
|
2192
|
+
"__ZN35qvac_lib_inference_addon_mlc_marian9setLoggerEP8js_env_sP18js_callback_info_s",
|
|
2185
2193
|
"__ZN6google8protobuf8internal13VerifyVersionEiiPKc",
|
|
2186
2194
|
"__ZN13sentencepiece22SentencePieceProcessorD1Ev",
|
|
2187
2195
|
"__ZN6google8protobuf8internal24InitProtobufDefaultsSlowEv",
|
|
@@ -2700,6 +2708,7 @@
|
|
|
2700
2708
|
"__ZN6google8protobuf8internal24RepeatedStringTypeTraits23GetDefaultRepeatedFieldEv",
|
|
2701
2709
|
"_ggml_unary_op_name",
|
|
2702
2710
|
"__ZN13sentencepiece10ModelProto9MergeFromERKS0_",
|
|
2711
|
+
"__ZN28qvac_lib_inference_addon_cpp5AddonIN35qvac_lib_inference_addon_mlc_marian16TranslationModelEEC1IJP8js_env_sNSt3__117reference_wrapperIKNS7_12basic_stringIcNS7_11char_traitsIcEENS7_9allocatorIcEEEEEENS7_13unordered_mapISE_NS7_7variantIJdxEEENS7_4hashISE_EENS7_8equal_toISE_EENSC_INS7_4pairISF_SJ_EEEEEEbP10js_value_sST_ST_EEEDpT_",
|
|
2703
2712
|
"_ggml_gemm_q4_K_8x8_q8_K_generic",
|
|
2704
2713
|
"__ZN4absl12lts_2024072219str_format_internal10AppendPackEPNSt3__112basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEENS1_21UntypedFormatSpecImplENS0_4SpanIKNS1_13FormatArgImplEEE",
|
|
2705
2714
|
"__ZN4absl12lts_202407225MutexD2Ev",
|
|
@@ -3173,6 +3182,7 @@
|
|
|
3173
3182
|
"__ZN6google8protobuf13RepeatedFieldIdE18AddAlreadyReservedEv",
|
|
3174
3183
|
"__ZN6google8protobuf13RepeatedFieldIyE7ReserveEi",
|
|
3175
3184
|
"__ZN6google8protobuf13RepeatedFieldIbEaSERKS2_",
|
|
3185
|
+
"__ZZN28qvac_lib_inference_addon_cpp6logger8JsLogger13releaseLoggerEP8js_env_sP18js_callback_info_sENUlP11uv_handle_sE_8__invokeES7_",
|
|
3176
3186
|
"__ZN4absl12lts_2024072216strings_internal11BigUnsignedILi84EE10MultiplyByEj",
|
|
3177
3187
|
"__ZN4absl12lts_2024072216strings_internal11BigUnsignedILi4EE17ReadFloatMantissaERKNS1_11ParsedFloatEi",
|
|
3178
3188
|
"__ZN6google8protobuf8internal16RepeatedIteratorIfEppEv",
|
|
@@ -3241,6 +3251,7 @@
|
|
|
3241
3251
|
"__ZNK6google8protobuf13RepeatedFieldIdE4dataEv",
|
|
3242
3252
|
"__ZN6google8protobuf8internal16RepeatedIteratorIxEpLEl",
|
|
3243
3253
|
"__ZN6google8protobuf8internal16RepeatedIteratorIdEmmEi",
|
|
3254
|
+
"__ZN28qvac_lib_inference_addon_cpp6logger8JsLogger13asyncCallbackEP10uv_async_s",
|
|
3244
3255
|
"__ZN6google8protobuf8internal16RepeatedIteratorIxEmIEl",
|
|
3245
3256
|
"__ZN6google8protobuf13RepeatedFieldIdE4rendEv",
|
|
3246
3257
|
"__ZN6google8protobuf13RepeatedFieldIfE6ResizeEiRKf",
|
|
@@ -3605,6 +3616,7 @@
|
|
|
3605
3616
|
"__ZN6google8protobuf13RepeatedFieldIbEC2EOS2_",
|
|
3606
3617
|
"__ZN6google8protobuf8internal16RepeatedIteratorIbEpLEl",
|
|
3607
3618
|
"__ZN6google8protobuf13RepeatedFieldIfE15UnsafeArenaSwapEPS2_",
|
|
3619
|
+
"__ZZZN28qvac_lib_inference_addon_cpp6logger8JsLogger9setLoggerEP8js_env_sP18js_callback_info_sENKUlvE0_clEvENUlP11uv_handle_sE_8__invokeES8_",
|
|
3608
3620
|
"__ZNK6google8protobuf8internal16RepeatedIteratorIbEptEv",
|
|
3609
3621
|
"__ZNK6google8protobuf13RepeatedFieldIdE8CapacityEv",
|
|
3610
3622
|
"__ZN6google8protobuf13RepeatedFieldIfE5eraseENS0_8internal16RepeatedIteratorIKfEES6_",
|
|
Binary file
|
|
Binary file
|
|
Binary file
|