shecky
Nov 15, 08:22 AM
[incredibly naive question]
is there any way to tell what software is multithreaded and will take advantage of the quad cores? (on the tech specs, etc...)
[/incredibly naive question]
is there any way to tell what software is multithreaded and will take advantage of the quad cores? (on the tech specs, etc...)
[/incredibly naive question]
heehee
Nov 24, 03:11 PM
It's not really a purchase, but I'll be flying in a Falcon 7x to HK. That's how I roll. :p
nyprospect
Apr 2, 09:56 PM
Makes me want to buy one.Go figure.
pgyanke
Mar 26, 09:11 AM
Imagine taking the steering wheel and pedals out of a real car and putting an iPad on the dashboard.
It does not matter how great the car is, how nice the quality of the machine, what size engine you have, it's still going to be ruined, and make you a slow terrible driver as you can't cannot control it very well using a touch screen.
People said the same thing with touch screens in airplanes yet the top-of-the-line fighters have touch-screen control. Admittedly, they don't use the touch screens as their flight controllers, but when you consider the volume and velocity of their decision-making, it shows it can be done.
I think it will all depend on what you get used to.
It does not matter how great the car is, how nice the quality of the machine, what size engine you have, it's still going to be ruined, and make you a slow terrible driver as you can't cannot control it very well using a touch screen.
People said the same thing with touch screens in airplanes yet the top-of-the-line fighters have touch-screen control. Admittedly, they don't use the touch screens as their flight controllers, but when you consider the volume and velocity of their decision-making, it shows it can be done.
I think it will all depend on what you get used to.
jaw04005
May 2, 10:17 PM
Now, if Microsoft and Adobe would just get on board with this for their Mac applications. Office and Creative Suite spew crap everywhere. :rolleyes:
Lord Blackadder
Mar 9, 02:46 PM
Interesting thoughts iGav. The sum total of your criticisms seems to me to indicate that automakers are much more conventional these days (at least when it comes to packaging), making innovation much more difficult. Part of this situation is undoubtedly due to the fact that there are a lot more laws governing the design of cars these days. In the days of the mini, (or DS, or the Traction Avant, or even further back the Model T) there was perhaps less conventional wisdom than there is now - resulting in a proliferation of vastly different designs in terms of overal packaging. Apparently it's up to the Indians to get creative with their Tata Nano.
These days, only the FF layout is considered suitable for an economy car. Everything else is rocking the boat. Perhaps, as with Horatio Nelson's tactics, an innovation eventually becomes hidebound tradition and stifles subesquent development?
As for the Korean flavor of the new Chevy, it may be dull by European standards but we love Hondas over here so tastes are different. Also, anyone who has ever driven a US-market Chevy Cavalier looks in wonder at the level of quality that the Korean cars bring to the party. The Koreans not only sneaked up on the Big Three, they also sneaked up on the Japanese and even some of the Europeans.
And that still makes me wonder what the hell Ford was doing by not building and selling their much better Euro-Fords here in the states. They completely missed the boat on that one - and are arguably still doing so by limiting our engine choices on the Focus and Fiesta and thus reducing the overall economy of the vehicle lineup.
These days, only the FF layout is considered suitable for an economy car. Everything else is rocking the boat. Perhaps, as with Horatio Nelson's tactics, an innovation eventually becomes hidebound tradition and stifles subesquent development?
As for the Korean flavor of the new Chevy, it may be dull by European standards but we love Hondas over here so tastes are different. Also, anyone who has ever driven a US-market Chevy Cavalier looks in wonder at the level of quality that the Korean cars bring to the party. The Koreans not only sneaked up on the Big Three, they also sneaked up on the Japanese and even some of the Europeans.
And that still makes me wonder what the hell Ford was doing by not building and selling their much better Euro-Fords here in the states. They completely missed the boat on that one - and are arguably still doing so by limiting our engine choices on the Focus and Fiesta and thus reducing the overall economy of the vehicle lineup.
aswitcher
Jan 11, 11:30 PM
Agreed. It's not just a bad name; it's a sin!
How about MacBook Zephyr
MacBook Breeze
MacBook Frizbee
How about MacBook Zephyr
MacBook Breeze
MacBook Frizbee
Silentwave
Jul 14, 03:39 AM
ur goin' to be waitin' a while... just get one now.

Philadelphia Phillies World

$83.99. Charlie Manuel

Phillies World Series

Philadelphia Phillies baseball

of the World Series, bows

2008 World Series Champs

Philly salutes World Series

Astros at Phillies Game Thread

