(input_dim,output_dim)
| 93 | return 0 |
| 94 | |
| 95 | def e_emb_init(input_dim,output_dim): |
| 96 | global eid |
| 97 | return trainer_ops.emb_init(input_dim,output_dim,eid_low=(eid&0xFFFFFFFF),eid_high=(eid>>32)) |
| 98 | |
| 99 | def e_matmul2d(inputs,weight): |
| 100 | global eid,times |
nothing calls this directly
no outgoing calls
no test coverage detected