cohere-transcribe 0.1.0 → 0.1.1
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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/README.md +1 -1
- data/ext/cohere_transcribe_native/CMakeLists.txt +10 -1
- data/ext/cohere_transcribe_native/extconf.rb +1 -1
- data/lib/cohere/transcribe/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 8abec88f3e61c6c4ffb5de851d99d670320517511894adab2700c4c4316e7373
|
|
4
|
+
data.tar.gz: 3d74ecae961ec1ece4559804936e4e5a42737c666a6fad772f36a8d4e03f5eaf
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e453948e563efdf28964936f21b447c6121c890beb7feb93571bd6fd4cb14665ac6b4dd2d02364a6c6e75c66035d15956bf7763c72de78b628a5f47670b4cd23
|
|
7
|
+
data.tar.gz: 8c4d4411d200b27a3d16d0a8e20806e7d47f820c16d3a0d9ba730b7e6a411605187015aff1197737b444367af02ccd165e82ec74cdff8d6badad6a0e2f3373af
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,10 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.1.1] - 2026-07-15
|
|
4
|
+
|
|
5
|
+
- Fix CUDA source-gem installation across Unix Makefiles and Ninja by making NVCC's generated response file available from each compiler working directory, including when the gem is installed beneath a path containing spaces.
|
|
6
|
+
- Preserve RubyGems build parallelism when the native extension delegates compilation to CMake.
|
|
7
|
+
|
|
3
8
|
## [0.1.0] - 2026-07-15
|
|
4
9
|
|
|
5
10
|
- Release the independent Ruby gem with output schema 8 and profile schema 9.
|
data/README.md
CHANGED
|
@@ -254,7 +254,7 @@ Installed-gem WER measurements use the standalone runner documented in [`benchma
|
|
|
254
254
|
|
|
255
255
|
### Releasing
|
|
256
256
|
|
|
257
|
-
Add a repository Actions secret named `RUBYGEMS_AUTH_TOKEN` containing a RubyGems API key with permission to push `cohere-transcribe`. Publishing a GitHub Release tagged `v0.1.
|
|
257
|
+
Add a repository Actions secret named `RUBYGEMS_AUTH_TOKEN` containing a RubyGems API key with permission to push `cohere-transcribe`. Publishing a GitHub Release tagged `v0.1.1` runs the release workflow, verifies that the tag matches `Cohere::Transcribe::VERSION`, builds the exact `cohere-transcribe-0.1.1.gem` artifact, and pushes it to RubyGems.org.
|
|
258
258
|
|
|
259
259
|
Normal CI runs the Ruby suite, style checks, signature validation, native CPU build and ABI smoke checks, and source-gem build on Linux and macOS. It does not run the installed-gem WER or performance benchmarks.
|
|
260
260
|
|
|
@@ -106,12 +106,21 @@ if(COHERE_TRANSCRIBE_CUDA)
|
|
|
106
106
|
# source path. Keep NVCC's per-file basename and give that path component a
|
|
107
107
|
# stable identity shared by equivalent source trees.
|
|
108
108
|
set(COHERE_TRANSCRIBE_CUDA_PREFIX_MAP_RESPONSE "cohere_cuda_prefix_map.rsp")
|
|
109
|
+
set(COHERE_TRANSCRIBE_CUDA_PREFIX_MAP_CONTENT
|
|
110
|
+
"\"${COHERE_TRANSCRIBE_SOURCE_PREFIX_MAP}\"\n\"${COHERE_TRANSCRIBE_BUILD_PREFIX_MAP}\"\n")
|
|
111
|
+
get_target_property(COHERE_TRANSCRIBE_CUDA_BINARY_DIR ggml-cuda BINARY_DIR)
|
|
109
112
|
set(COHERE_TRANSCRIBE_CUDA_SOURCE_IDENTITY
|
|
110
113
|
"/cohere-transcribe-source/vendor/crispasr/ggml/src/ggml-cuda")
|
|
111
114
|
file(GENERATE
|
|
112
115
|
OUTPUT "${CMAKE_BINARY_DIR}/${COHERE_TRANSCRIBE_CUDA_PREFIX_MAP_RESPONSE}"
|
|
113
|
-
CONTENT "
|
|
116
|
+
CONTENT "${COHERE_TRANSCRIBE_CUDA_PREFIX_MAP_CONTENT}"
|
|
114
117
|
)
|
|
118
|
+
if(NOT COHERE_TRANSCRIBE_CUDA_BINARY_DIR STREQUAL CMAKE_BINARY_DIR)
|
|
119
|
+
file(GENERATE
|
|
120
|
+
OUTPUT "${COHERE_TRANSCRIBE_CUDA_BINARY_DIR}/${COHERE_TRANSCRIBE_CUDA_PREFIX_MAP_RESPONSE}"
|
|
121
|
+
CONTENT "${COHERE_TRANSCRIBE_CUDA_PREFIX_MAP_CONTENT}"
|
|
122
|
+
)
|
|
123
|
+
endif()
|
|
115
124
|
target_compile_options(ggml-cuda PRIVATE
|
|
116
125
|
"$<$<COMPILE_LANG_AND_ID:CUDA,NVIDIA>:-Xcompiler=@${COHERE_TRANSCRIBE_CUDA_PREFIX_MAP_RESPONSE}>"
|
|
117
126
|
"$<$<COMPILE_LANG_AND_ID:CUDA,NVIDIA>:--objdir-as-tempdir>"
|