python (12.9k questions)
javascript (9.2k questions)
reactjs (4.7k questions)
java (4.2k questions)
java (4.2k questions)
c# (3.5k questions)
c# (3.5k questions)
html (3.3k questions)
Error: cannot allocate vector of size XX mb in R
So I have the following code:
customers %>%
select(v1,v2,v3,v4,v5
ID
) %>%
pivot_longer(-ID, names_to = "Variables", values_to = "count") %>%
fi...
John Thomas
Votes: 0
Answers: 0
how to measure method allocation rate?
Is there any profiler or tool (jconsole, jfr, VisualVM, ... ) for the JVM which shows methods along their allocation rate?
I mean, something like this
org.package1.Class1.method1, 145k
org.package2.Cl...
usuario
Votes: 0
Answers: 1
Can I reduce size of array in CUDA
I have allocated memory for 3d array using cudaMalloc3D - after execution of first kernel I established that I do not need part of it.
For example in pseudo code :
A = [100,100,100]
kernel()// data of...
Jakub Mitura
Votes: 0
Answers: 1
Performance assigning and copying with StaticArrays.jl in Julia
I was thinking of using the package StaticArrays.jl to enhance the performance of my code. However, I only use arrays to store computed variables and use them later after certain conditions are set. H...

drandran12
Votes: 0
Answers: 2