numru-narray 1.0.2 → 1.0.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
  SHA1:
3
- metadata.gz: 245218221c00f1e210e6743a9dab4c1baf277791
4
- data.tar.gz: d18efa11c4da83b5b1de3e59146c9c245d8ecd32
3
+ metadata.gz: 8fae398b2a574f446d4795f16d7e9a2017cf3549
4
+ data.tar.gz: 159f618ce789c1d22f0a7c526ec483cced158d09
5
5
  SHA512:
6
- metadata.gz: 6222fdcaa4d98cb07714873c7c0002d701e86b35f2184125d995b59cc6539c4bb615568bb67e16b970420c885defd615a75963861a2a9fd557c4fd2db36f9703
7
- data.tar.gz: cb5f9c61d30a56279a301da5051a8a15af9c05917b36371b42263dbb2540d93391f66f5a8d26c9a517038ca02f8124d605a0053318f7f54734b182d8c3008938
6
+ metadata.gz: 5e9b4427c80a94ffbf1f0f8623123a516908bab213f2718045650dfbe9456092e6648cf45962180def015665ac067a568b33f732e26d41f1519f76dc63a61a01
7
+ data.tar.gz: 02c40afc87a71a68bb7b735488d734cc9f2287f66e9413ed75d6088a74f738d5f013a26f6f64858e6e9cedd2518546de1a734107df62be63f3fab4d71cfdff5d
data/ChangeLog CHANGED
@@ -1,3 +1,11 @@
1
+ 2016-02-15 Seiya Nishizawa <seiya@gfd-dennou.org>
2
+
3
+ * fixed wrong path for the C extension
4
+
5
+ 2016-02-15 Seiya Nishizawa <seiya@gfd-dennou.org>
6
+
7
+ * update version
8
+
1
9
  2016-02-15 Seiya Nishizawa <seiya@gfd-dennou.org>
2
10
 
3
11
  * fixed wrong integer type in the lu solver
@@ -120,4 +120,4 @@ have_type("uint64_t", header)
120
120
  $objs = srcs.collect{|i| i+".o"}
121
121
 
122
122
  create_conf_h("narray_config.h")
123
- create_makefile("numru/narray")
123
+ create_makefile("numru/narray/narray")
@@ -27,8 +27,8 @@
27
27
  #define NARRAY_VERSION "0.6.0.8"
28
28
  #define NARRAY_VERSION_CODE 608
29
29
 
30
- #define NUMRU_NARRAY_VERSION "1.0.2"
31
- #define NUMRU_NARRAY_VERSION_CODE 102
30
+ #define NUMRU_NARRAY_VERSION "1.0.3"
31
+ #define NUMRU_NARRAY_VERSION_CODE 103
32
32
 
33
33
  /* big memory support */
34
34
  #define NARRAY_BIGMEM 1
@@ -1,4 +1,4 @@
1
1
  unless ENV["OMP_NUM_THREADS"]
2
2
  ENV["OMP_NUM_THREADS"] = "1"
3
3
  end
4
- require "numru/narray/narray"
4
+ require "numru/narray/narray.so"
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: numru-narray
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.2
4
+ version: 1.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Seiya Nishizawa