File tree 2 files changed +23
-1
lines changed
2 files changed +23
-1
lines changed Original file line number Diff line number Diff line change 32
32
# curl -L https://github.com/openxla/xla/archive/<git hash>.tar.gz | sha256sum
33
33
# and update XLA_SHA256 with the result.
34
34
35
- XLA_COMMIT = "da290b48daafac8cf9db1d9431ed1e4bd5fccdfa "
35
+ XLA_COMMIT = "ba22d09548e4f087ff7899f5ac5aa918e291d591 "
36
36
37
37
new_git_repository (
38
38
name = "intel_extension_for_openxla" ,
Original file line number Diff line number Diff line change
1
+ diff --git a/include/subgroup/tile/impl/payload_xe.hpp b/include/subgroup/tile/impl/payload_xe.hpp
2
+ index a78a1e5..acf7117 100644
3
+ --- a/include/subgroup/tile/impl/payload_xe.hpp
4
+ +++ b/include/subgroup/tile/impl/payload_xe.hpp
5
+ @@ -79,7 +79,7 @@ public:
6
+ xetla_vector<uint32_t, 16 * num_block> payloads;
7
+
8
+ inline mem_payload_t(const this_payload_t &rhs) {
9
+ - this->payload = rhs.payload;
10
+ + this->payloads = rhs.payloads;
11
+ }
12
+
13
+ inline mem_payload_t(mem_desc_t &mem_desc) {
14
+ @@ -128,7 +128,7 @@ public:
15
+ // ~mem_payload_t(){}
16
+
17
+ inline this_payload_t &operator=(const this_payload_t &rhs) {
18
+ - this->payload = rhs.payload;
19
+ + this->payloads = rhs.payloads;
20
+ return *this;
21
+ }
22
+
You can’t perform that action at this time.
0 commit comments