-
Notifications
You must be signed in to change notification settings - Fork 229
feat: adding code for release v0.8.0 of CV-CUDA #165
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
Conversation
class OpAsImageFromNVCVImage(AbstractOpBase): | ||
def setup(self, input): | ||
# dummy run that does not use cache | ||
img = nvcv.Image((128, 128), nvcv.Format.RGBA8) |
Check warning
Code scanning / CodeQL
Variable defined multiple times Warning
redefined
def setup(self, input): | ||
# dummy run that does not use cache | ||
nvcv.ImageBatchVarShape(100) | ||
img = nvcv.Image((128, 128), nvcv.Format.RGBA8) |
Check warning
Code scanning / CodeQL
Variable defined multiple times Warning
redefined
|
||
# NOTE: One must import PyCuda driver first, before CVCUDA or VPF otherwise | ||
# things may throw unexpected errors. | ||
import pycuda.driver as cuda # noqa: F401 |
Check notice
Code scanning / CodeQL
Unused import Note
|
||
# NOTE: One must import PyCuda driver first, before CVCUDA or VPF otherwise | ||
# things may throw unexpected errors. | ||
import pycuda.driver as cuda # noqa: F401 |
Check notice
Code scanning / CodeQL
Unused import Note
|
||
# NOTE: One must import PyCuda driver first, before CVCUDA or VPF otherwise | ||
# things may throw unexpected errors. | ||
import pycuda.driver as cuda # noqa: F401 |
Check notice
Code scanning / CodeQL
Unused import Note
Signed-off-by: Miles Price <[email protected]>
Signed-off-by: Miles Price <[email protected]>
Adding code for release v0.8.0 of CV-CUDA