ptx_parser/unparser/instruction/
wgmma_wait_group.rs1#![allow(unused)]
6
7use crate::lexer::PtxToken;
8use crate::unparser::{PtxUnparser, common::*};
9
10pub mod section_0 {
11 use super::*;
12 use crate::r#type::instruction::wgmma_wait_group::section_0::*;
13
14 impl PtxUnparser for WgmmaWaitGroupSyncAligned {
15 fn unparse_tokens(&self, tokens: &mut ::std::vec::Vec<PtxToken>) {
16 push_opcode(tokens, "wgmma");
17 push_directive(tokens, "wait_group");
18 push_directive(tokens, "sync");
19 push_directive(tokens, "aligned");
20 self.n.unparse_tokens(tokens);
21 tokens.push(PtxToken::Semicolon);
22 }
23 }
24}