-
Notifications
You must be signed in to change notification settings - Fork 2.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[DOCS][Layer Tests] Update layer test documentation #23485
[DOCS][Layer Tests] Update layer test documentation #23485
Conversation
Signed-off-by: Kazantsev, Roman <[email protected]>
Co-authored-by: Anastasiia Pnevskaia <[email protected]>
Should we ask doc maintainers to review? |
I think we are docs maintainers for developers documentation:) |
Signed-off-by: Kazantsev, Roman <[email protected]>
Example to run the PyTorch layer test for the `torch.linalg.cross` operation on CPU and GPU with `FP16` and `FP32` inference precisions: | ||
```sh | ||
cd tests/layer_tests | ||
export TEST_DEVICE="CPU;GPU" | ||
export TEST_PRECISION="FP32;FP16" | ||
pytest pytorch_tests/test_cross.py |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Example to run the PyTorch layer test for the `torch.linalg.cross` operation on CPU and GPU with `FP16` and `FP32` inference precisions: | |
```sh | |
cd tests/layer_tests | |
export TEST_DEVICE="CPU;GPU" | |
export TEST_PRECISION="FP32;FP16" | |
pytest pytorch_tests/test_cross.py | |
Example to run the PyTorch layer test for the `torch.linalg.cross` operation on GPU with `FP16` inference precisions: | |
```sh | |
cd tests/layer_tests | |
export TEST_DEVICE=GPU | |
export TEST_PRECISION=FP16 | |
pytest pytorch_tests/test_cross.py |
I wouldn't recommend running GPU with FP32, it won't work now, because it currently will only change thresholds, not actual precision.
…23485) **Details:** Update layer test documentation. It will be used by external developers and mentioned in GFIs. **Ticket:** TBD --------- Signed-off-by: Kazantsev, Roman <[email protected]> Co-authored-by: Anastasiia Pnevskaia <[email protected]>
…23485) **Details:** Update layer test documentation. It will be used by external developers and mentioned in GFIs. **Ticket:** TBD --------- Signed-off-by: Kazantsev, Roman <[email protected]> Co-authored-by: Anastasiia Pnevskaia <[email protected]>
Details: Update layer test documentation. It will be used by external developers and mentioned in GFIs.
Ticket: TBD