Displaying 8 results from an estimated 8 matches for "zgemm".
Did you mean:
gemm
2005 Apr 07
0
R 2.1.0 (beta) on IRIX
...y isn't enough.
Minor problems
--------------
3) Make
IRIX make does not like continuation lines followed only by a comment.
So, for example, these lines from src/appl/Makefile.in
OBJECTS = $(SOURCES_C:.c=.o) $(SOURCES_F:.f=.o)\
@USE_EXTERNAL_BLAS_FALSE@ blas.o @COMPILE_DOUBLE_COMPLEX_FALSE@ zgemm.o
which become
OBJECTS = $(SOURCES_C:.c=.o) $(SOURCES_F:.f=.o) \
# blas.o zgemm.o
in the Makefile, cause an error. I have worked around this by joining
the two lines, but the problem recurs several times in the tests
directory. I shall probably fall back on gmake.
4) Building in a setgid dir...
2010 Jan 18
1
A question about build R-2.10.0 on HP-UX ia64 server.
Hi R usrs,
I want to build R-2.10.0 on HP-UX, but I got following error message:
ld: Unsatisfied symbol "zgemm" in file CHOLMOD.a[cholmod_l_super_numeric.o]
ld: Unsatisfied symbol "zgemv" in file CHOLMOD.a[cholmod_l_super_solve.o]
ld: Unsatisfied symbol "zherk" in file CHOLMOD.a[cholmod_l_super_numeric.o]
ld: Unsatisfied symbol "ztrsm" in file CHOLMOD.a[cholmod_l_super_num...
2005 Mar 29
1
final stages of installing R - please help?
...loglin.o
lowess.o machar.o maxcol.o massdist.o pretty.o rcont.o rowsum.o
splines.o stem.o strsignif.o tabulate.o uncmin.o zeroin.o ch2inv.o
chol.o dchdc.o dpbfa.o dpbsl.o dpoco.o dpodi.o dpofa.o dposl.o dqrdc.o
dqrdc2.o dqrls.o dqrsl.o dqrutl.o dsvdc.o dtrco.o dtrsl.o eigen.o
lminfl.o blas.o zgemm.o
make[3]: *** [libappl.a] Error 1
make[3]: Leaving directory `/home/gruen/Applications/R-2.0.1/src/appl'
make[2]: *** [R] Error 2
make[2]: Leaving directory `/home/gruen/Applications/R-2.0.1/src/appl'
make[1]: *** [R] Error 1
make[1]: Leaving directory `/home/gruen/Applications/R-2.0.1/src...
2006 Feb 22
2
How can I see how %*% is implemented?
I would like to see how the matrix multiplication operator %*% is implemented (because I want to see which external Fortran/C routines are used). How can I do so?
Best
S??ren
2010 Jan 18
0
Build R-2.10.0 on HP-UX ia64 server
Hi All,
I want to build R-2.10.0 on HP-UX, but I got following error message:
ld: Unsatisfied symbol "zgemm" in file CHOLMOD.a[cholmod_l_super_numeric.o]
ld: Unsatisfied symbol "zgemv" in file CHOLMOD.a[cholmod_l_super_solve.o]
ld: Unsatisfied symbol "zherk" in file CHOLMOD.a[cholmod_l_super_numeric.o]
ld: Unsatisfied symbol "ztrsm" in file CHOLMOD.a[cholmod_l_super_num...
2006 Feb 07
0
[R] R compile on AIX 5.2
...711-317 ERROR: Undefined symbol: dqrrsd
ld: 0711-317 ERROR: Undefined symbol: dqrxb
ld: 0711-317 ERROR: Undefined symbol: dsvdc
ld: 0711-317 ERROR: Undefined symbol: dtrsl
ld: 0711-317 ERROR: Undefined symbol: dtrco
ld: 0711-317 ERROR: Undefined symbol: lminfl
ld: 0711-317 ERROR: Undefined symbol: .zgemm
ld: 0711-317 ERROR: Undefined symbol: .dsyrk
ld: 0711-317 ERROR: Undefined symbol: .dtrsm
ld: 0711-317 ERROR: Undefined symbol: .dcopy
ld: 0711-317 ERROR: Undefined symbol: .dtrsl
ld: 0711-317 ERROR: Undefined symbol: .ddot
ld: 0711-317 ERROR: Undefined symbol: .dnrm2
ld: 0711-317 ERROR: Undefined...
2017 Oct 13
3
[RFC] Polly Status and Integration
...nner tiles. This can be a generalization
of Polly's matrix-multiplication optimization.
- (Partial) unrolling of loops
- Specializing loops for specific inputs (loop-unswitching)
- Mixed-LP scheduling
- OpenMP-parallelize bands
- Extract accelerator kernels
- Detect loop idoms (memset, memcopy, zgemm, etc.) to call library
functions instead
- ...
Transformations are responsible to not violate dependencies.
The current Polly would become one of the transformations. It finds
the largest loop body where all size parameters are invariant and
translate the subtree to an isl schedule tree. Isl woul...
2017 Sep 01
10
[RFC] Polly Status and Integration
**
*Hi everyone,As you may know, stock LLVM does not provide the kind of
advanced loop transformations necessary to provide good performance on
many applications. LLVM's Polly project provides many of the required
capabilities, including loop transformations such as fission, fusion,
skewing, blocking/tiling, and interchange, all powered by
state-of-the-art dependence analysis. Polly also