File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -122,18 +122,17 @@ jobs:
122122 pip install dist/flashinfer_cubin*.whl
123123
124124 # Test import and check for cubins
125- python -c "
125+ python -c '
126126import flashinfer_cubin
127- print(f' ✓ Successfully imported flashinfer_cubin' )
127+ print(" ✓ Successfully imported flashinfer_cubin" )
128128from pathlib import Path
129- import flashinfer_cubin
130- cubin_dir = Path(flashinfer_cubin.__file__).parent / 'cubins'
129+ cubin_dir = Path(flashinfer_cubin.__file__).parent / "cubins"
131130if cubin_dir.exists() :
132- cubins = list(cubin_dir.rglob(' *.cubin' ))
133- print(f' ✓ Found {len(cubins)} cubin files in package' )
131+ cubins = list(cubin_dir.rglob(" *.cubin" ))
132+ print(f" ✓ Found {len(cubins)} cubin files in package" )
134133else :
135- print(' ⚠ Warning : cubins directory not found in package' )
136- "
134+ print(" ⚠ Warning : cubins directory not found in package" )
135+ '
137136
138137 deactivate
139138 rm -rf test-env
You can’t perform that action at this time.
0 commit comments