Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 0 additions & 7 deletions backends/vulkan/test/custom_ops/q4gsw_linear.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -499,13 +499,6 @@ void reference_impl(TestCase& test_case) {
}

int64_t quantized_linear_flop_calculator(const TestCase& test_case) {
int input_idx = 0;
int weight_idx = 1;
if (test_case.operator_name().find("dq8ca") != std::string::npos) {
input_idx = 0;
weight_idx = 3; // Weight comes after input, input_scale, input_zero_point
}

// Get input and weight dimensions
const auto& input_sizes = test_case.inputs()[0].get_tensor_sizes();
const auto& output_sizes = test_case.outputs()[0].get_tensor_sizes();
Expand Down
Loading