j: update to 901.e.
This commit is contained in:
parent
fb1d3a799a
commit
0eeeb77101
|
@ -0,0 +1,34 @@
|
||||||
|
--- jsrc/cip.c 2020-01-30 13:31:22.463687182 +0900
|
||||||
|
+++ jsrc/cip.c 2020-01-30 13:33:47.707458248 +0900
|
||||||
|
@@ -3,9 +3,9 @@
|
||||||
|
/* */
|
||||||
|
/* Conjunctions: Inner Product */
|
||||||
|
|
||||||
|
-#include "../../jsource/jsrc/j.h"
|
||||||
|
-#include "../../jsource/jsrc/vasm.h"
|
||||||
|
-#include "../../jsource/jsrc/gemm.h"
|
||||||
|
+#include "j.h"
|
||||||
|
+#include "vasm.h"
|
||||||
|
+#include "gemm.h"
|
||||||
|
|
||||||
|
#define MAXAROWS 384 // max rows of a that we can process to stay in L2 cache a strip is m*CACHEHEIGHT, z strip is m*CACHEWIDTH this is wired to 128*3 - check if you chage
|
||||||
|
|
||||||
|
@@ -1057,15 +1057,15 @@
|
||||||
|
switch(c){
|
||||||
|
case CPLUSDOT:
|
||||||
|
#define F |=
|
||||||
|
-#include "../../jsource/jsrc/cip_t.h"
|
||||||
|
+#include "cip_t.h"
|
||||||
|
break;
|
||||||
|
case CSTARDOT:
|
||||||
|
#define F &=
|
||||||
|
-#include "../../jsource/jsrc/cip_t.h"
|
||||||
|
+#include "cip_t.h"
|
||||||
|
break;
|
||||||
|
case CNE:
|
||||||
|
#define F ^=
|
||||||
|
-#include "../../jsource/jsrc/cip_t.h"
|
||||||
|
+#include "cip_t.h"
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
R z;
|
|
@ -1,20 +1,19 @@
|
||||||
# Template file for 'j'
|
# Template file for 'j'
|
||||||
pkgname=j
|
pkgname=j
|
||||||
_vmaj=901
|
_vmaj=901
|
||||||
_vmin=d
|
_vmin=e
|
||||||
_vrel=${_vmaj}-release${_vmin:+-}${_vmin}
|
_vrel=${_vmaj}-release${_vmin:+-}${_vmin}
|
||||||
version=${_vmaj}.${_vmin}
|
version=${_vmaj}.${_vmin}
|
||||||
revision=1
|
revision=1
|
||||||
archs="aarch64* x86_64*"
|
archs="aarch64* x86_64*"
|
||||||
wrksrc="jsource-j${_vrel}"
|
wrksrc="jsource-j${_vrel}"
|
||||||
hostmakedepends="bc"
|
|
||||||
makedepends="libedit-devel libgomp-devel libomp-devel"
|
makedepends="libedit-devel libgomp-devel libomp-devel"
|
||||||
short_desc="Modern, high-performance, ASCII-based successor to APL"
|
short_desc="Modern, high-performance, ASCII-based successor to APL"
|
||||||
maintainer="B. Wilson <x@wilsonb.com>"
|
maintainer="B. Wilson <x@wilsonb.com>"
|
||||||
license="GPL-3.0-or-later"
|
license="GPL-3.0-or-later"
|
||||||
homepage="https://jsoftware.com/"
|
homepage="https://jsoftware.com/"
|
||||||
distfiles="https://github.com/jsoftware/jsource/archive/j${_vrel}.tar.gz"
|
distfiles="https://github.com/jsoftware/jsource/archive/j${_vrel}.tar.gz"
|
||||||
checksum=5d581c3587253566375f4229dd76ec4108f6eea80d7e4ccf5725328c9f8b408a
|
checksum=23d1cac75ae8426d4e301b178fac1f29e85d7a0c80cefe4740c104d9c1eeab7a
|
||||||
|
|
||||||
_jsz="j${XBPS_TARGET_WORDSIZE}"
|
_jsz="j${XBPS_TARGET_WORDSIZE}"
|
||||||
_jtype="release"
|
_jtype="release"
|
||||||
|
|
|
@ -1,6 +0,0 @@
|
||||||
site='https://github.com/jsoftware/jsource/releases'
|
|
||||||
_vmaj=${version%.*}
|
|
||||||
_vmin=${version#${_vmaj}}
|
|
||||||
_vmin=${_vmin#.}
|
|
||||||
version="${_vmaj}-release${_vmin:+-}${_vmin}"
|
|
||||||
pattern='tag/j\K[\d]+-release(-.*)?(?=">)'
|
|
Loading…
Reference in New Issue