Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

13
votes
11answers
3k views

How to increase performance of memcpy

Summary: memcpy seems unable to transfer over 2GB/sec on my system in a real or test application. What can I do to get faster memory-to-memory copies? Full details: As part of a data capture ...
5
votes
4answers
546 views

Efficient memory bandwidth use for streaming

I have an application that streams through 250 MB of data, applying a simple and fast neural-net threshold function to the data chunks (which are just 2 32-bit words each). Based on the result of the ...
3
votes
3answers
122 views

Can the use of pointers cause memory clogging?

Suppose I have this structures in c++: class A{ public: B b; } class B{ public: C c; } class C{ public: double x; double y; double z; double s; function Usize(){ ...
2
votes
2answers
206 views

python for-loop slower each iteration

I am trying to optimize some python code (to speed up some matrix operations), my code is something similar to this one (my real dataset is also similar to 'gps'), import numpy as np gps = ...
1
vote
1answer
109 views

CUDA: Memory performance, What is Global memory bandwidth

I am learning about CUDA optimizations. I found a presentation on this link: Optimizing CUDA by Paulius Micikevicius. In this presentation, they talk about MAXIMIZE GLOBAL MEMORY BANDWIDTH , ...
0
votes
2answers
50 views

Where and how to host our web app for high performance and availability

I have been working an application using PHP & MySql on Codeigniter framework. It is finished and I am testing it before getting online. I expect about a hundred users within the next few months. ...