Skip to content
Open
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
4 changes: 2 additions & 2 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# See https://pre-commit.com/hooks.html for more hooks
repos:
- repo: https://github.com/PyCQA/bandit
rev: '1.9.2'
rev: '1.9.3'
hooks:
- id: bandit
pass_filenames: false
Expand All @@ -13,7 +13,7 @@ repos:
- id: end-of-file-fixer
- id: trailing-whitespace
- repo: https://github.com/psf/black
rev: 25.12.0
rev: 26.1.0
hooks:
- id: black
exclude: "versioneer.py|dpctl/_version.py"
Expand Down
1 change: 1 addition & 0 deletions dpctl/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
SYCL runtime classes described in :sycl_runtime_classes:`Section 4.6 <>` of
the :sycl_spec_2020:`SYCL 2020 spec <>`.
"""

__author__ = "Intel Corp."

import os
Expand Down
1 change: 1 addition & 0 deletions dpctl/enum_types.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
backend and device_type enumerations.

"""

from enum import Enum, auto

__all__ = ["device_type", "backend_type", "event_status_type"]
Expand Down
1 change: 1 addition & 0 deletions dpctl/memory/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@
`memoryview`, or `array.array` classes.

"""

from ._memory import (
MemoryUSMDevice,
MemoryUSMHost,
Expand Down
1 change: 1 addition & 0 deletions dpctl/program/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
file.

"""

from ._program import (
SyclKernel,
SyclProgram,
Expand Down
Loading