Follow Slashdot blog updates by subscribing to our blog RSS feed

 



Forgot your password?
typodupeerror
×

Comment Re:the school already is lying (Score 4, Interesting) 364

A student has been quoted as saying:

"Frequently, the green lights next to our iSight webcams will turn on. The school district claims that this is just a glitch. We are all doubting this now."

http://thelede.blogs.nytimes.com/2010/02/19/school-accused-of-using-webcam-to-photograph-student-at-home/

The lawsuit filed in court states:

"[The student] was at home using a school issued laptop that was neither reported lost nor stolen when his image was captured by Defendants without his or his parents' permission and while he was at home."

http://www.computerworld.com/s/article/print/9159778/Irate_parents_in_Pa._say_schools_use_peeping_tom_technology_

If this is true, sounds pretty damning to me.

Intel

Submission + - Intel Larrabee die shot and release dates 1

Vigile writes: The details of Intel's CPU/GPU hybrid project known as Larrabee have been slowly leaking out over the past 12 months including news that it was based on older x86 cores, that rasterization was a primary focus and that it would use a vector-extended x86 ISA. Now we have our first detailed look at a Larrabee die that shows a 32-core design that could reach as high as a 2.5 TFlops based on clock speed predictions. The move to a 2010 release schedule has also been confirmed by Intel as it seems they are still struggling to see similar levels of efficiency to GPUs from NVIDIA and AMD.

Comment Re:As a Developer the Question I Have Is ... (Score 1) 300

We do need something to make multiple-CPU programming easier though. Threaded programming in C/C++ or similar can turn into a nightmare real quick, it's error prone and complicated.

If you want to use C++, I suggest Thread Building Blocks, which is an open-source C++ library. It is a set of reasonable primitives, including a task scheduler and some simple parallel iterators that create tasks. The task scheduling makes it mostly independent of the specific number of cores in the system, which is key. It think it is part of most Linux distributions these days. For simple data parallel computations, you can avoid thinking about threads and locks entirely, but yet it also allows provides the low-level primitives to write sophisticated highly optimized code, too.

P.S. I totally agree that Erlang is just *not* the right solution for multicore. Erlang's message passing is great for the application for which it was designed (telecommunications equipment with multiple independent line cards and such) or any such highly concurrent applications with high availability needs. It just isn't well suited for multicore programming (which just has an entirely different set of challenges such as data locality).

Comment Re:What? (Score 5, Informative) 420

No, the above post really overstates what goes on inside today's x86 chips.

It is true that Intel and AMD internally break up x86 into simpler "micro-ops" to simplify the internals of the chip. However, the specific micro-ops uses are tailored explicitly for x86 instructions, and many match up with x86 instructions one-to-one. The mapping really isn't that programmable, either. Most of the mapping is hard-coded and highly optimized. It would not be trivial to support another ISA such as PowerPC, even for just user-mode instructions. If you then consider all the privileged instructions, virtual memory, and virtualization stuff, you have a real mess. It would likely be easier to start from scratch rather than try to retrofit a current x86 to be anything other than an x86. Sure, you could reuse some of the arithmetic units and memory controllers perhaps, but the core would have to change pretty dramatically.

That said, Transmeta (RIP) did have technology that would likely make it easier to run non-x86 code on its processor, and the translation was done in software. But even its internal instructions were likely closely match to specifics of the x86 ISA.

Slashdot Top Deals

Beware of Programmers who carry screwdrivers. -- Leonard Brandwein

Working...