-
Notifications
You must be signed in to change notification settings - Fork 89
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
0851540
commit a1e3396
Showing
16 changed files
with
1,087 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,192 @@ | ||
/* | ||
* The MIT License (MIT) | ||
* | ||
* Copyright (c) 2015-2024 Advanced Micro Devices, Inc. All rights reserved. | ||
* | ||
* Permission is hereby granted, free of charge, to any person obtaining a copy | ||
* of this software and associated documentation files (the "Software"), to deal | ||
* in the Software without restriction, including without limitation the rights | ||
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
* copies of the Software, and to permit persons to whom the Software is | ||
* furnished to do so, subject to the following conditions: | ||
* | ||
* The above copyright notice and this permission notice shall be included in | ||
* all copies or substantial portions of the Software. | ||
* | ||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN | ||
* THE SOFTWARE. | ||
*/ | ||
#include "migraphx/errors.hpp" | ||
#include "migraphx/instruction_ref.hpp" | ||
#include "migraphx/onnx/onnx_parser.hpp" | ||
#include <cstddef> | ||
#include <migraphx/onnx/op_parser.hpp> | ||
#include <migraphx/ranges.hpp> | ||
#include <migraphx/make_op.hpp> | ||
#include <migraphx/instruction.hpp> | ||
#include <migraphx/stringutils.hpp> | ||
|
||
namespace migraphx { | ||
inline namespace MIGRAPHX_INLINE_NS { | ||
namespace onnx { | ||
|
||
struct parse_matmulnbits : op_parser<parse_matmulnbits> | ||
{ | ||
std::vector<op_desc> operators() const { return {{"MatMulNBits"}}; } | ||
|
||
instruction_ref parse(const op_desc& /*opd*/, | ||
const onnx_parser& parser, | ||
onnx_parser::node_info info, | ||
const std::vector<instruction_ref>& args) const | ||
{ | ||
const size_t n = parse_attribute(parser, info, "N"); | ||
const size_t k = parse_attribute(parser, info, "K"); | ||
const size_t bits = parse_attribute(parser, info, "bits"); | ||
const size_t block_size = parse_attribute(parser, info, "block_size"); | ||
|
||
if(bits != 4) | ||
MIGRAPHX_THROW("MatMulNBits: bits only supported for value of 4, actual value " + | ||
std::to_string(bits)); | ||
|
||
if(block_size < 16 or (block_size & (block_size - 1)) != 0) | ||
MIGRAPHX_THROW("MatMulNBits: block_size must be a power of 2 and >=16, actual value " + | ||
std::to_string(block_size)); | ||
|
||
const size_t n_blocks_per_col = (k + block_size - 1) / block_size; | ||
const size_t blob_size = std::ceil(block_size * bits / 8.0f); | ||
|
||
std::vector<size_t> expected_b_lens{n, n_blocks_per_col, blob_size}; | ||
if(args[1]->get_shape().lens() != expected_b_lens) | ||
MIGRAPHX_THROW("MatMulNBits: Input B does not match expected dims: " + | ||
to_string_range(expected_b_lens) + | ||
". Actual dims: " + to_string_range(args[1]->get_shape().lens())); | ||
|
||
std::vector<size_t> expected_scales_lens{n * n_blocks_per_col}; | ||
if(args[2]->get_shape().lens() != expected_scales_lens) | ||
MIGRAPHX_THROW("MatMulNBits: Input scales does not match expected dims: " + | ||
to_string_range(expected_scales_lens) + | ||
". Actual dims: " + to_string_range(args[2]->get_shape().lens())); | ||
|
||
if(args.size() > 3) | ||
{ | ||
std::vector<size_t> expected_zp_lens{ | ||
static_cast<size_t>(n * std::ceil(n_blocks_per_col * bits / 8.0f))}; | ||
if(args[3]->get_shape().lens() != expected_zp_lens) | ||
MIGRAPHX_THROW("MatMulNBits: Input zero_points does not match expected dims: " + | ||
to_string_range(expected_zp_lens) + | ||
". Actual dims: " + to_string_range(args[3]->get_shape().lens())); | ||
} | ||
|
||
auto b = dequantize_b(info, n, k, block_size, args); | ||
b = info.add_instruction(make_op("transpose", {{"permutation", {1, 0}}}), b); | ||
return matmul(info, args[0], b); | ||
} | ||
|
||
private: | ||
int parse_attribute(const onnx_parser& parser, | ||
onnx_parser::node_info& info, | ||
const std::string& attribute_name) const | ||
{ | ||
if(not contains(info.attributes, attribute_name)) | ||
MIGRAPHX_THROW("MatMulNBits: Attribute " + attribute_name + | ||
" required, but is missing"); | ||
|
||
return parser.parse_value(info.attributes[attribute_name]).at<int>(); | ||
} | ||
|
||
instruction_ref dequantize_b(onnx_parser::node_info& info, | ||
int n, | ||
int k, | ||
int block_size, | ||
const std::vector<instruction_ref>& args) const | ||
{ | ||
auto b = unpack(info, n, k, args[1]); | ||
|
||
auto n_blocks_per_col = (k + block_size - 1) / block_size; | ||
auto scales = info.add_instruction(make_op("reshape", {{"dims", {n, -1}}}), args[2]); | ||
scales = prepare_blockwise_dq_arg(info, n, k, block_size, scales); | ||
|
||
instruction_ref zp; | ||
if(args.size() == 4) | ||
{ | ||
zp = unpack(info, n, n_blocks_per_col, args[3]); | ||
zp = prepare_blockwise_dq_arg(info, n, k, block_size, zp); | ||
} | ||
else | ||
{ | ||
zp = info.add_literal(literal{shape{shape::uint8_type, {1}}, {8}}); | ||
zp = info.add_instruction( | ||
make_op("multibroadcast", {{"out_lens", b->get_shape().lens()}}), zp); | ||
} | ||
return info.add_instruction(make_op("dequantizelinear"), {b, scales, zp}); | ||
} | ||
|
||
instruction_ref unpack(onnx_parser::node_info& info, int n, int dim1, instruction_ref x) const | ||
{ | ||
x = info.add_instruction(make_op("reshape", {{"dims", {n, -1}}}), x); | ||
x = info.add_instruction(make_op("unpack_int4"), x); | ||
if(x->get_shape().lens()[1] > dim1) | ||
{ | ||
x = info.add_instruction( | ||
make_op("slice", {{"axes", {1}}, {"starts", {0}}, {"ends", {dim1}}}), x); | ||
} | ||
return x; | ||
} | ||
|
||
instruction_ref prepare_blockwise_dq_arg( | ||
onnx_parser::node_info& info, int n, int k, int block_size, instruction_ref x) const | ||
{ | ||
x = info.add_instruction(make_op("unsqueeze", {{"axes", {2}}}), x); | ||
|
||
auto bc_lens = x->get_shape().lens(); | ||
bc_lens[2] = block_size; | ||
x = info.add_instruction(make_op("multibroadcast", {{"out_lens", bc_lens}}), x); | ||
x = info.add_instruction(make_op("reshape", {{"dims", {n, -1}}}), x); | ||
|
||
// Detect runt block | ||
if(x->get_shape().lens()[1] > k) | ||
{ | ||
x = info.add_instruction( | ||
make_op("slice", {{"axes", {1}}, {"starts", {0}}, {"ends", {k}}}), x); | ||
} | ||
|
||
return x; | ||
} | ||
|
||
instruction_ref matmul(onnx_parser::node_info& info, instruction_ref a, instruction_ref b) const | ||
{ | ||
const auto a_rank = a->get_shape().ndim(); | ||
// B is always rank 2: | ||
// If A is rank 1, unsqueeze A to make it rank 2 to prepare for dot | ||
// If A is rank 2, just a regular dot | ||
// If A is rank > 2, broadcast B to match outer dims of A to prepare for dot | ||
if(a_rank == 1) | ||
{ | ||
a = info.add_instruction(make_op("unsqueeze", {{"axes", {0}}}), a); | ||
} | ||
else if(a_rank > 2) | ||
{ | ||
auto b_lens = b->get_shape().lens(); | ||
auto b_bc_lens = a->get_shape().lens(); | ||
std::copy(b_lens.begin(), b_lens.end(), b_bc_lens.end() - 2); | ||
b = info.add_instruction(make_op("multibroadcast", {{"out_lens", b_bc_lens}}), b); | ||
} | ||
|
||
auto dot = info.add_instruction(make_op("dot"), a, b); | ||
|
||
if(a_rank == 1) | ||
dot = info.add_instruction( | ||
make_op("squeeze", {{"axes", {dot->get_shape().ndim() - 2}}}), dot); | ||
|
||
return dot; | ||
} | ||
}; | ||
|
||
} // namespace onnx | ||
} // namespace MIGRAPHX_INLINE_NS | ||
} // namespace migraphx |
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
Oops, something went wrong.