Skip to content

Commit

Permalink
f
Browse files Browse the repository at this point in the history
  • Loading branch information
zhanglei1949 committed Sep 27, 2022
1 parent 1f7d7cb commit 3cd01b1
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions coordinator/gscoordinator/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,9 @@
ANALYTICAL_ENGINE_JAVA_HOME = ANALYTICAL_ENGINE_HOME

ANALYTICAL_ENGINE_JAVA_RUNTIME_JAR = os.path.join(
ANALYTICAL_ENGINE_JAVA_HOME, "lib", "grape-runtime-{}.jar".format(__version__)
ANALYTICAL_ENGINE_JAVA_HOME,
"lib",
"grape-runtime-{}-shaded.jar".format(__version__),
)
ANALYTICAL_ENGINE_JAVA_INIT_CLASS_PATH = "{}".format(ANALYTICAL_ENGINE_JAVA_RUNTIME_JAR)

Expand Down Expand Up @@ -161,7 +163,9 @@
LLVM4JNI_USER_OUT_DIR_BASE = "user-llvm4jni-output"
PROCESSOR_MAIN_CLASS = "com.alibaba.graphscope.annotation.Main"
JAVA_CODEGNE_OUTPUT_PREFIX = "gs-ffi"
GRAPE_PROCESSOR_JAR = glob.glob(GRAPHSCOPE_HOME + "/lib/grape-runtime*.jar")[0]
GRAPE_PROCESSOR_JAR = os.path.join(
GRAPHSCOPE_HOME, "lib", "grape-runtime-{}-shaded.jar".format(__version__)
)

GIRAPH_DIRVER_CLASS = "com.alibaba.graphscope.app.GiraphComputationAdaptor"

Expand Down

0 comments on commit 3cd01b1

Please sign in to comment.