# grub2-mkconfig -o /boot/efi/EFI/fedora/grub.cfg
Generating grub configuration file ...
Found linux image: /boot/vmlinuz-4.7.2-201.fc24.x86_64
Found initrd image: /boot/initramfs-4.7.2-201.fc24.x86_64.img
Found linux image: /boot/vmlinuz-4.6.7-300.fc24.x86_64
Found initrd image: /boot/initramfs-4.6.7-300.fc24.x86_64.img
Found linux image: /boot/vmlinuz-4.6.6-300.fc24.x86_64
Found initrd image: /boot/initramfs-4.6.6-300.fc24.x86_64.img
Found linux image: /boot/vmlinuz-0-rescue-d3f67c2d11bc43afaf55d8e621c9a3f8
Found initrd image: /boot/initramfs-0-rescue-d3f67c2d11bc43afaf55d8e621c9a3f8.img
done
#
import xlrd
class ...:
....
....
# -------------------------------------------------------------------------
# Read Excel File
# -------------------------------------------------------------------------
def read_excelfile(self, filename):
book = xlrd.open_workbook(filename)
sheet = book.sheet_by_index(0)
self.rows = sheet.nrows
self.cols = sheet.ncols
self.header = ['' for col in range(self.cols)]
self.data = [[0 for col in range(self.cols)] for row in range(self.rows - 1)]
for row in range(self.rows):
for col in range(self.cols):
value = sheet.cell_value(row, col)
if row == 0:
self.header[col] = value
else:
self.data[row - 1][col] = value
Intel Inside のロゴに、ARM 系プロセッサの名前が併記される日が近いかもしれません。さらに、iPhone のプロセッサがインテル製(でも ARM 系)なんて時代がやってくる可能性すらあります。
参考サイト [1] でも触れられていますが 昨 4 月末に、Intel がモバイル向けプロセッサ Atom の開発を中止したという報道がありましたが、余力のできる生産能力を埋めるためにも、この経営判断はきっと正しいのでしょう。
ARM は実際に半導体を製造する工場を持っていませんが、ARM アーキテクチャと呼ばれる、プロセッサの設計を開発する会社で、その知財 (IP) を供与するビジネスで利益を得ています。特にモバイル分野では ARM アーキテクチャのプロセッサが数多く採用されているため、この分野では Intel とは競合関係にあります。昨日のライバルは今日のなんとやらです。その上、孫氏率いるソフトバンクグループが ARM を買収する手続き中なのですから、ビジネスの世界は複雑です。いや、ますます目が離せません。