-
-
Notifications
You must be signed in to change notification settings - Fork 177
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
#1046 more SDK v6 updates and fix tests
git-svn-id: https://xpra.org/svn/Xpra/trunk@11473 3bb7dfac-3a0b-4e04-842a-767bc560f471
- Loading branch information
Showing
3 changed files
with
58 additions
and
4 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,23 @@ | ||
#!/usr/bin/env python | ||
# This file is part of Xpra. | ||
# Copyright (C) 2015 Antoine Martin <[email protected]> | ||
# Xpra is released under the terms of the GNU GPL v2, or, at your option, any | ||
# later version. See the file COPYING for details. | ||
|
||
from tests.xpra.codecs import test_nvenc | ||
|
||
def main(): | ||
from xpra.codecs.nvenc6 import encoder | ||
test_nvenc.set_encoder_module(encoder) | ||
test_nvenc.test_encode_one() | ||
#test_nvenc.test_context_leak() | ||
#test_nvenc.test_memleak() | ||
#test_nvenc.test_dimensions() | ||
#test_nvenc.test_perf() | ||
#test_nvenc.test_encode_all_GPUs() | ||
test_nvenc.test_context_limits() | ||
#test_nvenc.test_parallel_encode() | ||
|
||
|
||
if __name__ == "__main__": | ||
main() |
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