Or will last year#39;s champion
notjustjay
Apr 21, 11:57 AM
One way they could alleviate the "issue" is to simply report the (anonymous) data more frequently, and then dump the cache. I wouldn't care as much about a week's worth of location data as opposed to months' worth.
(Incidentally: we have like/dislike buttons on a per-post basis now? :confused: )
(Incidentally: we have like/dislike buttons on a per-post basis now? :confused: )
Mousse
Feb 23, 11:43 AM
So when will automakers sell a compact pickup with a 2 liter diesel in the US? I want a diesel pick up. But I don't want a behemoth that requires a ladder to enter and hogs 2/3 of a 2 car garage.:p
I prefer diesel in a work truck for three reasons: torque, torque and torque.
I prefer diesel in a work truck for three reasons: torque, torque and torque.
tigres
Apr 19, 12:09 PM
Always a refresh of something, directly after an earnings call it seems like
AppliedVisual
Nov 15, 06:10 PM
This is not true at all. Multi-threading often introduces more problems such as race conditions, deadlocks, pipeline starvations, memory leaks, cache coherency problems. Further more, multithreaded apps are harder and take longer to debug. Also, using threads without good reason too is not efficient (context swtiching) and can cause problems (thread priorities) with other apps running. This is because threads can not yield to other threads and block if such an undesirable condition like a deadlock exists.. Like on Windows when one app has a non responsive thread and the whole system hangs.. Or like when Finder sucks and locks everything..
Yes, yes, all true... Somewhat. True in the sense of how a lot of programmers approach current threading problems and various development theories. And we're currently limited by our development tools and the operating systems to a certain degree.
Also, multithreading behaves differently on different platforms with different language environments. Java threading might behave differently than p-threads (C-based) on the same system (OS X).. I am a prfessional developer etc..
Yes, but so many things behave differently from one platform to another. How is writing a low-level thread management system for each platform different than writing the core functions of a 3D graphics engine that can run cross-platform and take advantage of various differences or feature - OpenGL, Direct3D, 3DNow, etc.. Cross-platform development always has its issues as do using different development tools. You obviously know this as do many programmers, so what's the point of the doom and gloom? It's always been this way and is just a part of the development process.
Massively multithreaded apps do exist and have been written for various platforms over the years. Here in Windows and OSX land programmers go into panic mode when multithreading is mentioned. Yet SGI had Irix scaled to 256 CPUs and visulization apps utilizing multithreading on individual systems as well as across cluster nodes and displaying images built by multiple graphics pipes using multithreaded OpenGL that could scale from 1 to 16 graphics pipes and any number of CPUs.
Anyway, my whole point is that the software industry will eventually have to tackle this problem head on and will overcome it. I just don't understand the current resistance and denial exhibited by so many "developers". The hardware is coming, in many situations it's already here... Why fight it? It's time to look at threads in a new light (for many). Upcoming CPU roadmaps place newer quad-core chips in the market in mid '07 with common Xeon and Opteron workstations/servers moving to quad-CPU (16-core) with 45nm process and lower wattage. 8-core CPUs to arrive in '08, 12 and 16 cores per CPU in late '08 or early '09...
MHz isn't increasing and the consumer still wants the next version of their game or video editor to run twice as fast with more features on the new stystem they just bought, which now has 32 cores instead of 18 cores and they'll switch to a competitor's product if you take more than two or three months to ship your software update... What do you do?
Yes, yes, all true... Somewhat. True in the sense of how a lot of programmers approach current threading problems and various development theories. And we're currently limited by our development tools and the operating systems to a certain degree.
Also, multithreading behaves differently on different platforms with different language environments. Java threading might behave differently than p-threads (C-based) on the same system (OS X).. I am a prfessional developer etc..
Yes, but so many things behave differently from one platform to another. How is writing a low-level thread management system for each platform different than writing the core functions of a 3D graphics engine that can run cross-platform and take advantage of various differences or feature - OpenGL, Direct3D, 3DNow, etc.. Cross-platform development always has its issues as do using different development tools. You obviously know this as do many programmers, so what's the point of the doom and gloom? It's always been this way and is just a part of the development process.
Massively multithreaded apps do exist and have been written for various platforms over the years. Here in Windows and OSX land programmers go into panic mode when multithreading is mentioned. Yet SGI had Irix scaled to 256 CPUs and visulization apps utilizing multithreading on individual systems as well as across cluster nodes and displaying images built by multiple graphics pipes using multithreaded OpenGL that could scale from 1 to 16 graphics pipes and any number of CPUs.
Anyway, my whole point is that the software industry will eventually have to tackle this problem head on and will overcome it. I just don't understand the current resistance and denial exhibited by so many "developers". The hardware is coming, in many situations it's already here... Why fight it? It's time to look at threads in a new light (for many). Upcoming CPU roadmaps place newer quad-core chips in the market in mid '07 with common Xeon and Opteron workstations/servers moving to quad-CPU (16-core) with 45nm process and lower wattage. 8-core CPUs to arrive in '08, 12 and 16 cores per CPU in late '08 or early '09...
MHz isn't increasing and the consumer still wants the next version of their game or video editor to run twice as fast with more features on the new stystem they just bought, which now has 32 cores instead of 18 cores and they'll switch to a competitor's product if you take more than two or three months to ship your software update... What do you do?
danielwsmithee
Nov 27, 02:51 PM
Now I'm starting to wonder if Apple will drop the 20" and replace it with a 17" LCD. I know that seems odd, but that would increase the gap between the 20" and 23" ACDs. There's a 7" gap between the 23" and 30" and if they introduced a 17" to replace the 20" that would make a 6" gap between the low end and the middle one. That way there will be much more of a difference between the ACDs.
Just a thought. :)
No I think 20" is still the sweat-spot.
Just a thought. :)
No I think 20" is still the sweat-spot.
ju5tin81
Oct 23, 03:21 PM
How exactly is Apple making a big deal out of small updates? The recent processor updates Apple has done (Core Duo to Core 2 Duo on the iMac and the speedbumped Core Duos on the MBP earlier this year) were quiet launches, with no announcements or hoopla at all really. The only real hoopla with the iMac was about the 24" screen, but it was certainly subdued. Hell, Apple made a bigger deal out of the Apple Hi-Fi.
The only people making a big deal out of it are ourselves.
Lets not also forget that the MacBook just appeared one day! A 'whole' Tuesday before the rumour sites thought it would. :rolleyes:
(With minimal fanfare)
The only people making a big deal out of it are ourselves.
Lets not also forget that the MacBook just appeared one day! A 'whole' Tuesday before the rumour sites thought it would. :rolleyes:
(With minimal fanfare)
Bengt77
Aug 25, 04:22 PM
Conroe iMac would be an imediate purchase from me.
Bingo! Bring on the iMac Ultra with Conroe, 23" display and a powerful GPU. Now that would be an immediate purchase for me.
Bingo! Bring on the iMac Ultra with Conroe, 23" display and a powerful GPU. Now that would be an immediate purchase for me.

