Gradle helloworld task


Edit build.gradle
task helloworld {
    println "Hello world"
}

List tasks and find helloworld
$gradle tasks --all

...
Other tasks
-----------
helloworld
prepareKotlinBuildScriptModel

BUILD SUCCESSFUL in 1s
1 actionable task: 1 executed

Run task
$ gradle helloworld
> Configure project :
Hello world

BUILD SUCCESSFUL in 931ms


沒有留言:

張貼留言

Lessons Learned While Benchmarking vLLM with GPU

Recently, I benchmarked vLLM on a GPU to better understand how much throughput can realistically be expected in an LLM serving setup. One ...