chromium/components/assist_ranker/quantized_nn_classifier.cc

// Copyright 2018 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "components/assist_ranker/quantized_nn_classifier.h"

#include "components/assist_ranker/nn_classifier.h"

namespace assist_ranker {
namespace quantized_nn_classifier {
namespace {

// Dequantized a set of unsigned 8-bit weights using the specified scaling
// factor and base value.
void DequantizeVector(const std::string& s,
                      float scale,
                      float low,
                      FloatVector* v) {}

// Dequantizes a quantized NN layer.
void DequantizeLayer(const QuantizedNNLayer& quantized, NNLayer* layer) {}

bool ValidateLayer(const QuantizedNNLayer& layer) {}

}  // namespace

NNClassifierModel Dequantize(const QuantizedNNClassifierModel& quantized) {}

bool Validate(const QuantizedNNClassifierModel& quantized) {}

}  // namespace quantized_nn_classifier
}  // namespace assist_ranker