mirror of https://github.com/llvm/torch-mlir
14 lines
260 B
Python
14 lines
260 B
Python
|
# Some checks that we can import the various extensions and libraries and
|
||
|
# not have symbol collisions or other goings on.
|
||
|
# RUN: %PYTHON %s
|
||
|
|
||
|
import sys
|
||
|
|
||
|
print(f"PYTHONPATH={sys.path}")
|
||
|
|
||
|
import mlir
|
||
|
import npcomp
|
||
|
import _npcomp
|
||
|
|
||
|
print("Extensions all loaded")
|