arinkverma.in arinkverma.in

arinkverma.in

Arink`s Blog

The answer is 42! Saturday, September 28, 2013. Summer of 2013 with Numpy and Google. GSoC is a learning process - we learn to work together to solve a big problem by breaking it down into smaller chunks. This year, 2013. I got chance to work as student contributor at Numpy. And the experience was worth paying the amount of effort. I have joined Numpy, the community thats quite friendly and helpful. I have written the summary of project into two post : Profiling. What I gained this year? The most challen...

http://www.arinkverma.in/

WEBSITE DETAILS
SEO
PAGES
SIMILAR SITES

TRAFFIC RANK FOR ARINKVERMA.IN

TODAY'S RATING

>1,000,000

TRAFFIC RANK - AVERAGE PER MONTH

BEST MONTH

December

AVERAGE PER DAY Of THE WEEK

HIGHEST TRAFFIC ON

Saturday

TRAFFIC BY CITY

CUSTOMER REVIEWS

Average Rating: 3.9 out of 5 with 9 reviews
5 star
1
4 star
6
3 star
2
2 star
0
1 star
0

Hey there! Start your review of arinkverma.in

AVERAGE USER RATING

Write a Review

WEBSITE PREVIEW

Desktop Preview Tablet Preview Mobile Preview

LOAD TIME

0.3 seconds

FAVICON PREVIEW

  • arinkverma.in

    16x16

CONTACTS AT ARINKVERMA.IN

Login

TO VIEW CONTACTS

Remove Contacts

FOR PRIVACY ISSUES

CONTENT

SCORE

6.2

PAGE TITLE
Arink`s Blog | arinkverma.in Reviews
<META>
DESCRIPTION
The answer is 42! Saturday, September 28, 2013. Summer of 2013 with Numpy and Google. GSoC is a learning process - we learn to work together to solve a big problem by breaking it down into smaller chunks. This year, 2013. I got chance to work as student contributor at Numpy. And the experience was worth paying the amount of effort. I have joined Numpy, the community thats quite friendly and helpful. I have written the summary of project into two post : Profiling. What I gained this year? The most challen...
<META>
KEYWORDS
1 skip to main
2 skip to sidebar
3 arink`s weblog
4 about me
5 and bottle necks
6 1 comments
7 email this
8 blogthis
9 share to twitter
10 share to facebook
CONTENT
Page content here
KEYWORDS ON
PAGE
skip to main,skip to sidebar,arink`s weblog,about me,and bottle necks,1 comments,email this,blogthis,share to twitter,share to facebook,numpy,python,in last post,identifying bottlenecks,or gil,pyarraycancastarrayto,pyarrayfromarray,improper structure,poem
SERVER
GSE
CONTENT-TYPE
utf-8
GOOGLE PREVIEW

Arink`s Blog | arinkverma.in Reviews

https://arinkverma.in

The answer is 42! Saturday, September 28, 2013. Summer of 2013 with Numpy and Google. GSoC is a learning process - we learn to work together to solve a big problem by breaking it down into smaller chunks. This year, 2013. I got chance to work as student contributor at Numpy. And the experience was worth paying the amount of effort. I have joined Numpy, the community thats quite friendly and helpful. I have written the summary of project into two post : Profiling. What I gained this year? The most challen...

INTERNAL PAGES

arinkverma.in arinkverma.in
1

Arink`s Blog: Speedup UFUNC_CHECK_STATUS by avoiding heavy clearing flag

http://www.arinkverma.in/2013/09/speedup-ufunccheckstatus-by-avoiding.html

The answer is 42! Saturday, September 14, 2013. Speedup UFUNC CHECK STATUS by avoiding heavy clearing flag. Is just single macro which do both checking clearing the error flags. It clear error flags every time after checking. We should avoid clear operation if not needed, as it is a bit expensive and take significant amount of time. Before each ufunc loop when. Combined was around 10%. Which is now dropped to 1%. For operation which don't raise any error. X = np.asarray([1]); x x;. Google Summer of Code.

