alfacoder
Member
- Сообщения
- 58
- Реакции
- 11
Features

Fift kernel
Aside from the convenient Jupyter interactive workflow this kernel provides:
Run in docker
0. Get the latest image from dockerhub (only when new releases are published)
1. Create container using verified docker image:
3. Check that Jupyter is now supporting Fift and FunC kernels
Install from sources
1. Ensure the following packages are installed: libssl-dev zlib1g-dev uuid-dev
2.Get the sources, build and install
3. Check that Jupyter is now supporting Fift and FunC kernels
Github: https://github.com/atomex-me/xeus-fift

Fift kernel
Aside from the convenient Jupyter interactive workflow this kernel provides:
- Syntax highlighting
- Words autocomplete via Tab (including those which are included or defined by you)
- In-place docstrings via Shift+Tab (for words defined in FiftBase and TVM pdf files)
- Syntax highlighting including (non)const methods and pseudo-namespaces
- Autoindentation
- Autocomplete by Tab using keywords and global functions
- Inspect function signature by Shift+Tab
- Extra: #include macro and print debug helper
- At the top-level of each cell you can use #include "path/to/file" macro to load functions from a .fc file. They will be available throughout the notebook.
- You can define multiple functions in any cell, they will also be available from everywhere.
- At the end of the cell (using separate cell is recommended) you can write piece of code not wrapped by a function definition. It will be automatically used as main body. Such code cannot be accessed from another cell.
- Alternatively, you can specify main function explicitly.
- You can omit return and trailing ; in the main code block - they will be added during the execution.
- Note, that every time you re-run a cell, all functions defined in this cell are being overwritten.
Run in docker
0. Get the latest image from dockerhub (only when new releases are published)
docker pull atomex/xeus-fift
1. Create container using verified docker image:
docker run --rm -it -p 127.0.0.1:8888:8888 -v $(pwd):/home/jupyter/notebooks atomex/xeus-fift
- Open the link from container output in your browser
- Save notebooks in the mapped folder in order not to loose them
- Check out the latest release tag at https://github.com/atomex-me/xeus-fift/releases
- Download and install the package
Код:
wget https://github.com/atomex-me/xeus-fift/releases/download/0.1.0/xeus-fift_0.1.0-1_amd64.deb -P /tmp/
sudo dpkg -i /tmp/xeus-fift_0.1.0-1_amd64.deb
jupyter kernelspec list
Install from sources
1. Ensure the following packages are installed: libssl-dev zlib1g-dev uuid-dev
2.Get the sources, build and install
Код:
git clone https://github.com/atomex-me/xeus-fift
cd xeus-fift
mkdir build
cd build
cmake ..
make xeus-fift
sudo make install
jupyter kernelspec list
Github: https://github.com/atomex-me/xeus-fift