Displaying 20 results from an estimated 20 matches for "radixsort".
2016 Feb 05
2
building R Devel --enable-R-shlib
...b/tcl8.6/tclConfig.sh \
--with-tk-config=/usr/lib/tk8.6/tkConfig.sh
make
---<--------------------cut here---------------end--------------------->---
the build shows several warnings about function dataptr:
---<--------------------cut here---------------start------------------->---
radixsort.c:1643:10: warning: implicit declaration of function ?DATAPTR? [-Wimplicit-function-declaration]
xd = DATAPTR(x);
^
radixsort.c:1643:8: warning: assignment makes pointer from integer without a cast [-Wint-conversion]
xd = DATAPTR(x);
^
radixsort.c:1735:5: warning: assign...
2016 Feb 05
0
building R Devel --enable-R-shlib
...ig.sh \
| --with-tk-config=/usr/lib/tk8.6/tkConfig.sh
| make
| ---<--------------------cut here---------------end--------------------->---
|
| the build shows several warnings about function dataptr:
|
| ---<--------------------cut here---------------start------------------->---
| radixsort.c:1643:10: warning: implicit declaration of function ?DATAPTR? [-Wimplicit-function-declaration]
| xd = DATAPTR(x);
| ^
| radixsort.c:1643:8: warning: assignment makes pointer from integer without a cast [-Wint-conversion]
| xd = DATAPTR(x);
| ^
| radixsort.c:1735:5: war...
2020 May 08
0
base::order making available retGrp and sortStr options for radix method?
...erv for fast radix sort based grouping. To
do this the source code for forderv was copied and deparallelized. Now I
realized that an earlier deparallelized version of forderv is already fully
available in base R:
https://github.com/wch/r-source/blob/5a156a0865362bb8381dcd69ac335f5174a4f60c/src/main/radixsort.c
This function is called in base::order(..., method = "radix"). I was mildly
aware that data.table ordering has made it into base R but I first thought
the grouping feature of forder had been removed. However in fact it is
there but disabled. base::order lines 31-35 reads:
if (method...
2016 Feb 09
1
build fails with --enable-strict-barrier
...b/tcl8.6/tclConfig.sh \
--with-tk-config=/usr/lib/tk8.6/tkConfig.sh
make
---<--------------------cut here---------------end--------------------->---
the build shows several warnings about function dataptr:
---<--------------------cut here---------------start------------------->---
radixsort.c:1643:10: warning: implicit declaration of function ?DATAPTR? [-Wimplicit-function-declaration]
xd = DATAPTR(x);
^
radixsort.c:1643:8: warning: assignment makes pointer from integer without a cast [-Wint-conversion]
xd = DATAPTR(x);
^
radixsort.c:1735:5: warning: assign...
2024 Apr 10
1
Problem with base::order
...cycled as
>> necessary. For the other methods, it must be length one.
> na.last=c(T,T,T),
I think this is supposed to be a scalar, no matter the sort method. At
the very least, I don't see it documented to accept a logical vector,
and the C code in both src/main/sort.c and src/main/radixsort.c treats
the argument as a scalar (using asLogical(...), not LOGICAL(...) on the
R value).
--
Best regards,
Ivan
2017 Oct 11
1
Notes for new R version 3.4.2
Dear officers,
Sorry to bother you.
Recently, I have installed the R version 3.4.2. But some cautions appear in
the console as the following:
Note: no visible global function definition for 'radixsort'
This note didn't affect the normal operation of some statistical packages.
BUT it does great affect the ggplot2 and the other graphics systems in my
PC.
So, what can I do to fix this bugs or is there any remedy to make things ok?
Thanks for your reading!
Best!
Kai Luo
Ph.D. candidate
P...
2016 May 18
2
Latest R-devel build failing on OS X
...ents.o gram.o gram-ex.o graphics.o grep.o identical.o inlined.o inspect.o internet.o iosupport.o lapack.o list.o localecharset.o logic.o main.o mapply.o match.o memory.o names.o objects.o options.o paste.o platform.o plot.o plot3d.o plotmath.o print.o printarray.o printvector.o printutils.o qsort.o radixsort.o random.o raw.o registration.o relop.o rlocale.o saveload.o scan.o seq.o serialize.o sort.o source.o split.o sprintf.o startup.o subassign.o subscript.o subset.o summary.o sysutils.o times.o unique.o util.o version.o g_alab_her.o g_cntrlify.o g_fontdb.o g_her_glyph.o xxxpr.o `ls ../unix/*.o ../a...
2016 May 18
3
Latest R-devel build failing on OS X
...ents.o gram.o gram-ex.o graphics.o grep.o identical.o inlined.o inspect.o internet.o iosupport.o lapack.o list.o localecharset.o logic.o main.o mapply.o match.o memory.o names.o objects.o options.o paste.o platform.o plot.o plot3d.o plotmath.o print.o printarray.o printvector.o printutils.o qsort.o radixsort.o random.o raw.o registration.o relop.o rlocale.o saveload.o scan.o seq.o serialize.o sort.o source.o split.o sprintf.o startup.o subassign.o subscript.o subset.o summary.o sysutils.o times.o unique.o util.o version.o g_alab_her.o g_cntrlify.o g_fontdb.o g_her_glyph.o xxxpr.o `ls ../unix/*.o ../a...
2016 May 18
0
Latest R-devel build failing on OS X
...ents.o gram.o gram-ex.o graphics.o grep.o identical.o inlined.o inspect.o internet.o iosupport.o lapack.o list.o localecharset.o logic.o main.o mapply.o match.o memory.o names.o objects.o options.o paste.o platform.o plot.o plot3d.o plotmath.o print.o printarray.o printvector.o printutils.o qsort.o radixsort.o random.o raw.o registration.o relop.o rlocale.o saveload.o scan.o seq.o serialize.o sort.o source.o split.o sprintf.o startup.o subassign.o subscript.o subset.o summary.o sysutils.o times.o unique.o util.o version.o g_alab_her.o g_cntrlify.o g_fontdb.o g_her_glyph.o xxxpr.o `ls ../unix/*.o ../a...
2024 Apr 10
1
Problem with base::order
Hi,
when I execute
order(letters, LETTERS, 1:26)
then everything is fine. But if I execute
order(letters, LETTERS, 1:26, na.last=c(T,T,T), decreasing=c(F,F,F))
I get the error message
Error in method != "radix" && !is.na(na.last) :
'length = 3' in constraint to 'logical(1)'
Shouldn't both give the same result?
Sigbert
2008 Dec 13
3
[OT] stable algorithm with complexity O(n)
Hi guys,
i am really sorry for making offtopic, hope you will not kill me, but
this is for me life important problem which needs to be solved within
next 12 hours..
I have to create stable algorithm for sorting n numbers from interval
[1,n^2] with time complexity O(n) .
Can someone please give me a hint. Would be very very thankful!
Thanks in advance!
D.
2016 May 18
0
Latest R-devel build failing on OS X
...ents.o gram.o gram-ex.o graphics.o grep.o identical.o inlined.o inspect.o internet.o iosupport.o lapack.o list.o localecharset.o logic.o main.o mapply.o match.o memory.o names.o objects.o options.o paste.o platform.o plot.o plot3d.o plotmath.o print.o printarray.o printvector.o printutils.o qsort.o radixsort.o random.o raw.o registration.o relop.o rlocale.o saveload.o scan.o seq.o serialize.o sort.o source.o split.o sprintf.o startup.o subassign.o subscript.o subset.o summary.o sysutils.o times.o unique.o util.o version.o g_alab_her.o g_cntrlify.o g_fontdb.o g_her_glyph.o xxxpr.o `ls ../unix/*.o ../a...
2016 May 18
2
Latest R-devel build failing on OS X
...ents.o gram.o gram-ex.o graphics.o grep.o identical.o inlined.o inspect.o internet.o iosupport.o lapack.o list.o localecharset.o logic.o main.o mapply.o match.o memory.o names.o objects.o options.o paste.o platform.o plot.o plot3d.o plotmath.o print.o printarray.o printvector.o printutils.o qsort.o radixsort.o random.o raw.o registration.o relop.o rlocale.o saveload.o scan.o seq.o serialize.o sort.o source.o split.o sprintf.o startup.o subassign.o subscript.o subset.o summary.o sysutils.o times.o unique.o util.o version.o g_alab_her.o g_cntrlify.o g_fontdb.o g_her_glyph.o xxxpr.o `ls ../unix/*.o ../a...
2017 Apr 20
1
Intel MKL compiling issue
...ents.o gram.o gram-ex.o graphics.o grep.o identical.o inlined.o inspect.o internet.o iosupport.o lapack.o list.o localecharset.o logic.o main.o mapply.o match.o memory.o names.o objects.o options.o paste.o platform.o plot.o plot3d.o plotmath.o print.o printarray.o printvector.o printutils.o qsort.o radixsort.o random.o raw.o registration.o relop.o rlocale.o saveload.o scan.o seq.o serialize.o sort.o source.o split.o sprintf.o startup.o subassign.o subscript.o subset.o summary.o sysutils.o times.o unique.o util.o version.o g_alab_her.o g_cntrlify.o g_fontdb.o g_her_glyph.o xxxpr.o `ls ../unix/*.o ../a...
2016 May 18
2
Latest R-devel build failing on OS X
Dear R-devel,
The latest version of R-devel (05-17) is throwing an error for me when building on OS X (v 10.11.4):
making Rembedded.d from Rembedded.c
making dynload.d from dynload.c
making system.d from system.c
making sys-unix.d from sys-unix.c
making sys-std.d from sys-std.c
making X11.d from X11.c
clang -I. -I../../src/include -I../../src/include -I/usr/local/include -DHAVE_CONFIG_H
2016 May 19
0
Latest R-devel build failing on OS X
...; inlined.o inspect.o internet.o iosupport.o lapack.o
>> list.o localecharset.o logic.o main.o mapply.o match.o
>> memory.o names.o objects.o options.o paste.o platform.o
>> plot.o plot3d.o plotmath.o print.o printarray.o
>> printvector.o printutils.o qsort.o radixsort.o random.o
>> raw.o registration.o relop.o rlocale.o saveload.o scan.o
>> seq.o serialize.o sort.o source.o split.o sprintf.o
>> startup.o subassign.o subscript.o subset.o summary.o
>> sysutils.o times.o unique.o util.o version.o g_alab_her.o
>> g_c...
2016 May 18
0
Latest R-devel build failing on OS X
...ents.o gram.o gram-ex.o graphics.o grep.o identical.o inlined.o inspect.o internet.o iosupport.o lapack.o list.o localecharset.o logic.o main.o mapply.o match.o memory.o names.o objects.o options.o paste.o platform.o plot.o plot3d.o plotmath.o print.o printarray.o printvector.o printutils.o qsort.o radixsort.o random.o raw.o registration.o relop.o rlocale.o saveload.o scan.o seq.o serialize.o sort.o source.o split.o sprintf.o startup.o subassign.o subscript.o subset.o summary.o sysutils.o times.o unique.o util.o version.o g_alab_her.o g_cntrlify.o g_fontdb.o g_her_glyph.o xxxpr.o `ls ../unix/*.o ../a...
2018 May 24
1
Trouble building R 3.5.0 under Ubuntu 18.04 (Bionic Beaver)
...nts.o gram.o gram-
ex.o graphics.o grep.o identical.o inlined.o inspect.o internet.o
iosupport.o lapack.o list.o localecharset.o logic.o main.o mapply.o
match.o memory.o names.o objects.o options.o paste.o platform.o plot.o
plot3d.o plotmath.o print.o printarray.o printvector.o printutils.o
qsort.o radixsort.o random.o raw.o registration.o relop.o rlocale.o
saveload.o scan.o seq.o serialize.o sort.o source.o split.o sprintf.o
startup.o subassign.o subscript.o subset.o summary.o sysutils.o times.o
unique.o util.o version.o g_alab_her.o g_cntrlify.o g_fontdb.o
g_her_glyph.o xxxpr.o `ls ../unix/*.o ../a...
2017 Apr 20
2
Intel MKL compiling issue
Dear R-developers,
I would appreciate any insights over compiling R 3.4 with Intel MKL -- I have been successful until R 3.3.3 but now it stops complaining about pcre though it worked without Intel MKL as follows,
./configure LDFLAGS=-L/genetics/data/software/lib CFLAGS=-fPIC -I/genetics/data/software/include --enable-R-shlib
I have used,
export MKL_NUM_THREADS=15
export
2018 Feb 09
1
R Compilation gets stuck on Windows 64
Please note that building R on Windows is documented in "R Installation
and Administration", including links to external software. Particularly
there is a link to texinfo which is part of Rtools. The documentation is
maintained and it is a sufficient source of information for building R
on Windows.
https://cran.r-project.org/doc/manuals/r-release/R-admin.html