Skip to content
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

Remove imports from __future__. The future is here now. #485

Merged
merged 1 commit into from
Jun 2, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions dpctl/_sycl_context.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,6 @@
""" Implements SyclContext Cython extension type.
"""

from __future__ import print_function

import logging

from cpython cimport pycapsule
Expand Down
2 changes: 0 additions & 2 deletions dpctl/_sycl_event.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,6 @@
""" Implements SyclEvent Cython extension type.
"""

from __future__ import print_function

import logging

from ._backend cimport DPCTLEvent_Delete, DPCTLEvent_Wait, DPCTLSyclEventRef
Expand Down
2 changes: 0 additions & 2 deletions dpctl/_sycl_platform.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,6 @@
""" Implements SyclPlatform Cython extension type.
"""

from __future__ import print_function

from ._backend cimport ( # noqa: E211
DPCTLCString_Delete,
DPCTLDeviceSelector_Delete,
Expand Down
2 changes: 0 additions & 2 deletions dpctl/_sycl_queue.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,6 @@
""" Implements SyclQueue Cython extension type.
"""

from __future__ import print_function

from ._backend cimport ( # noqa: E211
DPCTLContext_Create,
DPCTLContext_Delete,
Expand Down
2 changes: 0 additions & 2 deletions dpctl/_sycl_queue_manager.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,6 @@
# cython: language_level=3
# cython: linetrace=True

from __future__ import print_function

import logging
from contextlib import contextmanager

Expand Down