(ctx context.Context, in *pb.QuantizationRequest, opts ...grpc.CallOption)
| 305 | } |
| 306 | |
| 307 | func (e *embedBackend) StartQuantization(ctx context.Context, in *pb.QuantizationRequest, opts ...grpc.CallOption) (*pb.QuantizationJobResult, error) { |
| 308 | return e.s.StartQuantization(ctx, in) |
| 309 | } |
| 310 | |
| 311 | func (e *embedBackend) QuantizationProgress(ctx context.Context, in *pb.QuantizationProgressRequest, f func(update *pb.QuantizationProgressUpdate), opts ...grpc.CallOption) error { |
| 312 | bs := &embedBackendQuantizationProgressStream{ |
nothing calls this directly
no test coverage detected