DOUBLE your Google Colab RAM in 10 seconds using these 10 characters

栏目: IT技术 · 发布时间: 3年前

DOUBLE your Google Colab RAM in 10 seconds using these 10 characters

There is one catch: after the 25 GB upgrade, your current runtime’s state will be lost, including local files. You need to run your program again, from scratch. Perhaps upload files again, etc. So if you KNOW that you’ll certainly NEED that extra RAM, allocate it first, before finding out about it after it is too late.

So how do you allocate so much RAM? I found a few solutions online, but (1) they take around 60 seconds (2) they require multiple lines of code.

I decided to come up with an easier solution: a single, 10-character line of code that will do the trick, and do it very fast, in just 10 seconds. Here it is:

[1]*10**10

That’s it. That’s the code. How does it work? Python will attempt to create a list comprised of 10¹⁰=10,000,000,000 integers. However, such a list requires more than 12 GB. In fact, it takes about 80 GB of RAM to store this list. Hence, the session will crash and the upgrade will quickly be available. So: if you are sure that your program will need the double RAM, run [1]*10**10 in a scratch cell (Ctrl/⌘+Alt+N), accept the RAM upgrade, and that’s it. You’re done.

Hope you enjoyed the post! And now, to the coding challenge

And now for the CODING CHALLENGE!

Can you find a shorter piece of code that will use up all the RAM in 10 seconds? Post it in the comments!


以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持 码农网

查看所有标签

猜你喜欢:

本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们

Haskell

Haskell

Simon Thompson / Addison-Wesley / 1999-3-16 / GBP 40.99

The second edition of Haskell: The Craft of Functional Programming is essential reading for beginners to functional programming and newcomers to the Haskell programming language. The emphasis is on th......一起来看看 《Haskell》 这本书的介绍吧!

CSS 压缩/解压工具
CSS 压缩/解压工具

在线压缩/解压 CSS 代码

SHA 加密
SHA 加密

SHA 加密工具

RGB HSV 转换
RGB HSV 转换

RGB HSV 互转工具