search for: dsqrt

Displaying 3 results from an estimated 3 matches for "dsqrt".

Did you mean: sqrt
2007 Apr 11
3
Fortran coding standards
...) IMPLICIT NONE should be used and all variables declared. Although IMPLICIT NONE is not standard Fortran 77, it is standard Fortran 90 and is supported by g77. Experienced Fortranners know that IMPLICIT NONE catches errors. Another defect is the use of specific intrinsic functions such as DSQRT. There is no need to use this, since the SQRT function is generic, handling both single and double precision arguments. Maybe there should R coding standards to address such issues. I hope that eventually the Fortran code in R will use the modern features of Fortran 90 and later standards, using t...
2004 Aug 31
1
subselect install problem
Trying to install subselect v0.8 on Redhat 7.3 and R 1.8.1 fails (below). Any help is greatly appreciated. Xiao-Jun * Installing *source* package 'subselect' ... ** libs f2c < anneal.f > anneal.c anneal: Error on line 263: Declaration error for fica: adjustable dimension on non-argument Error on line 263: Declaration error for valp: adjustable dimension on non-argument Error
2015 Feb 20
10
[PATCH 01/11] nvc0/ir: add emission of dadd/dmul/dmad opcodes, fix minmax
Signed-off-by: Ilia Mirkin <imirkin at alum.mit.edu> --- .../drivers/nouveau/codegen/nv50_ir_emit_nvc0.cpp | 66 +++++++++++++++++++++- 1 file changed, 63 insertions(+), 3 deletions(-) diff --git a/src/gallium/drivers/nouveau/codegen/nv50_ir_emit_nvc0.cpp b/src/gallium/drivers/nouveau/codegen/nv50_ir_emit_nvc0.cpp index dfb093c..e38a3b8 100644 ---