Intel to spend up to $8B on US manufacturing

October 19, 2010 By JORDAN ROBERTSON , AP Technology Writer

Intel to spend up to $8B on US manufacturing (AP)

Enlarge

In this file photo taken July 12, 2010, the exterior of Intel Corp. headquarters is shown, in Santa Clara, Calif. Intel said Tuesday, Oct. 19, 2010, it will spend $6 billion to $8 billion on new chip manufacturing technology in its U.S. factories and will build a new development plant in Oregon.(AP Photo/Paul Sakuma, file)

(AP) -- Intel Corp. on Tuesday revealed the scope of its latest infusion to keep its factories cutting-edge and push the chip industry's pace: an investment of up to $8 billion to build a new factory in Oregon and upgrade four existing plants in Arizona and Oregon.

In all, the projects will create up to 8,000 temporary construction jobs and up to 1,000 permanent positions in Oregon when that factory opens in 2013.

Intel's problem with factories is akin to your car needing a new engine every couple of years to avoid becoming a dinosaur. Intel's factories are the Ferraris of the semiconductor world. They need constant, massive investments to keep up with the breakneck pace of technological progress that Intel itself set and has pushed for more than 40 years.

"Today's announcement reflects the next tranche of the continued advancement of Moore's Law and a further commitment to invest in the future of Intel and America," Intel President and CEO Paul Otellini said.

Moore's Law is Intel co-founder Gordon Moore's famous prediction in 1965 that computer chips' performance will roughly double every two years as manufacturing technology improves and more transistors, or tiny on/off switches, can be crammed on to the chips. The other side of that prediction is that prices will also fall.

Tuesday's announcement underscores Intel's role as the world's biggest manufacturer of microprocessors, which are the "brains" of computers. It also shows the importance of the company's size and ability to spend heavily in maintaining its lead in the semiconductor world.

Few companies can stomach the cost of competing against Intel. Advanced Micro Devices Inc., Intel's main rival in computer microprocessors, spun off its factories into a separate company, called GlobalFoundries Inc., in 2009 to unload debt and free itself from the heavy upkeep costs. AMD's revenue is seven times less than Intel's.

Intel's new investment will support its transition to 22-nanometer manufacturing technology. Intel's last major investment was a $7 billion outlay announced in February 2009.

The two plants in Chandler, Ariz., and two in Hillsboro, Ore., that are getting the upgrade make Intel's most advanced chips. Intel has plants around the world, including Ireland and Israel, but three-quarters of its chip manufacturing is done in the U.S. That's partly a function of strict U.S. export rules on the most sophisticated chip-making equipment. Those rules effectively limit the kinds of chips that Intel can make in certain countries, such as China.

The heavy costs are the result of the price of new chip-making equipment. Lithography and other types of machines can cost more than $1 million each and come from companies such as Nikon Corp., Canon Inc. and Applied Materials Inc.

Intel owns about 80 percent of the worldwide market for PC and server microprocessors. AMD is second with about 20 percent. Intel is expanding aggressively into new markets for its chips such as cell phones and televisions and cable set-top boxes and tablets.

Intel shares increased 14 cents to $19.33 in midday trading Tuesday.

©2010 The Associated Press. All rights reserved. This material may not be published, broadcast, rewritten or redistributed.

4.2 /5 (5 votes)  

Filter


Move the slider to adjust rank threshold, so that you can hide some of the comments.


Display comments: newest first

Quantum_Conundrum
Oct 19, 2010

Rank: 5 / 5 (1)
Say hello to 12 core, 3.5ghz with integrated video on the same chip for their next line of Intel processor.
Parsec
Oct 19, 2010

Rank: 5 / 5 (5)
Someday people MIGHT actually know how to efficiently program multi-core devices. Software is definitely behind the hardware on this one.
Quantum_Conundrum
Oct 19, 2010

Rank: 5 / 5 (1)
Someday people MIGHT actually know how to efficiently program multi-core devices. Software is definitely behind the hardware on this one.


Yup. Problem is that even with object oriented programing, most software is ultimately procedural and each step depends on the previous step, and most steps cannot be run in parallel, because they are immediately dependent on the outcome of other steps.

Even in multi-threaded applicatons, there is usually one central thread that is still highly procedural, and the other threads are often irrelevant to the core thread.

For example, the chat feature in a video game is usually irrelevant to the game engine itself.

The problem is more or less in our ways of thinking about logic and causality, and how we handle inputs and parameters.

We need a more generalized and dynamic class architecture in the programming languages to allow non-linear computing.

I have no idea on earth how to do that though, lol.
CreepyD
Oct 20, 2010

Rank: not rated yet
I think a better use of multicore CPU's is simply to run a different program on each core. How often do you need 4 or more different programs running that totally kill the CPU though? Servers only I would have thought.
El_Nose
Oct 20, 2010

