Man, that title should be in a poem, but anyways...So, I have this
program, and it has an array of 40 million elements. The problem is
that I have a for loop that continually is doing stuff to this array,
and for each iteration, I have to zero out the array. This is how I am
currently doing it: // Zero out the lnscores for( count=0; count <
chunksize; count++ ) lnscores[count] = 0; Is there no quicker way
to do this? I know there must be a trick since this array is one big
contiguous chunk of memory right? 14 52310
memset( lnscores, 0, chunksize ) ro**********@gmail.com opined: Man, that title should be in a poem, but anyways...So, I have this program, and it has an array of 40 million elements. The problem is that I have a for loop that continually is doing stuff to this array, and for each iteration, I have to zero out the array. This is how I am currently doing it: // Zero out the lnscores for( count=0; count < chunksize; count++ ) lnscores[count] = 0; Is there no quicker way to do this? I know there must be a trick since this array is one big contiguous chunk of memory right?
If your array has file scope you don't even have to zero it yourself.
All such variables get zeroed at startup. Otherwise, declare it and
initialise thus:
int lnscores[WHATEVER_SIZE] = {0};
If you have to re-zero it afterwards, you could use `memset()`.
--
Worlds are conquered, galaxies destroyed -- but a woman is always a
woman.
-- Kirk, "Conscience of the King", stardate unknown
<http://clc-wiki.net/wiki/Introduction_to_comp.lang.c>
On 2006-05-12, ro**********@gmail.com <ro**********@gmail.com> wrote: Man, that title should be in a poem, but anyways...So, I have this program, and it has an array of 40 million elements. The problem is that I have a for loop that continually is doing stuff to this array, and for each iteration, I have to zero out the array. This is how I am currently doing it: // Zero out the lnscores for( count=0; count < chunksize; count++ ) lnscores[count] = 0; Is there no quicker way to do this? I know there must be a trick since this array is one big contiguous chunk of memory right?
memset(lnscores, 0, chunksize * sizeof lnscores[0]);
Assuming 0 is represented by 0... what type is lnscores? ro**********@gmail.com schrieb: Man, that title should be in a poem, but anyways...So, I have this program, and it has an array of 40 million elements. The problem is that I have a for loop that continually is doing stuff to this array, and for each iteration, I have to zero out the array. This is how I am currently doing it: // Zero out the lnscores for( count=0; count < chunksize; count++ ) lnscores[count] = 0; Is there no quicker way to do this? I know there must be a trick since this array is one big contiguous chunk of memory right?
As you did not tell us what type lnscores has, there is no
definite "quickest" way.
If lnscores[count] = 0 means that all bits of lnscores[count] are
set to zero, you can use memset() to zero out all bits.
Otherwise, you can use memcpy():
-zero out lnscores[0]
-memcpy() lnscores[0] to lnscores[1]
-memcpy() lnscores[0] and lnscores[1] to lnscores[2] and lnscores[3]
....
-memcpy() lnscores[0], ..., and lnscores[16777215] to
lnscores[16777215], ..., and lnscores[33554431]
- Last step (no doubling):
memcpy() lnscores[0], ..., and lnscores[6445567] to
lnscores[33554431], ..., and lnscores[39999999]
This _may_ be quicker than the loop itself. It may be slower if
your compiler recognizes the "zero out" pattern and does something
intelligent.
Try it out and measure.
Cheers
Michael
--
E-Mail: Mine is an /at/ gmx /dot/ de address.
if not all elements will be used, there are some methods to just zero out as
fewer as needed
<ro**********@gmail.com> wrote in message
news:11**********************@d71g2000cwd.googlegr oups.com... Man, that title should be in a poem, but anyways...So, I have this program, and it has an array of 40 million elements. The problem is that I have a for loop that continually is doing stuff to this array, and for each iteration, I have to zero out the array. This is how I am currently doing it: // Zero out the lnscores for( count=0; count < chunksize; count++ ) lnscores[count] = 0; Is there no quicker way to do this? I know there must be a trick since this array is one big contiguous chunk of memory right? ro**********@gmail.com wrote: Man, that title should be in a poem, but anyways...So, I have this program, and it has an array of 40 million elements. The problem is that I have a for loop that continually is doing stuff to this array, and for each iteration, I have to zero out the array. This is how I am currently doing it: // Zero out the lnscores for( count=0; count < chunksize; count++ ) lnscores[count] = 0; Is there no quicker way to do this? I know there must be a trick since this array is one big contiguous chunk of memory right?
Why do you have to zero the array? Are you only doing something to a
few elements at each iteration? While there may be a fast C function
that zeros arrays, unless you have a parallel machine you can't zero
all cells at once, so this is likely to be costly. I suggest you
seek a better algorithm--for example, whenever you update an element
in an iteration, before you leave that loop, zero that element, so
the whole array returns to the zeroed state.
--
Julian V. Noble
Professor Emeritus of Physics
University of Virginia
Julian V. Noble wrote: Why do you have to zero the array?
Zeroing out any piece of allocated memory is necessary to avoid
unforeseen results, which are annoying most of the time.
Are you only doing something to a few elements at each iteration? While there may be a fast C function that zeros arrays, unless you have a parallel machine you can't zero all cells at once, so this is likely to be costly. I suggest you seek a better algorithm--for example, whenever you update an element in an iteration, before you leave that loop, zero that element, so the whole array returns to the zeroed state.
That's a good idea.
You can use "calloc" for allocating for the first time. It already
returns memory region fillled with zero. Then memset or bzero are also
good option.
I mostly use bzero for such things.
BTW, 40 million elements array, are u doing image processing or some
other kind of signal processing?
cheers,
--Himanshu
--
+-----------------------------------+
| Himanshu Singh Chauhan |
| MCA (Final Year) |
| I.G. National Open University |
| Delhi (India) |
| |
| Contact: hs********@gmail.com |
+-----------------------------------+
Himanshu Chauhan <hs********@gmail.com> writes: Julian V. Noble wrote: Why do you have to zero the array? Zeroing out any piece of allocated memory is necessary to avoid unforeseen results, which are annoying most of the time.
It's not always necessary. For example, if you can keep track of
which elements of the array you're currently using, you don't have to
worry about what's in the other elements. The best approach depends
on what you're actually doing with the array.
[...] You can use "calloc" for allocating for the first time. It already returns memory region fillled with zero. Then memset or bzero are also good option. I mostly use bzero for such things.
calloc() and memset() will set the array contents to all-bits-zero.
If you have an array of integers, it will set each element to 0. If
it's an array of some pointer or floating-point type, it will
*probably* do so, but it's no guaranteed (the language doesn't
guarantee that a floating-point 0.0 is represented as all-bits-zero).
bzero() is non-standard, and might not exist on all systems.
It's not obvious that memset() will be faster than a loop explicitly
setting each element to zero. You should measure the performance of
the code.
--
Keith Thompson (The_Other_Keith) ks***@mib.org <http://www.ghoti.net/~kst>
San Diego Supercomputer Center <*> <http://users.sdsc.edu/~kst>
We must do something. This is something. Therefore, we must do this.
Himanshu Chauhan wrote: Julian V. Noble wrote: Why do you have to zero the array? Zeroing out any piece of allocated memory is necessary to avoid unforeseen results, which are annoying most of the time.
Depends on whether all bits zero is a valid initialiser. It is not
necessarily valid for floats, doubles or pointers. Are you only doing something to a few elements at each iteration? While there may be a fast C function that zeros arrays, unless you have a parallel machine you can't zero all cells at once, so this is likely to be costly. I suggest you seek a better algorithm--for example, whenever you update an element in an iteration, before you leave that loop, zero that element, so the whole array returns to the zeroed state.
That's a good idea.
You can use "calloc" for allocating for the first time. It already returns memory region fillled with zero. Then memset or bzero are also good option. I mostly use bzero for such things.
Why choose the non-standard bzero when there is a perfectly standard memset?
BTW, 40 million elements array, are u doing image processing or some other kind of signal processing?
Please don't use stupid contractions like u for you.
--
Flash Gordon, living in interesting times.
Web site - http://home.flash-gordon.me.uk/
comp.lang.c posting guidelines and intro: http://clc-wiki.net/wiki/Intro_to_clc
Inviato da X-Privat.Org - Registrazione gratuita http://www.x-privat.org/join.php
> BTW, 40 million elements array, are u doing image processing or some > other kind of signal processing? Close. I'm doing some quadratic field sieve work. The program is actually quite fast. I factored a 203-bit number in about 9 hours on a 2.8GHz P4. >> Why do you have to zero the array? It has to do with keeping a score (hence the name "lnscore") of the residues modulo n. I process 40 million each go-round and then look at the scores to see if they are high-enough to progress through the algorithm. I usually get 1,000 that pass out of 40 million residues which are then narrowed down to around 10 numbers that I am actually looking for. It will find these 10 in around 11 seconds. Granted, I actually have to find tens of thousands of these before I can factor anything. >> I suggest you >> seek a better algorithm--for example, whenever you update an element >> in an iteration, before you leave that loop, zero that element, so >> the whole array returns to the zeroed state. No, this will not work. I have thought about it, and there is just no way to do it. Like I said, my program spits out the scores into lnscores (this is actually the "sieve" part of the QFS...it's pretty fast), and then I must search through the scores to take out the best ones. Only then can I return everything to zero. Oh, and I tried using memset(), but it was not any faster than the loop I had, and it hung after one iteration. So, still looping for now. Thanks for all the replies. I didn't expect so many :)
<ro**********@gmail.com> wrote in message
news:11**********************@i40g2000cwc.googlegr oups.com... BTW, 40 million elements array, are u doing image processing or some other kind of signal processing?
<corrected header...> "Julian V. Noble" <jv*@virginia.edu> wrote in message
news:e4**********@murdoch.acc.Virginia.EDU... I suggest you seek a better algorithm--for example, whenever you update an element in an iteration, before you leave that loop, zero that element, so the whole array returns to the zeroed state.
No, this will not work. I have thought about it, and there is just no way to do it. Like I said, my program spits out the scores into lnscores (this is actually the "sieve" part of the QFS...it's pretty fast), and
then I must search through the scores to take out the best ones. Only then can I return everything to zero. Oh, and I tried using memset(), but it was not any faster than the loop I had, and it hung after one
iteration. So, still looping for now. Thanks for all the replies. I didn't expect so
many :)
In regards to:
I must search through the scores to take out the best ones.
You didn't read Keith's post. A simple approach (I'll mention a better one
further down) is to use a second array of unsigned char. As you assign a
value to elements in array lnscores[], set an "in use" indicator in the
second array. Then you only need to clear and search through the in_use
array to find valid lnscores[]. Let's say your array is 40 instead of 40
million:
unsigned long lnscores[40];
unsigned char in_use[40];
memset(in_use,0,40); /* clear in use array */
/* in loop finding potential residues */
lnscores[index]=somevalue;
in_use[index]=1; /* all non-used in_use values are 0 */
/* in loop searching for potential residues */
if (in_use[index]) /* if not in use skip */
{
/* look at lnscores[index] */
}
This will reduce clearing 40 million large values to 40 million small
values.
Now that you (hopefully) understood that, a better approach is to hash
function or stack to just store the indexes of values you modified. This
would reduce the number of values you need to clear to the peak number of
residues.
Rod Pemberton
aha
there are more efficient methods
u know TAOCP, by Knuth
there is a mazing method as this:
suppose the array u will use is A[N], where N maybe very large, such as 40
Million
then u just need another two array, such as B[N] & C[N], all of them are of
integer type
#define N (40 * 1024 * 1024)
int A[N], B[N], C[N];
int cnt = 0;
//u just only need to reset the counter *cnt*
//when u need to refer an element such as A[i]
//u first check
int t = B[i];
if(t >= 0 && t < N && C[t] == i) {
//that's ok, this element has been accessed before, so it must be goood
}else{
//this element has not been initalized
A[i] = 0;
C[cnt] = i;
B[i] = cnt++;
}
//so, this is really maybe the best, *when u need, u do that!*
"Rod Pemberton" <do*********@bitfoad.cmm> wrote in message
news:e4**********@defiant.vmunix.org... <ro**********@gmail.com> wrote in message news:11**********************@i40g2000cwc.googlegr oups.com... BTW, 40 million elements array, are u doing image processing or some other kind of signal processing?
<corrected header...> "Julian V. Noble" <jv*@virginia.edu> wrote in message news:e4**********@murdoch.acc.Virginia.EDU... I suggest you seek a better algorithm--for example, whenever you update an element in an iteration, before you leave that loop, zero that element, so the whole array returns to the zeroed state. No, this will not work. I have thought about it, and there is just no
way to do it. Like I said, my program spits out the scores into lnscores (this is actually the "sieve" part of the QFS...it's pretty fast), and
then I must search through the scores to take out the best ones. Only then can I return everything to zero. Oh, and I tried using memset(), but it was not any faster than the loop I had, and it hung after one iteration. So, still looping for now. Thanks for all the replies. I didn't expect
so many :)
In regards to:
I must search through the scores to take out the best ones. You didn't read Keith's post. A simple approach (I'll mention a better
one further down) is to use a second array of unsigned char. As you assign a value to elements in array lnscores[], set an "in use" indicator in the second array. Then you only need to clear and search through the in_use array to find valid lnscores[]. Let's say your array is 40 instead of 40 million:
unsigned long lnscores[40]; unsigned char in_use[40];
memset(in_use,0,40); /* clear in use array */
/* in loop finding potential residues */ lnscores[index]=somevalue; in_use[index]=1; /* all non-used in_use values are 0 */
/* in loop searching for potential residues */ if (in_use[index]) /* if not in use skip */ { /* look at lnscores[index] */ }
This will reduce clearing 40 million large values to 40 million small values.
Now that you (hopefully) understood that, a better approach is to hash function or stack to just store the indexes of values you modified. This would reduce the number of values you need to clear to the peak number of residues.
Rod Pemberton
"daizisheng" <da********@gmail.com> wrote in message
news:e4**********@news.cn99.com... aha there are more efficient methods u know TAOCP, by Knuth there is a mazing method as this:
suppose the array u will use is A[N], where N maybe very large, such as 40 Million then u just need another two array, such as B[N] & C[N], all of them are
of integer type
#define N (40 * 1024 * 1024) int A[N], B[N], C[N]; int cnt = 0;
//u just only need to reset the counter *cnt*
//when u need to refer an element such as A[i] //u first check int t = B[i]; if(t >= 0 && t < N && C[t] == i) {
sorry for a mistake
the condition is
if(t >= 0 && t < cnt && C[t] == i) //that's ok, this element has been accessed before, so it must be goood }else{ //this element has not been initalized A[i] = 0; C[cnt] = i; B[i] = cnt++; }
//so, this is really maybe the best, *when u need, u do that!*
"Rod Pemberton" <do*********@bitfoad.cmm> wrote in message news:e4**********@defiant.vmunix.org... <ro**********@gmail.com> wrote in message news:11**********************@i40g2000cwc.googlegr oups.com... > BTW, 40 million elements array, are u doing image processing or some other kind of signal processing?
<corrected header...> "Julian V. Noble" <jv*@virginia.edu> wrote in message news:e4**********@murdoch.acc.Virginia.EDU...> I suggest you > seek a better algorithm--for example, whenever you update an element > in an iteration, before you leave that loop, zero that element, so > the whole array returns to the zeroed state.
No, this will not work. I have thought about it, and there is just no way to do it. Like I said, my program spits out the scores into lnscores (this is actually the "sieve" part of the QFS...it's pretty fast), and then I must search through the scores to take out the best ones. Only then can I return everything to zero. Oh, and I tried using memset(), but it was not any faster than the loop I had, and it hung after one iteration. So, still looping for now. Thanks for all the replies. I didn't expect so many :)
In regards to:
I must search through the scores to take out the best ones.
You didn't read Keith's post. A simple approach (I'll mention a better one further down) is to use a second array of unsigned char. As you assign
a value to elements in array lnscores[], set an "in use" indicator in the second array. Then you only need to clear and search through the in_use array to find valid lnscores[]. Let's say your array is 40 instead of
40 million:
unsigned long lnscores[40]; unsigned char in_use[40];
memset(in_use,0,40); /* clear in use array */
/* in loop finding potential residues */ lnscores[index]=somevalue; in_use[index]=1; /* all non-used in_use values are 0 */
/* in loop searching for potential residues */ if (in_use[index]) /* if not in use skip */ { /* look at lnscores[index] */ }
This will reduce clearing 40 million large values to 40 million small values.
Now that you (hopefully) understood that, a better approach is to hash function or stack to just store the indexes of values you modified.
This would reduce the number of values you need to clear to the peak number
of residues.
Rod Pemberton
"Flash Gordon" <sp**@flash-gordon.me.uk> wrote I mostly use bzero for such things.
Why choose the non-standard bzero when there is a perfectly standard memset?
If memset isn't fast enough, probably the only way is to go for a
non-standard function.
Actually bzero is probably just a slightly different memset(), but many
machines have hardware for clearing memory buffers in parallel. There's no
easy way to give an ANSI C interface to this sort of operation, but normally
you would set the operation going, do something else, and then check a flag
to see if it had completed.
The other solution is to use an algorithm that doesn't require the array to
be initialised.
-- www.personal.leeds.ac.uk/~bgy1mm This thread has been closed and replies have been disabled. Please start a new discussion. Similar topics
by: Berk Birand |
last post by:
Hi,
I am just learning about the array/pointer duality in C/C++. I couldn't
help wondering, is there a way to pass an array by value? It seems like
the only way to do is to pass it by...
|
by: DazedAndConfused |
last post by:
Is there a quick way to fill an array with zeros or make all elements
empty/nothing?
|
by: spam.noam |
last post by:
Hello,
I discovered that I needed a small change to the Python grammar. I
would like to hear what you think about it.
In two lines:
Currently, the expression "x" is a syntax error.
I suggest...
|
by: Brian |
last post by:
A quick question here -
What can be achieved in IL which is not possible in C# ?
o Creation of an ArrayList
o Creation of a Dictionary
o Creation of a two dimensional array...
|
by: Adam Warner |
last post by:
Hi all,
One cannot return a pointer to an array in C since there are no first
class array types. But one can return a pointer to an incomplete array via
the illegal but widely supported zero...
|
by: Visual Systems AB \(Martin Arvidsson\) |
last post by:
Hi!
Got a simple question. I am new to c# but this is not making me any sence.
If i declare: string myStringArray = new string;
How the heck could i fill it with more than one element?
...
|
by: rajus |
last post by:
I want to store the (x,y) coordinates of about 10,000 points in a 2D
array.How can I store them and retrieve them later?
|
by: John B |
last post by:
Hi all,
Say I have the int 123456789
What would be the quickest/best way to convert it to
int{1,2,3,4,5,6,7,8,9}
What I came up with was to determine the largest factor of 10 (100M)
divide by...
|
by: DomoChan |
last post by:
the code below will compile in visual c++ 2003, but im not sure its
valid.
unsigned char myString = "";
after this line executes, all the bytes within myString are indeed set
to '0's' but is...
|
by: isladogs |
last post by:
The next Access Europe meeting will be on Wednesday 2 August 2023 starting at 18:00 UK time (6PM UTC+1) and finishing at about 19:15 (7.15PM)
The start time is equivalent to 19:00 (7PM) in Central...
|
by: erikbower65 |
last post by:
Using CodiumAI's pr-agent is simple and powerful. Follow these steps:
1. Install CodiumAI CLI: Ensure Node.js is installed, then run 'npm install -g codiumai' in the terminal.
2. Connect to...
|
by: erikbower65 |
last post by:
Here's a concise step-by-step guide for manually installing IntelliJ IDEA:
1. Download: Visit the official JetBrains website and download the IntelliJ IDEA Community or Ultimate edition based on...
|
by: isladogs |
last post by:
The next Access Europe meeting will be on Wednesday 6 Sept 2023 starting at 18:00 UK time (6PM UTC+1) and finishing at about 19:15 (7.15PM)
The start time is equivalent to 19:00 (7PM) in Central...
|
by: Taofi |
last post by:
I try to insert a new record but the error message says the number of query names and destination fields are not the same
This are my field names
ID, Budgeted, Actual, Status and Differences
...
|
by: DJRhino1175 |
last post by:
When I run this code I get an error, its Run-time error# 424 Object required...This is my first attempt at doing something like this. I test the entire code and it worked until I added this -
If...
|
by: Rina0 |
last post by:
I am looking for a Python code to find the longest common subsequence of two strings. I found this blog post that describes the length of longest common subsequence problem and provides a solution in...
|
by: lllomh |
last post by:
How does React native implement an English player?
|
by: DJRhino |
last post by:
Was curious if anyone else was having this same issue or not....
I was just Up/Down graded to windows 11 and now my access combo boxes are not acting right. With win 10 I could start typing...
| |