SIGN IN SIGN UP

[ET-VK][ez] Use standard quant naming scheme for quantized ops (#10616)

## Context

Use standard naming scheme for quantized operators introduced in the previous PR.

For weight only quantized linear operators, the names introduced are:

`linear_qcsnw`:

* q - quantized
* c - per-channel / channelswise
* s - symmetric
* n - number of bits (qcs4w for 4-bit quant, qcs8w for 8-bit quant)
* w - weight quantized

`linear_qga4w`:

* q - quantized
* g - per-group / groupwise
* a - affine
* 4 - quantized to 4 bits
* w - weight quantized

## Changes

Rename instances of `q_8w_linear` to `linear_qcs8w` or `linear_qcsnw`.

Rename instances of `q_4w_linear` to `linear_qga4w`.

Rename cpp files to match the new naming convention.

Differential Revision: [D73941992](https://our.internmc.facebook.com/intern/diff/D73941992/)
P
pytorchbot committed
bdca6e33215bbd38dd111badfcf8a5196edffd26
Parent: 19bfbc3
Committed by GitHub <noreply@github.com> on 5/1/2025, 6:21:19 PM