Skip to content

Commit

Permalink
xe: ocl: support int->int load and write
Browse files Browse the repository at this point in the history
This is necessary for reading and writing accumulators with type s32.
  • Loading branch information
rjoursler committed Jan 10, 2025
1 parent 7bc0d6b commit d7861b9
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/gpu/intel/ocl/ocl_io.h
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,7 @@ DEF_load(float, char);
DEF_load(float, uchar);
DEF_load(int, char);
DEF_load(int, uchar);
DEF_load(int, int);
DEF_load(float, bf16);

// Writes
Expand All @@ -88,6 +89,7 @@ DEF_write(float, float);
DEF_write(char, int);
DEF_write(uchar, int);
DEF_write(bf16, int);
DEF_write(int, int);
DEF_write(float, int);
DEF_write(int, float);

Expand Down

0 comments on commit d7861b9

Please sign in to comment.