Rank: not rated yet
@ Creepy and Quantum

The solution to both stated issues is that the Operating system needs to be better set up to handle multicore than the programs them selves. The only progs that benefit the most on multicore systems that people use are going to be video games and maybe spreadsheet programs with many calculations. The operating system is the most effecient place to seperate into multiple processes - if you run *nix doing the top command will show you everything that can be sent to different cores - or taskmgr on windows will show you things that can be split across the cores.

I believe *nix systems already apptemt to do this very well. I have no idea about windows but I suspect it is not far behind if at all.

The fact of the matter is Quantum has broken down the problem perfectly... but the tool sets are just not in place yet... I know for instance that you can not query a video card and ask it how many cores it has... having functions like that on the OS would be great
Vendicar_Decarian
Oct 22, 2010

Rank: 1 / 5 (1)
"The operating system is the most effecient place to seperate into multiple processes " - creepy

I have a program that iterates through a list to find a string match on a particular field.

This can be accomplished with a single iterative thread, or it can be broken up in several different ways using multiple threads operating over the same list.

How does the OS even know that the application is performing such a task, and even if it does know, how do you propose that the OS magically convert a single thread implementation with a multi-threaded one?

Only the application knows these things, and hence only the application can manage them. you use a language that is specifically designed from the ground up for multithreaded programming.

Vendicar_Decarian
Oct 22, 2010

Rank: 1 / 5 (1)
Such a language would require the replacement of for, next loops with for each loops, with qualifiers for skipping entries, or partitioning lists.

Implementing fine grained parallelism is orders of magnitude more complex than programming a single thread.

With regard to Intel: Their decision is based on export restrictions that prohibit the exportation of technology that can render circuit pathways smaller than 65nm.

In addition they are banking on the collapse of the U.S. dollar. Thereby making their U.S. product more competitive on the world market.
plasma_guy
Oct 24, 2010

Rank: not rated yet
It looks like most of the 8 billion has to be for 22 nm upgrade, leaving very little for the new R/D lab.
Rank 4.2 /5 (5 votes)
Relevant PhysicsForums posts

More news stories

Apple VP: New project is 'most important,' 'best work we've done'

Jonathan Ive, Apple's senior vice president of industrial design, said that despite the iMac, iPhone, iPod or iPad, Apple's current project is its best.

Technology / Business

created 26 minutes ago | popularity not rated yet | comments 0

Fox sues Dish Network over ad-skipping DVR service

(AP) -- Broadcaster Fox is suing Dish Network over a service that offers commercial-free TV.

Technology / Telecom

created 47 minutes ago | popularity not rated yet | comments 0

HyperSolar shows dirty water no barrier to power world

(Phys.org) -- The Santa Barbara, California, company, HyperSolar, is set to transparently share the ups and downs of its research experiences toward the company’s ultimate vision, successfully producing ...

Technology / Energy & Green Tech

created 2 hours ago | popularity 4.7 / 5 (6) | comments 7 | with audio podcast report

Facebook launches iPhone camera app (Update)

Facebook released a "camera" application Thursday that lets people take Instagram-style pictures that can be shared with iPhones.

Technology / Software

created 3 hours ago | popularity 3 / 5 (2) | comments 2

New Google data show Microsoft's piracy problems (Update 2)

(AP) -- Google's Internet search engine receives more complaints about websites believed to be infringing on Microsoft's copyrights than it does about material produced by entertainment companies pushing ...

Technology / Internet

created 2 hours ago | popularity not rated yet | comments 4


Asteroid nudged by sunlight: Most precise measurement of Yarkovsky effect

Scientists on NASA's asteroid sample return mission, Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx), have measured the orbit of their destination asteroid, ...

Study provides compelling evidence for an effective new treatment for tinnitus

According to new research, a multidisciplinary approach to treating tinnitus that combines cognitive behaviour therapy with sound-based tinnitus retraining therapy is significantly more effective than currently available ...

'Personality genes' may help account for longevity

"It's in their genes" is a common refrain from scientists when asked about factors that allow centenarians to reach age 100 and beyond. Up until now, research has focused on genetic variations that offer a physiological advantage ...

Tiny planet-finding mirrors borrow from Webb Telescope playbook

NASA's next flagship mission — the James Webb Space Telescope — will carry the largest primary mirror ever deployed. This segmented behemoth will unfold to 21.3 feet in diameter once the observatory ...

Slip-and-slide power generators

Researchers from Vestfold University College in Norway have created a simple, efficient energy harvesting device that uses the motion of a single droplet to generate electrical power.

Brentuximab vedotin effective in large-cell lymphoma

(HealthDay) -- More than half of patients with relapsed or refractory systemic anaplastic large-cell lymphoma (ALCL) treated with the CD30-directed antibody-drug conjugate brentuximab vedotin achieve a complete ...