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

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

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!


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

查看所有标签

猜你喜欢:

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

大学程序设计课程与竞赛训练教材

大学程序设计课程与竞赛训练教材

吴永辉、王建德 / 机械工业出版社 / 2013-6 / 69.00

本书每章为一个主题,实验内容安排紧扣大学算法和数学的教学,用程序设计竞赛中的算法和数学试题作为实验试题,将算法和数学的教学与程序设计竞赛的解题训练结合在一起;在思维方式和解题策略的训练方面,以问题驱动和启发式引导为主要方式,培养读者通过编程解决问题的能力。 本书特点: 书中给出的234道试题全部精选自ACM国际大学生程序设计竞赛的世界总决赛以及各大洲赛区现场赛和网络预赛、大学程序设计竞......一起来看看 《大学程序设计课程与竞赛训练教材》 这本书的介绍吧!

图片转BASE64编码
图片转BASE64编码

在线图片转Base64编码工具

正则表达式在线测试
正则表达式在线测试

正则表达式在线测试

HSV CMYK 转换工具
HSV CMYK 转换工具

HSV CMYK互换工具