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 +4 -4
- data/3rd_party/mkmf-cu/lib/mkmf-cu/cli.rb +2 -2
- data/CHANGELOG.md +7 -1
- data/cumo.gemspec +1 -1
- data/ext/cumo/include/cumo.h +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 3ea033fff4a77a42e911f54418e264dd3467372c41ffebcfb693e45b3f5f6faf
|
|
4
|
+
data.tar.gz: 7cdc86588d27d4819aaba0b994ed178f9d028cc4441c557c1b403a9570b56b0e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
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,
|
|
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,
|
|
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
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"
|
data/ext/cumo/include/cumo.h
CHANGED
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.
|
|
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.
|
|
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
|