2022-01-24 13:19:32 +08:00
|
|
|
# (c) 2022 Exaloop Inc. All rights reserved.
|
|
|
|
|
|
|
|
|
2021-09-28 02:02:44 +08:00
|
|
|
@__attribute__
|
|
|
|
def test():
|
|
|
|
pass
|
|
|
|
|
2022-01-24 13:19:32 +08:00
|
|
|
|
2021-09-28 02:02:44 +08:00
|
|
|
@__attribute__
|
|
|
|
def export():
|
|
|
|
pass
|
|
|
|
|
2022-01-24 13:19:32 +08:00
|
|
|
|
2021-09-28 02:02:44 +08:00
|
|
|
@__attribute__
|
|
|
|
def inline():
|
|
|
|
pass
|
|
|
|
|
2022-01-24 13:19:32 +08:00
|
|
|
|
2021-09-28 02:02:44 +08:00
|
|
|
@__attribute__
|
|
|
|
def noinline():
|
|
|
|
pass
|
|
|
|
|
2022-01-24 13:19:32 +08:00
|
|
|
|
2021-09-28 02:02:44 +08:00
|
|
|
@__attribute__
|
|
|
|
def pure():
|
|
|
|
pass
|
|
|
|
|
2022-01-24 13:19:32 +08:00
|
|
|
|
2021-09-28 02:02:44 +08:00
|
|
|
@__attribute__
|
|
|
|
def nonpure():
|
|
|
|
pass
|
|
|
|
|
2022-01-24 13:19:32 +08:00
|
|
|
|
2022-07-02 23:48:19 +08:00
|
|
|
@__attribute__
|
|
|
|
def no_side_effect():
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
|
|
|
@__attribute__
|
|
|
|
def nocapture():
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
|
|
|
@__attribute__
|
|
|
|
def derives():
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
|
|
|
@__attribute__
|
|
|
|
def self_captures():
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
2021-09-28 02:02:44 +08:00
|
|
|
@__attribute__
|
|
|
|
def commutative():
|
|
|
|
pass
|
|
|
|
|
2022-01-24 13:19:32 +08:00
|
|
|
|
2021-09-28 02:02:44 +08:00
|
|
|
@__attribute__
|
|
|
|
def associative():
|
|
|
|
pass
|
|
|
|
|
2022-01-24 13:19:32 +08:00
|
|
|
|
2021-09-28 02:02:44 +08:00
|
|
|
@__attribute__
|
|
|
|
def distributive():
|
|
|
|
pass
|
|
|
|
|
2022-01-24 13:19:32 +08:00
|
|
|
|
2022-01-05 11:39:53 +08:00
|
|
|
@__attribute__
|
|
|
|
def realize_without_self():
|
|
|
|
pass
|
|
|
|
|