()
| 54 | |
| 55 | |
| 56 | def is_sentencepiece_installed(): |
| 57 | try: |
| 58 | subprocess.check_call('pkg-config sentencepiece --libs', shell=True) |
| 59 | return True |
| 60 | except subprocess.CalledProcessError: |
| 61 | return False |
| 62 | |
| 63 | |
| 64 | def is_gil_disabled(): |
no outgoing calls
no test coverage detected