mirror of
https://github.com/vortexgpgpu/vortex.git
synced 2025-04-23 21:39:10 -04:00
minor update
This commit is contained in:
parent
fff3fb18fb
commit
ff75cc9874
1 changed files with 5 additions and 5 deletions
|
@ -98,19 +98,19 @@ module VX_tex_sampler #(
|
|||
`ifdef DBG_PRINT_TEX
|
||||
always @(posedge clk) begin
|
||||
if (req_valid && req_ready) begin
|
||||
$write("%t: core%0d-sampler-req: wid=%0d, PC=%0h, tmask=%b, filter=%0d, format=%0d, data=",
|
||||
$write("%t: core%0d-tex-sampler-req: wid=%0d, PC=%0h, tmask=%b, filter=%0d, format=%0d, data=",
|
||||
$time, CORE_ID, req_wid, req_PC, req_tmask, req_filter, req_format);
|
||||
`PRINT_ARRAY2D(req_data, 4, `NUM_THREADS);
|
||||
$write("u0=");
|
||||
`PRINT_ARRAY2D(req_u0, 4, `NUM_THREADS);
|
||||
`PRINT_ARRAY1D(req_blend_u, `NUM_THREADS);
|
||||
$write("v0=");
|
||||
`PRINT_ARRAY2D(req_v0, 4, `NUM_THREADS);
|
||||
`PRINT_ARRAY1D(req_blend_v, `NUM_THREADS);
|
||||
$write("\n");
|
||||
end
|
||||
if (rsp_valid && rsp_ready) begin
|
||||
$write("%t: core%0d-sampler-rsp: wid=%0d, PC=%0h, tmask=%b, data=",
|
||||
$write("%t: core%0d-tex-sampler-rsp: wid=%0d, PC=%0h, tmask=%b, data=",
|
||||
$time, CORE_ID, rsp_wid, rsp_PC, rsp_tmask);
|
||||
`PRINT_ARRAY2D(rsp_data, 4, `NUM_THREADS);
|
||||
`PRINT_ARRAY1D(rsp_data, `NUM_THREADS);
|
||||
$write("\n");
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue