dmlc--dgl
565f0c88fc
* refactor graph conv * docs & tests * fix lint * fix lint * fix lint * fix lint script * fix lint * Update * Style fix * Fix style * Fix style * Fix gpu case * Fix for gpu case * Hotfix edgesoftmax docs * Handle repeated features * Add docstring * Set default arguments * Remove dropout from nn.conv * Fix * add util fn for renaming * revert gcn_spmv.py * mx folder * fix wierd bug * fix mx * fix lint
10 行
281 B
Bash
10 行
281 B
Bash
#!/bin/bash
|
|
|
|
# cpplint
|
|
echo 'Checking code style of C++ codes...'
|
|
python3 third_party/dmlc-core/scripts/lint.py dgl cpp include src || exit 1
|
|
|
|
# pylint
|
|
echo 'Checking code style of python codes...'
|
|
python3 -m pylint --reports=y -v --rcfile=tests/lint/pylintrc python/dgl || exit 1
|