Amar3tto commented on code in PR #36451:
URL: https://github.com/apache/beam/pull/36451#discussion_r2460979356
##########
sdks/python/container/common.gradle:
##########
@@ -53,7 +53,19 @@ def generatePythonRequirements =
tasks.register("generatePythonRequirements") {
"${files(configurations.sdkSourceTarball.files).singleFile} " +
"ml_image_requirements.txt " +
"container/ml " +
- "[gcp,dataframe,test,ml_cpu] " +
+ "[gcp,dataframe,test,tensorflow,torch,transformers] " +
+ "${pipExtraOptions}"
+ }
+ // GPU requirements not used for any containers directly due to licensing,
+ // but can be picked up by customers or other consumers for use.
+ exec {
+ executable 'sh'
+ args '-c', "cd ${rootDir} && ${runScriptsPath} " +
+ "${project.ext.pythonVersion} " +
+ "${files(configurations.sdkSourceTarball.files).singleFile} " +
+ "gpu_image_requirements.txt " +
+ "container/ml " +
+ "[gcp,dataframe,test,tensorflow,torch,transformers,vllm] " +
"${pipExtraOptions}"
}
Review Comment:
Removed
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]