This is so the rich and powerful get world class models before the rest of us, the reality is dumb politicians and rich people don't realize that dense models are on there way out and MOE models are coming in, meaning after PCI-E 8 spec goes live, we run via streaming world class frontier models on a 16gb graphics card.
Question
juan
primitive bool variables have "false" by default.
Is there a better way of initializing an array of boolean value to "true"?
Normally this is the way :
for(int i = 0; i < n; i++) array = true;
Is there a way say, during declaration
bool array[10000] = {false};
and have all 10000 initialized to false without using the for loop?
Link to comment
https://www.neowin.net/forum/topic/278351-initialize-array-of-boolean-values/Share on other sites
12 answers to this question
Recommended Posts