(ctx context.Context, in *pb.QuantizationProgressRequest, f func(update *pb.QuantizationProgressUpdate), opts ...grpc.CallOption)
| 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{ |
| 313 | ctx: ctx, |
| 314 | fn: f, |
| 315 | } |
| 316 | return e.s.QuantizationProgress(in, bs) |
| 317 | } |
| 318 | |
| 319 | func (e *embedBackend) StopQuantization(ctx context.Context, in *pb.QuantizationStopRequest, opts ...grpc.CallOption) (*pb.Result, error) { |
| 320 | return e.s.StopQuantization(ctx, in) |
nothing calls this directly
no test coverage detected