-
Notifications
You must be signed in to change notification settings - Fork 199
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use generic API for creating MLIR operations (#1477)
Co-authored-by: Paulo Valente <[email protected]>
- Loading branch information
1 parent
9d8a1ff
commit 03a0c1c
Showing
38 changed files
with
2,174 additions
and
5,164 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
10 changes: 5 additions & 5 deletions
10
exla/c_src/exla/mlir/custom_calls.h → exla/c_src/exla/custom_calls.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
#pragma once | ||
|
||
template <typename DataType> | ||
void qr_cpu_custom_call(void *out[], const void *in[]); | ||
#ifndef EXLA_MLIR_CUSTOM_CALLS_H_ | ||
#define EXLA_MLIR_CUSTOM_CALLS_H_ | ||
|
||
void qr_cpu_custom_call_bf16(void *out[], const void *in[]); | ||
void qr_cpu_custom_call_f16(void *out[], const void *in[]); | ||
void qr_cpu_custom_call_f32(void *out[], const void *in[]); | ||
void qr_cpu_custom_call_f64(void *out[], const void *in[]); | ||
void qr_cpu_custom_call_f64(void *out[], const void *in[]); | ||
|
||
#endif |
Oops, something went wrong.