Lollypop
Aug 7, 05:13 AM
Boy, we are a quite a multinational group. If only the rest of the people in the nations of the world could come together through Macness the way that we all have, then there would be no more wars. Actually, it'd probably just mean we'd have different kinds of wars, like the Nano vs. Video iPod war. :p
I can see a war over that already brewing! :p
I can see a war over that already brewing! :p
vvv
Nov 28, 07:29 PM
I know someone brought it up earlier, but XBOX people, XBOX. When the XBOX first came out, people said it was too big, that they didn't know what they were doing, that they would fail, and it had a pretty, ok very rocky start. And now the XBOX 360 looks like it may very well dominate this generation.....

MLB - Philadelphia Phillies

Philadelphia Phillies - 2008
SchneiderMan
Nov 27, 02:20 PM
I like this. I really wish it didn't have the logo, though. Much classier as just a photograph, IMHO.
Yeah I wish I could Photoshop it LOL.
Yeah I wish I could Photoshop it LOL.
epicwelshman
Sep 1, 12:36 PM
You KNOW iPod updates are imminent, why the hell would you care about this deal, for a soon-to-be replaced product?
Probably because it's FREE.
Probably because it's FREE.
ghostface147
Apr 2, 08:27 PM
nice...
aiqw9182
Mar 25, 09:17 AM
Why doesn't the IGP have OpenCL support?
Because the Sandy Bridge IGP was not designed to do any sort of GPGPU work, point blank. We will have to wait for Ivy Bridge(next major release from Intel after Sandy Bridge) for GPGPU/OpenCL support on Intel's IGP.
Because the Sandy Bridge IGP was not designed to do any sort of GPGPU work, point blank. We will have to wait for Ivy Bridge(next major release from Intel after Sandy Bridge) for GPGPU/OpenCL support on Intel's IGP.
ajiuo
Apr 9, 07:16 PM
WOW!!! iCal looks *********g UGLY... I hope they add an option to use a standard gray toolbar area... That seems so unlike apple to do something like that.
Heh.. What if they give everything that look :). I think I would switch to windows if they did that..
Heh.. What if they give everything that look :). I think I would switch to windows if they did that..
Rot'nApple
Apr 2, 08:06 PM
I really like this ad. Maybe this will be the new direction of Apple's marketing?
I liked the ad too. It seems Apple was finally addressing the bazillion iPad wannabes and to some extent the gazillion iPhone wannabes, who's commercials tout the latest tech specs or a keyword like 'lightening fast' but yet fail to demo the everyday usefulness. Something Apple has long touted in its iPhone commercials let alone their iPad ones.
Beat that Xoom! I don't want to feel cacooned by my tablet and I don't want my eyes turning into the next Terminator. I want technology to get out of the way and just work while the ad points to what would be useful if I purchase one.
Apple, for it's iOS devices, have nailed that roadmap! :cool: :apple:
I liked the ad too. It seems Apple was finally addressing the bazillion iPad wannabes and to some extent the gazillion iPhone wannabes, who's commercials tout the latest tech specs or a keyword like 'lightening fast' but yet fail to demo the everyday usefulness. Something Apple has long touted in its iPhone commercials let alone their iPad ones.
Beat that Xoom! I don't want to feel cacooned by my tablet and I don't want my eyes turning into the next Terminator. I want technology to get out of the way and just work while the ad points to what would be useful if I purchase one.
Apple, for it's iOS devices, have nailed that roadmap! :cool: :apple:
brepublican
Sep 6, 08:58 PM
Yeah it'll really be interesting to see what the res of the movies'll be. And SJ is only like, the biggest shareholder in Disney, so no, I did not expect them to be FULLY on board :rolleyes:
No comments:
Post a Comment