Skip to content
This repository was archived by the owner on Feb 24, 2026. It is now read-only.
Merged
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: 3 additions & 1 deletion bitblas/cache/operator.py
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,9 @@ def _instantiate_and_add_operator(self, mapping, config, rt_mod, srcpath, libpat
global_operator_cache = OperatorCache()


def load_global_ops_cache(database_path=BITBLAS_DATABASE_PATH, target=None):
def load_global_ops_cache(database_path=None, target=None):
if database_path is None:
database_path = get_database_path()
if target is None:
target = bitblas.auto_detect_nvidia_target()
logger.info(f"Loading operators from database {database_path} for target {target}")
Expand Down