Deprecation of Triton-C and Replacement by decorated Python functions (#86)

This PR implements a major overhaul of the frontend for Triton, and replaces Triton-C by a pure Python API in which kernels are defined as @triton.jit decorated functions. The documentation and tutorials have also been updated to accommodate these changes.

See documentations for more information on the new API
This commit is contained in:
Philippe Tillet
2021-04-20 22:29:40 -04:00
committed by Philippe Tillet
parent 1fdb465b71
commit 39f4730305
91 changed files with 4500 additions and 13008 deletions

View File

@@ -30,9 +30,9 @@ constant *constant::get_null_value(type *ty) {
constant *constant::get_all_ones_value(type *ty) {
if(ty->is_integer_ty())
return constant_int::get(ty, 0xFFFFFFFF);
return constant_int::get(ty, 0xFFFFFFFFFFFFFFFF);
if(ty->is_floating_point_ty())
return constant_fp::get(ty, 0xFFFFFFFF);
return constant_fp::get(ty, 0xFFFFFFFFFFFFFFFF);
throw std::runtime_error("Cannot create all ones value for that type!");
}