浏览代码

Rename the kwargs parameter in jitted functions

jonathanvdc 8 年之前
父节点
当前提交
a236e5def8
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      kernel/modelverse_jit/jit.py

+ 1 - 1
kernel/modelverse_jit/jit.py

@@ -1,7 +1,7 @@
 import modelverse_kernel.primitives as primitive_functions
 import modelverse_jit.tree_ir as tree_ir
 
-KWARGS_PARAMETER_NAME = "remainder"
+KWARGS_PARAMETER_NAME = "kwargs"
 """The name of the kwargs parameter in jitted functions."""
 
 class JitCompilationFailedException(Exception):