Skip to content

Commit

Permalink
[AIE1] Add some missing stream wrappers
Browse files Browse the repository at this point in the history
There was a test for this, but it wasn't getting run.
  • Loading branch information
stephenneuendorffer committed Sep 17, 2024
1 parent 2ea48f4 commit 4a13f81
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions aie_runtime_lib/AIE/chess_intrinsic_wrapper.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -25,3 +25,12 @@ extern "C" void llvm___aie___lock___acquire___reg(unsigned id, unsigned val) {
extern "C" void llvm___aie___lock___release___reg(unsigned id, unsigned val) {
release(id, val);
}

extern "C" int llvm___aie___get___ss(int stream) { return get_ss(stream); }
extern "C" float llvm___aie___getf___ss(int stream) { return getf_ss(stream); }
extern "C" int llvm___aie___get___ss0___tlast() { return get_ss0_tlast(); }
extern "C" int llvm___aie___get___ss1___tlast() { return get_ss1_tlast(); }
extern "C" int llvm___aie___get___wss0___tlast() { return get_wss0_tlast(); }
extern "C" int llvm___aie___get___wss1___tlast() { return get_wss1_tlast(); }
extern "C" void llvm___aie___put___ms(int idx_ms, int a) { put_ms(idx_ms, a); }
//extern "C" void llvm___aie___put___ms___tlast(int idx_ms, int a, int tlast) { put_ms(idx_ms, a, tlast); }

0 comments on commit 4a13f81

Please sign in to comment.