Comments¶
- It is suggested that you use use
pathlibpackage instead ofos.path.
Hands on the Python module glob
Comment¶
pathlib.Path.glob is preferred to the
globmodule!!The list returned is not sorted.
Maven Dependencies
Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!
Properties
<properties>
<scala.version>2.11.11</scala.version>
</properties>
Dependencies
Unit Test
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.11</version>
<scope>test</scope>
</dependency>
specs
<dependency>
<groupId …Tips on Deno
Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!
Add the following into the file .vscode/settings.json under the root directory of your project.
{
"deno.enable": true,
}
References
https://mp.weixin.qq.com/s …
GPU Computing in Python
Hands on the Python module numba
Installation¶
numba can be installed using the following command.
:::bash
pip3 install numba
If you need CUDA support, you have to install CUDA drivers.
:::bash
sudo apt-get install cuda-10-1
Instead of going through the hassle of configuring numba for GPU, a better way is to run numba in a Nvidia Docker container. The Docker image nvidia/cuda:10.1-cudnn7-runtime-ubuntu18.04 has CUDA runtime installed, so it is as easy as installing numba on top it and you are ready to go. For more detailed instructions, please refer to