Sarthak commited on
Commit ·
293cdb2
1
Parent(s): d820ac9
chore(distiller): remove unused GPU_NAME variable
Browse filesRemove GPU_NAME from the configuration settings and the __all__ list.
This simplifies the configuration and removes an unused variable.
src/distiller/__init__.py
CHANGED
|
@@ -22,7 +22,6 @@ from .analyze import CodeSearchNetAnalyzer
|
|
| 22 |
from .config import (
|
| 23 |
BEAM_ENV_SETTINGS,
|
| 24 |
DEFAULT_EVALUATION_MODELS,
|
| 25 |
-
GPU_NAME,
|
| 26 |
IMAGE,
|
| 27 |
codesearchnet_config,
|
| 28 |
directories,
|
|
@@ -44,7 +43,6 @@ __all__ = [
|
|
| 44 |
# Configuration
|
| 45 |
"BEAM_ENV_SETTINGS",
|
| 46 |
"DEFAULT_EVALUATION_MODELS",
|
| 47 |
-
"GPU_NAME",
|
| 48 |
"IMAGE",
|
| 49 |
# Main classes
|
| 50 |
"CodeSearchNetAnalyzer",
|
|
|
|
| 22 |
from .config import (
|
| 23 |
BEAM_ENV_SETTINGS,
|
| 24 |
DEFAULT_EVALUATION_MODELS,
|
|
|
|
| 25 |
IMAGE,
|
| 26 |
codesearchnet_config,
|
| 27 |
directories,
|
|
|
|
| 43 |
# Configuration
|
| 44 |
"BEAM_ENV_SETTINGS",
|
| 45 |
"DEFAULT_EVALUATION_MODELS",
|
|
|
|
| 46 |
"IMAGE",
|
| 47 |
# Main classes
|
| 48 |
"CodeSearchNetAnalyzer",
|