Skip to main content

Logo st-make

st-make is a CLI tool for creating and verifying problem packages for sio2 with features such as:

  • measuring time and memory in the same deterministic way as sio2,
  • running the solutions in parallel,
  • keeping a git-friendly report of solutions' scores,
  • catching mistakes in the problem packages as early as possible,
  • and more.

This tool is a fork of sinol-make, with features specific to Talent contests.

Contents

Why?

The purpose of the tool is to make it easier to create good problem packages for Talent competitions, which requires collaboration with other people and using a multitude of "good practices" recommendations. While there are several excellent CLI tools for creating tests and solutions, they lack some built-in mechanisms for verifying packages and finding mistakes before uploading the package to the judge system. As st-make was created specifically for the sio2 problem packages, by default it downloads and uses sio2's deterministic mechanism of measuring solutions' runtime, called sio2jail.

Installation

It's possible to directly install st-make through Python's package manager pip, which usually is installed alongside Python:

pip3 install st-make

pip installs the st-make executable in ~/.local/bin/ directory, so make sure this directory is in your PATH. Here's how to add a directory to PATH.

As sio2jail works only on Linux-based operating systems, we do not recommend using operating systems such as Windows or macOS. Nevertheless st-make supports those operating systems, though there are additional installation steps required to use other tools for measuring time (which are non-deterministic and produce reports different from sio2):

  • Debian-based systems (Ubuntu, usually Windows WSL): apt install time
  • Arch-based systems: pacman -S time
  • macOS: brew install gnu-time coreutils

Autocompletion (optional)

If you would like to have autocompletion for st-make commands, run the following command and refresh the shell (e.g. by opening a new terminal):

activate-global-python-argcomplete

Usage

The available commands (see st-make --help) are:

  • st-make run -- Runs selected solutions (by default all solutions) on selected tests (by default all tests) with a given number of CPUs. Measures the solutions' time with sio2jail, unless specified otherwise. After running the solutions, it compares the solutions' scores with the ones saved in config.yml. If you're using sio2jail, make sure you are not running on efficiency cpu cores. You can check if you have them like this. To run on normal cpu cores, use taskset -c 8-15 st-make ..., assuming that cpu cores 8-15 are not efficiency cores. Run st-make run --help to see available flags.
  • st-make gen -- Generate input files using ingen program (for example prog/abcingen.cpp for abc task). Whenever the new input differs from the previous one, the model solution will be used to generate the new output file. You can also specify your ingen source file which will be used. Run st-make gen --help to see available flags.
  • st-make ingen -- Generate input files using ingen program (for example prog/abcingen.cpp for abc task). You can also specify your ingen source file which will be used. Run st-make ingen --help to see available flags.
  • st-make outgen -- Generate output files using the model solutions. Run st-make outgen --help to see available flags.
  • st-make inwer -- Verifies whether input files are correct using your "inwer.cpp" program. You can specify what inwer program to use, what tests to check and how many CPUs to use. Run st-make inwer --help to see available flags.
  • st-make export -- Creates archive ready to upload to Wyzwania, Talent-camp and other sio2 instances. Run st-make export --help to see all available flags.
  • st-make doc -- Compiles all LaTeX files in doc/ directory to PDF. Run st-make doc --help to see all available flags.
  • st-make verify -- Verifies the package. This command runs stress tests (if available), verifies the config, generates tests, generates problem statements, runs inwer and run all solutions. Ingen and inwer are compiled with address and UB sanitizers. Run st-make verify --help to see all available flags.
  • st-make chkwer -- Run checker with model solution and print results. Prints a table with points and checker's comments. This command fails if the model solution didn't score maximum points. Run st-make chkwer --help to see all available flags.
  • st-make init [id] -- Creates package from template on github and sets task id to provided [id]. Requires an internet connection to run.

You can also run multiple commands at once, for example:

st-make gen prog/abcingen2.cpp inwer --cpus 4 run --tests abc1*.in doc export --no-statement

There are also available short aliases for the commands:

  • st-make r for st-make run
  • st-make g for st-make gen
  • st-make i for st-make inwer
  • st-make e for st-make export
  • st-make d for st-make doc
  • st-make v for st-make verify
  • st-make c for st-make chkwer
  • stm for st-make

Contest types

st-make changes its behavior depending on the contest type specified in config.yml. You can specify the contest type with the sinol_contest_type key in config. Here is the table of available contest types and their features:

Feature default oi oij icpc
Max score 100 100 100 1
Default time tool sio2jail sio2jail sio2jail time
Full score if took less than half of the time limit,
otherwise linearly decreasing to 1.
✔️
Full score if took less than the time limit ✔️ ✔️ ✔️
Scores must sum up to 100 ✔️ ✔️
Limits can be set for individual tests ✔️ ✔️ ✔️
Verifies if tests are named correctly
(letters within groups increase, group numbers increase)
✔️ ✔️ ✔️

Reporting bugs and contributing code

Release files for st-make 1.0.0

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for st-make 1.0.0
File Size Uploaded
st_make-1.0.0.tar.gz 81.9 kB Details

Built distribution (wheel)

Table of built distributions (wheels) for st-make 1.0.0
File Interpreter ABI Platform
st_make-1.0.0-py3-none-any.whl Python 3 none any Details

Total release size: 180.9 kB

Release files / st_make-1.0.0.tar.gz

Download URL st_make-1.0.0.tar.gz
Size 81.9 kB
Tags Source
SHA-256 checksum
How to use checksums
a737c3083963aae7800cf983651a6176b049d5c9b6b366e63748fbb02be3e8de
BLAKE2b-256 checksum
How to use checksums
5d57a97858a3a0b66ec1927735dffe08239649a2ae3d11c456f7e257606796e4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.9

Release files / st_make-1.0.0-py3-none-any.whl

Download URL st_make-1.0.0-py3-none-any.whl
Size 99.0 kB
Tags Python 3
SHA-256 checksum
How to use checksums
07608dd5ff69c80d0b2bb3ea5a74e931d2f6e3de6018181daf5988617ad15d5d
BLAKE2b-256 checksum
How to use checksums
f19760c62d7ec105a208279f55610484380580b3fea62a7982e10bd960f8879c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.9

Release history Release notifications | RSS feed

This release

1.0.0 This release

2 release files

0.0.4

2 release files

0.0.3

2 release files

0.0.2

2 release files

0.0.1

2 release files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page