publicsynchronizedvoidstart(){if(threadStatus!=0)thrownewIllegalThreadStateException();
group.add(this);boolean started =false;try{start0();
started =true;}finally{try{if(!started){
group.threadStartFailed(this);}}catch(Throwable ignore){}}}
JDK的官方文档:※ Causes this thread to begin execution; the Java Virtual Machine calls the run method of this thread. 上面这句话的意思是:在开始执行这个线程时,JVM将会调用该线程的run方法,换言之,run方法是被JNI方法start0()调用的。
1. 基本信息
题目论文作者与单位来源年份The Power of Scale for Parameter-Effificient Prompt TuningBrian Lester等googleConference on Empirical Methods in Natural Language Processing2021
857 Citations
论文链接:https://arxiv.org/abs/2104.08691
论…