Forgot your password?
typodupeerror

Comment pulsars are nature's flywheels (Score 1) 325

All of the energy that we see (as well as the energy we don't see, which is the vast majority of it and which comes out in a relativistic particle wind) comes from the rotation of the neutron star. That means that pulsars are flywheels. And amazingly (even to me, and I study them daily), the most energetic pulsars give off tens of thousands of times more power than the total power output of the Sun. And all from rotation. That's crazy.

Damn the Universe is cool.

Comment Re:Telescope in West Virginia (Score 4, Informative) 248

Actually, they aren't using the GBT's spectrometer. They are using an instrument that I helped to develop for pulsar research called GUPPI, which uses FPGAs and GPUs to real-time process 800MHz of radio bandwidth.

However, in this case they are using GUPPI's GPU nodes to record 800MHz of Nyquist-sampled band centered at 1.5GHz. Each sample is 2-bits, and with 2 polarizations, that is how they get 800MB/s (or almost a GB/s as it says in the article).

If you want some basic info about GUPPI, you can find it here:

https://safe.nrao.edu/wiki/bin/view/CICADA/NGNPP

Comment Re:A complementary approach (Score 5, Informative) 190

The good thing is that the pulsars which glitch are the young ones (hundreds to millions of years old). The pulsars that we are using for NANOGrav are millisecond pulsars which are hundreds of millions or billions of years old, have much smaller magnetic fields than young pulsars, and basically never glitch. They are extremely stable rotators -- much better than normal pulsars.

Communications

Extended Gmail Outage Frustrates Admins 430

CWmike writes "A prolonged, ongoing Gmail outage has some Google Apps administrators pulling their hair out as their end users, including high-ranking executives, complain loudly while they wait for service to be restored. At about 5 p.m. US Eastern on Wednesday, Google announced that the company was aware of the problem preventing Gmail users from logging into their accounts and that it expected to fix it by 9 p.m. on Thursday. Google offered no explanation of the problem or why it would take it so long to solve the problem, a '502' error when trying to access Gmail. Google said the bug is affecting 'a small number of users,' but that is little comfort for Google Apps administrators. Admin Bill W. posted a desperate message on the forum Thursday morning, saying his company's CEO is steaming about being locked out of his e-mail account since around 4 p.m. on Wednesday. It's not the first Gmail outage. So, will this one prompt calls for a service-level agreement for paying customers? And a more immediate question: Why no Gears for offline Gmail access at very least, Google?"

Comment Re:Or better yet, don't write Congress (Score 2, Interesting) 171

There is no compelling science case for Arecibo that can't be pursued with other telescopes, especially since the frontier of radio astronomy has mostly moved from sensitivity (requiring big apertures) to resolution (requiring long-baseline arrays), or to shorter mm/submm wavelengths that Arecibo can't handle.

Sorry, but that is not true. Radio astronomy needs improvement in a wide variety of areas in order to tackle the tremendously wide variety of science that is done at radio bands. Examples include sensitivity, field-of-view, dynamic range, image fidelity, resolution, and wavelength coverage. But sensitivity is one of the most important. That is why the SKA is on the table to be the world's next generation decameter/centimeter wave radio telescope. The most important thing it provides is sensitivity (i.e. SK = square km = sensitivity). And Arecibo is already a 5-10% SKA.

For my own research (pulsars), Arecibo's sensitivity is what sets it apart. Although, truthfully, the fact that it can't observe any of the southern sky (where most of the pulsars are) is a definite downside.

Finally, you mention surveys and imply that because Arecibo is doing a larger percent of them now that that means it is washed up. However, that also isn't true. Modern astronomy is driven by large surveys (including several of the instruments that you mention, for example, Sloan, PANSTARRS, LSST) as they dramatically increase our discovery space.

Microsoft's IE7 Search Box Bugs Google 803

tessaiga writes "The New York Times reports that Google is crying foul over a new IE7 search box feature that defaults to MSN Search. Although the feature can be modified to use Google or other search engines, Google asserts that "The best way to handle the search box [...] would be to give users a choice when they first start up Internet Explorer 7." Google goes on to assert that the move "limits consumer choice and is reminiscent of the tactics that got Microsoft into antitrust trouble in the late 1990s". I notice that in my version of Firefox the search box defaults to Google, and that the pulldown menu of pre-entered options doesn't even include MSN Search, but Google seems to have been oddly quiet on that front for the many years prior to IE7 that Firefox has made this feature available."

Comment Re:wtf? (Score 2) 229

Hmm. Doesn't make full sense to me this way.

First part of your explanation is OK - let's say we need to unroll a loop for efficiency. And we decide to unroll it so it has 8 statements inside the loop. So, assuming count>0, we would do something like this (using dots to show indentation because "ecode" eats up leading spaces):

void copy(char *from, char *to, int count) {
..int n = count / 8;
..int i;

..if (n > 0) {
....do {
......*from++ = *to++;
....../* 7 more times (code omitted to avoid slashdot lameness filter) */
....} while(--n > 0);
..}
../* Handle the "leftovers" */
..for (i=0; i<n%8; ++i) {
....*from++ = *to++;
..}
}

That's a standard loop-unrolling for you. Duff's Device just shortens it. How? The switch statement jumps into the loop to a point where we first handle the "leftovers", and then we execute the loop (count/8) times, each time copying 8 elements, thus copying (count/8)*8 elements in the loop (which, because of integer division is not equal to count unless count%8==0, that's why the leftovers).

Thus, the part where you talk about count being excatly divisible by 5, 6, 7, etc., is wrong. The switch statement only checks the remainder of count when divided by 8.

This may be wrong too. In that case, please feel free to correct me.

Slashdot Top Deals

In case of atomic attack, all work rules will be temporarily suspended.

Working...