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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: a989c36d7ff926d3e9a0e45bbe66a0ece7c6760deaadefa415bf4c975ae64d93
4
- data.tar.gz: 413ce9a40e4915f6167f8058d5548f95d87dd65b2d1177233d906524fa0cd2e2
3
+ metadata.gz: 8abec88f3e61c6c4ffb5de851d99d670320517511894adab2700c4c4316e7373
4
+ data.tar.gz: 3d74ecae961ec1ece4559804936e4e5a42737c666a6fad772f36a8d4e03f5eaf
5
5
  SHA512:
6
- metadata.gz: 9adf6b3e0aab57f248556a856793d582e8a1fcb64de892229ba40757ee499fe679f15c4c167727cadef4fa9d3dd28d162866c997cf72334a3b8f85c2943dde60
7
- data.tar.gz: 2a1f3fd82aec431e244e8a2cc4315c1abf008d332b16402b29297397816f81fb8328f9236722d66a648287119832d0c50f4b0428152d6385bd6b19e7ff21fa7e
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.0` runs the release workflow, verifies that the tag matches `Cohere::Transcribe::VERSION`, builds the exact `cohere-transcribe-0.1.0.gem` artifact, and pushes it to RubyGems.org.
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 "\"${COHERE_TRANSCRIBE_SOURCE_PREFIX_MAP}\"\n\"${COHERE_TRANSCRIBE_BUILD_PREFIX_MAP}\"\n"
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>"
@@ -71,7 +71,7 @@ makefile = <<~MAKEFILE
71
71
 
72
72
  all:
73
73
  \t#{Shellwords.join(configure)}
74
- \t#{Shellwords.join(build)}
74
+ \t+#{Shellwords.join(build)}
75
75
  \t#{Shellwords.join(install)}
76
76
 
77
77
  install: all
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Cohere
4
4
  module Transcribe
5
- VERSION = "0.1.0"
5
+ VERSION = "0.1.1"
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cohere-transcribe
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ali Hamdi Ali Fadel