Click here to Skip to main content
15,889,096 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
QuestionLarge data sets Pin
Obliterator19-Sep-05 5:37
Obliterator19-Sep-05 5:37 
AnswerRe: Large data sets Pin
Chris Losinger19-Sep-05 5:50
professionalChris Losinger19-Sep-05 5:50 
GeneralRe: Large data sets Pin
Obliterator19-Sep-05 6:11
Obliterator19-Sep-05 6:11 
AnswerRe: Large data sets Pin
Maximilien19-Sep-05 6:49
Maximilien19-Sep-05 6:49 
GeneralRe: Large data sets Pin
Obliterator19-Sep-05 7:25
Obliterator19-Sep-05 7:25 
GeneralRe: Large data sets Pin
ha_ha_ha19-Sep-05 8:42
ha_ha_ha19-Sep-05 8:42 
GeneralRe: Large data sets Pin
Obliterator21-Sep-05 4:15
Obliterator21-Sep-05 4:15 
GeneralRe: Large data sets Pin
ha_ha_ha23-Sep-05 5:06
ha_ha_ha23-Sep-05 5:06 
My guess is you are running out of virtual memory still.

Other members' suggestions such as using STL list or memory mapped files sound good to look into more as well.

But I would also consider whether your application really needs to work with the entire dataset in memory all at once. For example, is it possible to allocate a fixed cache of say 1 million points, and read in a million points, process them, write them back out, etc. The general idea is to see if your requirements allow you to load/unload just a portion of the dataset on demand, rather than all at once up front.


AnswerRe: Large data sets Pin
Bob Stanneveld19-Sep-05 8:06
Bob Stanneveld19-Sep-05 8:06 
GeneralRe: Large data sets Pin
Obliterator21-Sep-05 4:18
Obliterator21-Sep-05 4:18 
AnswerRe: Large data sets Pin
El Corazon19-Sep-05 8:49
El Corazon19-Sep-05 8:49 
GeneralRe: Large data sets Pin
Obliterator21-Sep-05 4:51
Obliterator21-Sep-05 4:51 
GeneralRe: Large data sets Pin
El Corazon21-Sep-05 6:06
El Corazon21-Sep-05 6:06 
GeneralRe: Large data sets Pin
Obliterator21-Sep-05 6:49
Obliterator21-Sep-05 6:49 
GeneralRe: Large data sets Pin
El Corazon21-Sep-05 15:21
El Corazon21-Sep-05 15:21 
GeneralRe: Large data sets Pin
Jörgen Sigvardsson19-Sep-05 10:43
Jörgen Sigvardsson19-Sep-05 10:43 
GeneralRe: Large data sets Pin
Obliterator21-Sep-05 4:43
Obliterator21-Sep-05 4:43 
GeneralRe: Large data sets Pin
Jörgen Sigvardsson21-Sep-05 9:25
Jörgen Sigvardsson21-Sep-05 9:25 
Questionwhere to define "Enable3dControlsStatic();" Pin
valerie9919-Sep-05 5:34
valerie9919-Sep-05 5:34 
AnswerRe: where to define "Enable3dControlsStatic();" Pin
David Crow19-Sep-05 7:40
David Crow19-Sep-05 7:40 
AnswerRe: where to define "Enable3dControlsStatic();" Pin
Michael Dunn19-Sep-05 16:03
sitebuilderMichael Dunn19-Sep-05 16:03 
GeneralRe: where to define "Enable3dControlsStatic();" Pin
David Crow21-Sep-05 3:36
David Crow21-Sep-05 3:36 
GeneralRe: where to define "Enable3dControlsStatic();" Pin
Michael Dunn22-Sep-05 6:15
sitebuilderMichael Dunn22-Sep-05 6:15 
GeneralRe: where to define "Enable3dControlsStatic();" Pin
David Crow22-Sep-05 6:59
David Crow22-Sep-05 6:59 
GeneralRe: where to define "Enable3dControlsStatic();" Pin
Michael Dunn22-Sep-05 7:10
sitebuilderMichael Dunn22-Sep-05 7:10 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.