jacinle.jit.cext package

Submodules

jacinle.jit.cext.travis module

jacinle.jit.cext.travis.auto_travis(filename: str, required_files: Optional[Sequence[str]] = None, use_glob: bool = True)[source]

A simple function to automatically run the ./travis.sh script in the current directory. The most common usage is to put the following code in your __init__.py file and add auto_travis(__file__) to the end of the file.

Parameters:
  • filename – the __file__ variable of the current module.
  • required_files – a list of required files to check. If not provided, use ['**/*.so'].
  • use_glob – whether to use glob to check the required files.