forked from vllm-project/vllm
-
Notifications
You must be signed in to change notification settings - Fork 51
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
506e026
commit a9e3dfa
Showing
4 changed files
with
28 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
import vllm.attention.backends.habana_attn | ||
import vllm.attention.ops.habana_paged_attn | ||
|
||
def test_habana_attn(): | ||
assert True == True | ||
|
||
def test_habana_paged_attn(): | ||
assert True == True |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
from vllm.executor.habana_executor import HabanaExecutor | ||
from vllm.executor.ray_habana_executor import RayHabanaExecutor | ||
|
||
def test_habana_executor(): | ||
assert True == True | ||
|
||
def test_ray_habana_executor(): | ||
assert True == True |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
from vllm.worker.habana_model_runner import HabanaModelRunner | ||
from vllm.worker.habana_worker import HabanaWorker | ||
|
||
def test_habana_worker(): | ||
assert True == True | ||
|
||
def test_habana_model_runner(): | ||
assert True == True |