-
Notifications
You must be signed in to change notification settings - Fork 14
PTX Backend #18
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
PTX Backend #18
Changes from all commits
0cd7485
626c2f5
bbbb8ef
393b409
67d1beb
e2a818b
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,4 @@ | ||
| .version 8.7 | ||
| .target sm_${cc[0]}${cc[1]}${"a" if cc[0] >= 9 else ""} | ||
| .address_size 64 | ||
| ${next.body()} | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,281 @@ | ||
| <%inherit file='base'/> | ||
|
|
||
| <% | ||
| pftype = 'f32' if dtype == 'float' else 'f64' | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Is it worth factoring any of this into base? |
||
| dwidth_i = 4 if dtype == 'float' else 8 | ||
| fzero = '0f00000000' if dtype == 'float' else '0d0000000000000000' | ||
| has_zero_rows = any(jx == -1 for jx in afix) | ||
| mx = partition(A, into=msplit, by='rows') | ||
| bix_list = list(bix) | ||
| bchunks = chunk(bix_list, bsz) | ||
| m_per_group = max(len(mcx) for mcx in mx) | ||
| bsub_bytes = 2 * bsz * blockx * dwidth_i | ||
| def bsub_off(buf, idx): | ||
| return (buf * bsz + idx) * blockx * dwidth_i | ||
| use_cpasync = cc is not None and (cc[0], cc[1]) >= (8, 0) and dwidth_i in (4, 8) | ||
| %> | ||
|
|
||
| % if n is None: | ||
| .visible .entry ${kname}(.param .u32 _n, | ||
| .param .u64 _b, | ||
| .param .u32 _ldb, | ||
| .param .u64 _c, | ||
| .param .u32 _ldc) | ||
| { | ||
| .reg .u32 ldb, ldc; | ||
| ld.param.u32 ldb, [_ldb]; | ||
| ld.param.u32 ldc, [_ldc]; | ||
| % else: | ||
| .visible .entry ${kname}(.param .u64 _b, | ||
| .param .u64 _c) | ||
| { | ||
| % endif | ||
| .reg .u32 n, id, tid_x, tid_y; | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Ensure we throw higher up if n is too big. |
||
| .reg .u64 b, c, b_base, c_base, bsub_thread; | ||
| % if use_cpasync: | ||
| .reg .u32 bsub_sm_thread; | ||
| % endif | ||
| .reg .${pftype} bv, csub<${m_per_group}>; | ||
| .reg .pred p1, p_skip; | ||
| .shared .align 8 .b8 _bsub[${bsub_bytes}]; | ||
|
|
||
| % if n is None: | ||
| ld.param.u32 n, [_n]; | ||
| % else: | ||
| mov.u32 n, ${n}; | ||
| % endif | ||
| ld.param.u64 b, [_b]; | ||
| ld.param.u64 c, [_c]; | ||
|
|
||
| { | ||
| .reg .u32 _ctaid_x; | ||
| mov.u32 _ctaid_x, %ctaid.x; | ||
| mov.u32 tid_x, %tid.x; | ||
| mov.u32 tid_y, %tid.y; | ||
| mad.lo.u32 id, _ctaid_x, ${blockx}, tid_x; | ||
| } | ||
|
|
||
| setp.ge.u32 p1, id, n; | ||
| @p1 bra $L_EXIT; | ||
|
|
||
| cvta.to.global.u64 b, b; | ||
| cvta.to.global.u64 c, c; | ||
|
|
||
| { | ||
| .reg .u64 _id64; | ||
| cvt.u64.u32 _id64, id; | ||
| mad.lo.u64 b_base, _id64, ${dwidth_i}, b; | ||
| mad.lo.u64 c_base, _id64, ${dwidth_i}, c; | ||
| } | ||
|
|
||
| { | ||
| .reg .u64 _tx_off; | ||
| mul.wide.u32 _tx_off, tid_x, ${dwidth_i}; | ||
| mov.u64 bsub_thread, _bsub; | ||
| add.u64 bsub_thread, bsub_thread, _tx_off; | ||
| } | ||
| % if use_cpasync: | ||
| { | ||
| .reg .u64 _sm64; | ||
| cvta.to.shared.u64 _sm64, bsub_thread; | ||
| cvt.u32.u64 bsub_sm_thread, _sm64; | ||
| } | ||
| % endif | ||
|
|
||
| % for cid, mcx in enumerate(mx): | ||
| ## cid = ${cid}, rows ${mcx} | ||
| setp.ne.u32 p_skip, tid_y, ${cid}; | ||
| @p_skip bra $L_END_CID_${cid}; | ||
|
|
||
| % if use_cpasync: | ||
| ## Async fill of chunk 0 | ||
| % for idx, kx in enumerate(bchunks[0]): | ||
| % if idx % msplit == cid: | ||
| % if n is None: | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. See if we can come up with some consistent indentation for Mako. Am open to ideas. |
||
| { | ||
| .reg .u32 _boff; | ||
| .reg .u64 _bptr; | ||
| mul.lo.u32 _boff, ldb, ${kx}; | ||
| mad.wide.u32 _bptr, ${dwidth_i}, _boff, b_base; | ||
| cp.async.ca.shared::cta.global [bsub_sm_thread + ${bsub_off(0, idx)}], [_bptr], ${dwidth_i}; | ||
| } | ||
| % else: | ||
| cp.async.ca.shared::cta.global [bsub_sm_thread + ${bsub_off(0, idx)}], [b_base + ${ldb*kx*dwidth_i}], ${dwidth_i}; | ||
| % endif | ||
| % endif | ||
| % endfor | ||
| cp.async.commit_group; | ||
| cp.async.wait_all; | ||
| bar.sync 0; | ||
| % else: | ||
| ## Sync fill of chunk 0 | ||
| % for idx, kx in enumerate(bchunks[0]): | ||
| % if idx % msplit == cid: | ||
| % if n is None: | ||
| { | ||
| .reg .u32 _boff; | ||
| .reg .u64 _bptr; | ||
| .reg .${pftype} _bv; | ||
| mul.lo.u32 _boff, ldb, ${kx}; | ||
| mad.wide.u32 _bptr, ${dwidth_i}, _boff, b_base; | ||
| ld.global.cg.${pftype} _bv, [_bptr]; | ||
| st.shared.${pftype} [bsub_thread + ${bsub_off(0, idx)}], _bv; | ||
| } | ||
| % else: | ||
| { | ||
| .reg .${pftype} _bv; | ||
| ld.global.cg.${pftype} _bv, [b_base + ${ldb*kx*dwidth_i}]; | ||
| st.shared.${pftype} [bsub_thread + ${bsub_off(0, idx)}], _bv; | ||
| } | ||
| % endif | ||
| % endif | ||
| % endfor | ||
| bar.sync 0; | ||
| % endif | ||
|
|
||
| ## Main loop over B-chunks (double-buffered) | ||
| % for bb in range(len(bchunks)): | ||
| <% | ||
| buf_cur = bb % 2 | ||
| buf_next = (bb + 1) % 2 | ||
| is_last = (bb == len(bchunks) - 1) | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. There is a Mako var for this. |
||
| %> | ||
| % if not is_last: | ||
| % for idx, kx in enumerate(bchunks[bb + 1]): | ||
| % if idx % msplit == cid: | ||
| % if use_cpasync: | ||
| % if n is None: | ||
| { | ||
| .reg .u32 _boff; | ||
| .reg .u64 _bptr; | ||
| mul.lo.u32 _boff, ldb, ${kx}; | ||
| mad.wide.u32 _bptr, ${dwidth_i}, _boff, b_base; | ||
| cp.async.ca.shared::cta.global [bsub_sm_thread + ${bsub_off(buf_next, idx)}], [_bptr], ${dwidth_i}; | ||
| } | ||
| % else: | ||
| cp.async.ca.shared::cta.global [bsub_sm_thread + ${bsub_off(buf_next, idx)}], [b_base + ${ldb*kx*dwidth_i}], ${dwidth_i}; | ||
| % endif | ||
| % else: | ||
| % if n is None: | ||
| { | ||
| .reg .u32 _boff; | ||
| .reg .u64 _bptr; | ||
| .reg .${pftype} _bv; | ||
| mul.lo.u32 _boff, ldb, ${kx}; | ||
| mad.wide.u32 _bptr, ${dwidth_i}, _boff, b_base; | ||
| ld.global.cg.${pftype} _bv, [_bptr]; | ||
| st.shared.${pftype} [bsub_thread + ${bsub_off(buf_next, idx)}], _bv; | ||
| } | ||
| % else: | ||
| { | ||
| .reg .${pftype} _bv; | ||
| ld.global.cg.${pftype} _bv, [b_base + ${ldb*kx*dwidth_i}]; | ||
| st.shared.${pftype} [bsub_thread + ${bsub_off(buf_next, idx)}], _bv; | ||
| } | ||
| % endif | ||
| % endif | ||
| % endif | ||
| % endfor | ||
| % if use_cpasync: | ||
| cp.async.commit_group; | ||
| % endif | ||
| % endif | ||
|
|
||
| % for idx, kx in enumerate(bchunks[bb]): | ||
| ld.shared.${pftype} bv, [bsub_thread + ${bsub_off(buf_cur, idx)}]; | ||
| % for j, row_j in enumerate(mcx): | ||
| <% jx = A[row_j, kx] %> | ||
| % if jx != 0 and kx == afix[row_j]: | ||
| mul.${pftype} csub${j}, bv, ${jx}; | ||
| % elif jx != 0: | ||
| fma.rn.${pftype} csub${j}, bv, ${jx}, csub${j}; | ||
| % endif | ||
| % if kx == alix[row_j]: | ||
| % if beta == 0: | ||
| % if n is None: | ||
| { | ||
| .reg .u32 _coff; | ||
| .reg .u64 _cptr; | ||
| mul.lo.u32 _coff, ldc, ${row_j}; | ||
| mad.wide.u32 _cptr, ${dwidth_i}, _coff, c_base; | ||
| st.weak.global.cg.${pftype} [_cptr], csub${j}; | ||
| } | ||
| % else: | ||
| st.weak.global.cg.${pftype} [c_base + ${ldc*row_j*dwidth_i}], csub${j}; | ||
| % endif | ||
| % else: | ||
| { | ||
| .reg .${pftype} _ctmp; | ||
| % if n is None: | ||
| .reg .u32 _coff; | ||
| .reg .u64 _cptr; | ||
| mul.lo.u32 _coff, ldc, ${row_j}; | ||
| mad.wide.u32 _cptr, ${dwidth_i}, _coff, c_base; | ||
| ld.global.${pftype} _ctmp, [_cptr]; | ||
| fma.rn.${pftype} _ctmp, _ctmp, ${float(beta)}, csub${j}; | ||
| st.global.${pftype} [_cptr], _ctmp; | ||
| % else: | ||
| ld.global.${pftype} _ctmp, [c_base + ${ldc*row_j*dwidth_i}]; | ||
| fma.rn.${pftype} _ctmp, _ctmp, ${float(beta)}, csub${j}; | ||
| st.global.${pftype} [c_base + ${ldc*row_j*dwidth_i}], _ctmp; | ||
| % endif | ||
| } | ||
| % endif | ||
| % endif | ||
| % endfor | ||
| % endfor | ||
| % if use_cpasync: | ||
| % if not is_last: | ||
| cp.async.wait_all; | ||
| % endif | ||
| % endif | ||
| bar.sync 0; | ||
| % endfor | ||
| ## End of Main loop over B-chunks | ||
|
|
||
| ## Handle zero rows in this cid's group | ||
| % if has_zero_rows: | ||
| % for row_j in mcx: | ||
| % if afix[row_j] == -1: | ||
| % if beta == 0: | ||
| { | ||
| .reg .${pftype} _tmp; | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Can this be factored up as appears in both branches? |
||
| mov.${pftype} _tmp, ${fzero}; | ||
| % if n is None: | ||
| .reg .u32 _coff; | ||
| .reg .u64 _cptr; | ||
| mul.lo.u32 _coff, ldc, ${row_j}; | ||
| mad.wide.u32 _cptr, ${dwidth_i}, _coff, c_base; | ||
| st.weak.global.cg.${pftype} [_cptr], _tmp; | ||
| % else: | ||
| st.weak.global.cg.${pftype} [c_base + ${ldc*row_j*dwidth_i}], _tmp; | ||
| % endif | ||
| } | ||
| % elif beta != 1: | ||
| { | ||
| .reg .${pftype} _tmp; | ||
| % if n is None: | ||
| .reg .u32 _coff; | ||
| .reg .u64 _cptr; | ||
| mul.lo.u32 _coff, ldc, ${row_j}; | ||
| mad.wide.u32 _cptr, ${dwidth_i}, _coff, c_base; | ||
| ld.global.${pftype} _tmp, [_cptr]; | ||
| mul.${pftype} _tmp, _tmp, ${float(beta)}; | ||
| st.global.${pftype} [_cptr], _tmp; | ||
| % else: | ||
| ld.global.${pftype} _tmp, [c_base + ${ldc*row_j*dwidth_i}]; | ||
| mul.${pftype} _tmp, _tmp, ${float(beta)}; | ||
| st.global.${pftype} [c_base + ${ldc*row_j*dwidth_i}], _tmp; | ||
| % endif | ||
| } | ||
| % endif | ||
| % endif | ||
| % endfor | ||
| % endif | ||
|
|
||
| $L_END_CID_${cid}: | ||
| % endfor | ||
|
|
||
| $L_EXIT: | ||
| ret; | ||
| } | ||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Single quotes.