[ir][instructions] added permutations option for trans
This commit is contained in:
@@ -324,8 +324,8 @@ value *builder::create_dot(value *A, value *B, value *C, const std::string &name
|
||||
return insert(dot_inst::create_nn(A, B, C, name));
|
||||
}
|
||||
|
||||
value *builder::create_trans(value *A, const std::string &name) {
|
||||
return insert(trans_inst::create(A, name));
|
||||
value *builder::create_trans(value *A, const std::vector<ir::constant_int*>& perm, const std::string &name) {
|
||||
return insert(trans_inst::create(A, perm, name));
|
||||
}
|
||||
|
||||
value *builder::create_sqrt(value *A, const std::string &name) {
|
||||
|
Reference in New Issue
Block a user