翻訳と辞書
Words near each other
・ Numb (film)
・ NUMB (gene)
・ Numb (Hammerbox album)
・ Numb (Holly McNarland song)
・ Numb (Honey Ryder song)
・ Numb (Linea 77 album)
・ Numb (Linkin Park song)
・ Numb (Pet Shop Boys song)
・ Numb (Rihanna song)
・ Numb (The Killing)
・ Numb (U2 song)
・ Numb (Usher song)
・ Numb Chucks
・ Numb Nuts
・ Numb/Encore
Numba
・ Numba Mwila
・ Numbal
・ Numbami language
・ Numbat
・ Numbat Island
・ Numbeo
・ Number
・ Number (disambiguation)
・ Number (magazine)
・ Number (music)
・ Number (sports)
・ Number 1 (Big Bang album)
・ Number 1 (Goldfrapp song)
・ Number 1 (Linda Király album)


Dictionary Lists
翻訳と辞書 辞書検索 [ 開発暫定版 ]
スポンサード リンク

Numba : ウィキペディア英語版
Numba

Numba is an Open Source NumPy-aware optimizing compiler for Python sponsored by Continuum Analytics, Inc. It uses the LLVM compiler infrastructure to compile Python syntax to machine code.
It is aware of NumPy arrays as typed memory regions and so can speed-up code using NumPy arrays. Other, less well-typed code will be translated to Python C-API calls effectively removing the "interpreter" but not removing the dynamic indirection.
Numba is also not a tracing jit. It compiles code before it gets run either using run-time type information or type information provided in a decorator.
Numba is a mechanism for producing machine code from Python syntax and typed data structures such as those that exist in NumPy.
== Traits ==

Numba compiles Python code with LLVM to code which can be natively executed at runtime. This happens by decorating Python functions, which allows users to create native functions for different input types, or to create them on the fly:

@jit('f8(f8())')
def sum1d(my_double_array):
total = 0.0
for i in range(my_double_array.shape()):
total += my_double_array()
return total

To make the above example work for any compatible input types automatically, we can create a function that specializes automatically:

@jit
def sum1d(my_array):
...

@autojit is deprecated in newer versions and @jit() is the recommended use.〔(Numba 0.12.0 release notes )〕

抄文引用元・出典: フリー百科事典『 ウィキペディア(Wikipedia)
ウィキペディアで「Numba」の詳細全文を読む



スポンサード リンク
翻訳と辞書 : 翻訳のためのインターネットリソース

Copyright(C) kotoba.ne.jp 1997-2016. All Rights Reserved.