2

Arink`s Blog: GSoC'13 Project Summary-1 : Numpy's profiling

http://www.arinkverma.in/2013/09/gsoc13-project-summary-1-numpys.html

The answer is 42! Monday, September 23, 2013. GSoC'13 Project Summary-1 : Numpy's profiling. Small numpy arrays are very similar to Python scalars but numpy incurs a fair amount of extra overhead for simple operations. For large arrays this doesn't matter, but for code that manipulates a lot of small pieces of data, it can be a serious bottleneck. Profiling simple operations like the above. Make sure to build it from source. Clone svn repository from http:/ gperftools.googlecode.com/svn/trunk/. First, ru...

3

Arink`s Blog: GSoC'13 Project Summary-2 : Numpy's Bottlenecks and its Removal

http://www.arinkverma.in/2013/09/gsoc13-project-summary-2-numpys.html

The answer is 42! Wednesday, September 25, 2013. GSoC'13 Project Summary-2 : Numpy's Bottlenecks and its Removal. I have mentioned the tools which I used for profiling numpy. Call-graph, made my life not easier but a bit simpler to detect time consuming methods. But time taken just indicate the possibility of bottlenecks as many of time consuming methods are highly optimized. Hence, critically reading code along with call-graph is the trick. Following types bottlenecks were observed. Together use signifi...

4

Arink`s Blog: Improvement in _extract_pyvals

http://www.arinkverma.in/2013/09/improvement-in-extractpyvals.html

The answer is 42! Wednesday, September 11, 2013. Improvement in extract pyvals. Errobj = Py BuildValue("NO", PyBytes FromString(name), retval);. It alone takes 10% of time, with every operations. Its better to avoid packing of string instead assign pointer to struct and stash them to thread local storage. Hence no allocations would be need to for errorobj. Every-time, which almost goes unused. Error object include name of ufunc and callback pointer. X = np.asarray([5.0,1.0]); x x. View my complete profile.

5

Arink`s Blog: Scope for improvement in _extract_pyvals

http://www.arinkverma.in/2013/09/scope-for-improvement-in-extractpyvals.html

The answer is 42! Monday, September 9, 2013. Scope for improvement in extract pyvals. I my last post, I mentioned how two functions,. Together use 12% of time. But major culprit is. Errobj = Py BuildValue("NO", PyBytes FromString(name), retval);. It alone takes 10% of time, with every operations. First approach I take, was to cached Py BuildValue with Thread storage or dict. With this time consumption of extract pyvals dropped to 4%. Errorobj caching with PyThreadState GetDict. Has been made at pr #3686.

UPGRADE TO PREMIUM TO VIEW 3 MORE

TOTAL PAGES IN THIS WEBSITE

8

OTHER SITES

arinku.blogspot.com arinku.blogspot.com

arin Blog

Thursday, February 10, 2011. Redirect requests to non-www to www. Cari file .htaccess. Edit dengan filemanager di web. Copikan script berikut ini :. Will automatically redirect requests to non-www to www. This will exempt robots.txt for search engines. Sitemap .(xml xml .gz)$. RewriteCond %{HTTP HOST} ([ .] ) .([ .] )$ [NC]. RewriteRule (.*)$ http:/ www.%1.%2/$1 [R=301,L]. Semoga berhasil. :). Thursday, February 10, 2011. Links to this post. Friday, October 15, 2010. Friday, October 15, 2010. 5 Ganti : e...

arinku.deviantart.com arinku.deviantart.com

Arinku (Loves pie.) - DeviantArt

Window.devicePixelRatio*screen.width 'x' window.devicePixelRatio*screen.height) :(screen.width 'x' screen.height) ; this.removeAttribute('onclick')" class="mi". Window.devicePixelRatio*screen.width 'x' window.devicePixelRatio*screen.height) :(screen.width 'x' screen.height) ; this.removeAttribute('onclick')". Join DeviantArt for FREE. Forgot Password or Username? Deviant for 10 Years. This deviant's full pageview. Last Visit: 270 weeks ago. This is the place where you can personalize your profile! MP3 pl...

