You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The new numba_dpex.experimental module is not pylint compliant. The following issues need to be handled to make the module pass pylint checks.
************* Module numba_dpex.experimental.kernel_dispatcher
numba_dpex/experimental/kernel_dispatcher.py:87:8: W0212: Access to a protected member _optimize_final_module of a client class (protected-access)
numba_dpex/experimental/kernel_dispatcher.py:91:12: W0212: Access to a protected member _final_module of a client class (protected-access)
numba_dpex/experimental/kernel_dispatcher.py:92:12: W0212: Access to a protected member _final_module of a client class (protected-access)
numba_dpex/experimental/kernel_dispatcher.py:161:28: W0212: Access to a protected member _final_module of a client class (protected-access)
numba_dpex/experimental/kernel_dispatcher.py:170:0: R0902: Too many instance attributes (13/7) (too-many-instance-attributes)
numba_dpex/experimental/kernel_dispatcher.py:183:4: W0102: Dangerous default value {} as argument (dangerous-default-value)
numba_dpex/experimental/kernel_dispatcher.py:183:4: W0102: Dangerous default value {} as argument (dangerous-default-value)
numba_dpex/experimental/kernel_dispatcher.py:209:8: W0233: __init__ method from a non direct base class '_DispatcherBase' is called (non-parent-init-called)
numba_dpex/experimental/kernel_dispatcher.py:183:4: W0231: __init__ method from base class 'Dispatcher' is not called (super-init-not-called)
numba_dpex/experimental/kernel_dispatcher.py:183:4: R0913: Too many arguments (10/5) (too-many-arguments)
numba_dpex/experimental/kernel_dispatcher.py:190:8: W0622: Redefining built-in 'locals' (redefined-builtin)
numba_dpex/experimental/kernel_dispatcher.py:186:8: W0613: Unused argument 'debug_flags' (unused-argument)
numba_dpex/experimental/kernel_dispatcher.py:187:8: W0613: Unused argument 'compile_flags' (unused-argument)
numba_dpex/experimental/kernel_dispatcher.py:188:8: W0613: Unused argument 'specialization_sigs' (unused-argument)
numba_dpex/experimental/kernel_dispatcher.py:189:8: W0613: Unused argument 'enable_cache' (unused-argument)
The text was updated successfully, but these errors were encountered:
The new
numba_dpex.experimental
module is notpylint
compliant. The following issues need to be handled to make the module pass pylint checks.The text was updated successfully, but these errors were encountered: