- Update to version 20200124.526acc4 (1.1.1)

OBS-URL: https://build.opensuse.org/package/show/devel:languages:ocaml/ocaml-parmap?expand=0&rev=45
This commit is contained in:
Olaf Hering 2020-02-06 16:18:01 +00:00 committed by Git OBS Bridge
parent 1e998f87ab
commit d9ed742550
6 changed files with 7 additions and 23 deletions

View File

@ -1,7 +1,7 @@
<services>
<service name="tar_scm" mode="disabled">
<param name="filename">ocaml-parmap</param>
<param name="revision">d9bcb31921e68eba88e798a68fc366c88c688c36</param>
<param name="revision">526acc4d2dd0f8949dfd53fa1ff015307c970899</param>
<param name="scm">git</param>
<param name="url">https://github.com/rdicosmo/parmap.git</param>
<param name="versionformat">%cd.%h</param>

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:3696df4fdaa20c696a3458e3c33870c3694455733533b783caaf4bfad05a5e64
size 31228

View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:e73a703e0293484594254ac004f78aee618dbbd13be71f6e5e8dc223c7fe2110
size 31236

View File

@ -1,7 +1,7 @@
-------------------------------------------------------------------
Tue Jan 28 18:19:20 UTC 2020 - ohering@suse.de
Thu Feb 6 16:16:16 UTC 2020 - ohering@suse.de
- Update to version 20200123.d9bcb31. (1.1)
- Update to version 20200124.526acc4 (1.1.1)
-------------------------------------------------------------------
Fri Nov 1 12:34:56 UTC 2019 - ohering@suse.de

View File

@ -17,7 +17,7 @@
Name: ocaml-parmap
Version: 20200123.d9bcb31
Version: 20200124.526acc4
Release: 0
%{?ocaml_preserve_bytecode}
Summary: Multicore architecture exploitation for OCaml programs with minimal modifications
@ -76,7 +76,6 @@ export nProcs=2
%ocaml_dune_test
%files -f %{name}.files
%{_bindir}/*
%files devel -f %{name}.files.devel

15
x.patch
View File

@ -1,15 +0,0 @@
--- a/tests/floatscale.ml
+++ b/tests/floatscale.ml
@@ -30,7 +30,11 @@ let env_string = env_param (fun x -> x)
let nIters = env_int "nIters" 1
-let nData = env_int "nData" 10000000
+let nData_default =
+ let default = 10000000 in
+ min (Sys.max_array_length / 2) default
+
+let nData = env_int "nData" nData_default
let nProcs = env_int "nProcs" 8