arinkuafor.com arinkuafor.com

Türk Telekom Webim

arinkurin.com arinkurin.com

オープニングページ

arinkurin.pokebras.jp arinkurin.pokebras.jp

ブラジルありんくりん

ブラジルやポルトガルについて、ありんくりん あれもこれも 情報交換しませんか 現在の活動拠点は、大阪、奈良になっています. Http:/ www.coelang.tufs.ac.jp/modules/pt/gmod/index.html. Http:/ www.tufs.ac.jp/ts/personal/naotoshi/2.pdf#search='. Http:/ homepage2.nifty.com/atyuke/Lingua%20portuguesa.html. ポルトガルを味わうなら、 http:/ homepage2.nifty.com/atyuke/index.html. ポルトガル関係にリンクするなら、 http:/ homepage2.nifty.com/atyuke/nojapao-menu.html. Posted by カズ at 22:24. 多文化共生促進事業 の 災害時多言語情報作成ツール という、すぐれものを発見. Http:/ www.clair.or.jp/j/culture/disaster/index.html. Posted by カズ at 02:49.

arinkverma.in arinkverma.in

Arink`s Blog

The answer is 42! Saturday, September 28, 2013. Summer of 2013 with Numpy and Google. GSoC is a learning process - we learn to work together to solve a big problem by breaking it down into smaller chunks. This year, 2013. I got chance to work as student contributor at Numpy. And the experience was worth paying the amount of effort. I have joined Numpy, the community thats quite friendly and helpful. I have written the summary of project into two post : Profiling. What I gained this year? The most challen...

arinky-dink.tumblr.com arinky-dink.tumblr.com

Fluff 'n Stuff Artblog

Replied to your post. Ldquo;What other KH nonsense bullshittery needs explanation”. How about the three ansem conundrum? What do you mean there are 3 ansems-. I THOUGHT THERE WAS ONLY 2-. Unless diz is counted. So now there's 5 soras. 2 maybe 3 rikus. What other KH nonsense bullshittery needs explanation. As far as i know there are 2 rikus and 2.5 kairis. And heartless and nobodies should really switch their names. Because heartless are literally formed from hearts. And nobodies are like. the bodies.

arinky.com arinky.com

Rinky's Website

This is Rinky's New Website. Welcome to my website. This is Sai Rohan, studying 9th class in Karimnagar. You can see all my siblings in below picture. Stay tune for more updates .

arinkydink.blogspot.com arinkydink.blogspot.com

Arinko's Blog

Thursday, March 24, 2011 9:02 PM. I didn't have much time to post things up here, but now, since Spring is here. D. 8208;羊 が 大好き. My new favourite =7= . とてもじゃないけど TWITPIC に は のせられません  (´. 65381;ω・`. みつどもえ(c) Norio Sakurai (sorry, folks. I don't have the kanji for her name D ). Also, Happy-belated V-day to everyone ♥♥♥. 早く ニート に なりたい! (╬ ಠ益ಠ)/. Links to this post. Thursday, January 6, 2011 6:21 PM. It's for the group,. O7o/ join ♥. きみの悪いりんごっすねー =7=;;;. ビトロちゃま 万歳~  o/ /7/ /o/. 12288; http:/ www.y. 金魚&#1228...

arinlabs.com arinlabs.com

Arinlabs

Contributing to the most important evolution of machines. We develop artificial intelligence systems, mainly machine/robot hearing and understanding systems. Machine learning, Language Processing, Signal Processing, High Performance Computing (especially CPU/GPU heterogeneous computing), very dense cloud systems (that can serve to thousands of devices). We provide technology to the large service providers and manufacturers. We don't have any products or services that can be sold to individuals.

arinlake.com arinlake.com

Welcome arinlake.com - BlueHost.com

Web Hosting - courtesy of www.bluehost.com.