(src, dst)
| 35 | assert (dst_dic[k].data == src_dic[k].data).all() |
| 36 | |
| 37 | def copy_from_param(src, dst): |
| 38 | assert src.data.shape == dst.data.shape |
| 39 | dst.data = src.data |
| 40 | |
| 41 | def copy_layer_norm(src, dst): |
| 42 | src_ln = [] |
no outgoing calls
no test coverage detected