cumo 0.5.2 → 0.5.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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 17cb9dfdf9be41292bcd0204a67c5f919da60588d005d4441ad632767dce504c
4
- data.tar.gz: 4c6e388cdb5b3b9f99d45a989a610d63e493fe53b3baad570c7bb2656f72d86c
3
+ metadata.gz: 3ea033fff4a77a42e911f54418e264dd3467372c41ffebcfb693e45b3f5f6faf
4
+ data.tar.gz: 7cdc86588d27d4819aaba0b994ed178f9d028cc4441c557c1b403a9570b56b0e
5
5
  SHA512:
6
- metadata.gz: 917adaa087836d673a143364f88fb9ddf91ad84cbcc064b115258e32f4b22e70a63c45f3e655a2e56ad58e70d6a4330f3e63ce177b5ad9e0a0c9c11685b39503
7
- data.tar.gz: c5ec5a4179266a1cf4c5f15b5bc0d7e8b0b01a5a69bb7a75ad3c1387e861666da8b571156bc90295f2cf702558f18e332ce7fd68823330f834ea8d9c4f8b6419
6
+ metadata.gz: f2ed5c87fcee89596b0ed404169fe82ad514da4cdcb23b3e8b200415d2fe1092d450c88e8a7f109c7ff786b58ffe2a52b12485eb7d0e2844e28fcc18d2303c0c
7
+ data.tar.gz: 215bbcab440ff133bd13aa9e4f133cddb8da783003dccddfd8546e072adf49a6d68d93ecd9f97221aca4f09348eaf5b5657437f614d94e0c0fc15dbcf924ded9
@@ -51,10 +51,10 @@ module MakeMakefileCuda
51
51
  capability = [75, 80, 86, 87, 89, 90, 100, 103, 110, 120, 121]
52
52
  elsif cuda_version >= Gem::Version.new("12.9")
53
53
  # CUDA 12.9
54
- capability = [50, 60, 61, 62, 70, 72, 75, 80, 86, 87, 89, 90, 100, 103, 110, 120, 121]
54
+ capability = [50, 60, 61, 62, 70, 72, 75, 80, 86, 87, 89, 90, 100, 103, 120, 121]
55
55
  elsif cuda_version >= Gem::Version.new("12.8")
56
56
  # CUDA 12.8
57
- capability = [50, 60, 61, 62, 70, 72, 75, 80, 86, 87, 89, 90, 100, 103, 110, 120]
57
+ capability = [50, 60, 61, 62, 70, 72, 75, 80, 86, 87, 89, 90, 100, 120]
58
58
  elsif cuda_version >= Gem::Version.new("12.0")
59
59
  # CUDA 12.0 – 12.6
60
60
  capability = [50, 60, 61, 62, 70, 72, 75, 80, 86, 87, 89, 90]
data/CHANGELOG.md CHANGED
@@ -1,4 +1,10 @@
1
- # 0.5.2 (2025/01/25)
1
+ # 0.5.3 (2026/04/26)
2
+
3
+ Fixes:
4
+
5
+ * Fix unsupported gpu architecture errors in CUDA 12.8 and 12.9 (#156)
6
+
7
+ # 0.5.2 (2026/01/25)
2
8
 
3
9
  Fixes:
4
10
 
data/cumo.gemspec CHANGED
@@ -19,7 +19,7 @@ Gem::Specification.new do |spec|
19
19
  spec.required_ruby_version = ">= 3.0.0"
20
20
 
21
21
  spec.files = `git ls-files -z`.split("\x0").reject do |f|
22
- f.match(%r{^(test|spec|features|docker)/})
22
+ f.match(%r{^(.github|test|spec|features|docker)/})
23
23
  end
24
24
  spec.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
25
25
  spec.bindir = "exe"
@@ -10,7 +10,7 @@ extern "C" {
10
10
  #endif
11
11
  #endif
12
12
 
13
- #define CUMO_VERSION "0.5.2"
13
+ #define CUMO_VERSION "0.5.3"
14
14
  #define CUMO_VERSION_CODE 51
15
15
 
16
16
  bool cumo_compatible_mode_enabled_p();
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cumo
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.2
4
+ version: 0.5.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Naotoshi Seo
@@ -331,7 +331,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
331
331
  - !ruby/object:Gem::Version
332
332
  version: '0'
333
333
  requirements: []
334
- rubygems_version: 4.0.4
334
+ rubygems_version: 4.0.6
335
335
  specification_version: 4
336
336
  summary: Cumo is CUDA aware numerical library whose interface is highly compatible
337
337
  with Ruby Numo