Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for sparsify_model (0.22 sec)

  1. tensorflow/compiler/mlir/lite/sparsity/sparsify_model.cc

    See the License for the specific language governing permissions and
    limitations under the License.
    ==============================================================================*/
    
    #include "tensorflow/compiler/mlir/lite/sparsity/sparsify_model.h"
    
    #include <string>
    
    #include "absl/log/log.h"
    #include "absl/status/status.h"
    #include "absl/strings/str_cat.h"
    #include "absl/strings/string_view.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 10 20:16:40 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/sparsity/sparsify_model.h

    #include "tensorflow/compiler/mlir/lite/schema/schema_generated.h"
    
    namespace mlir {
    namespace lite {
    
    // Sparsify the `input_model` and write the result to a flatbuffer `builder`.
    absl::Status SparsifyModel(const tflite::ModelT& input_model,
                               flatbuffers::FlatBufferBuilder* builder);
    }  // namespace lite
    }  // namespace mlir
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 10 20:16:40 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/sparsity/BUILD

            "//tensorflow/compiler/mlir/lite/...",
            "//tensorflow/lite/...",
        ],
    )
    
    cc_library(
        name = "sparsify_model",
        srcs = [
            "sparsify_model.cc",
        ],
        hdrs = [
            "sparsify_model.h",
        ],
        deps = [
            "//tensorflow/compiler/mlir/lite:common",
            "//tensorflow/compiler/mlir/lite:flatbuffer_translate_lib",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 10 20:16:40 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/sparsity/sparsify_model_test.cc

    See the License for the specific language governing permissions and
    limitations under the License.
    ==============================================================================*/
    #include "tensorflow/compiler/mlir/lite/sparsity/sparsify_model.h"
    
    #include <stdint.h>
    
    #include <cstdarg>
    #include <map>
    #include <memory>
    #include <string>
    #include <utility>
    #include <vector>
    
    #include <gmock/gmock.h>
    #include <gtest/gtest.h>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 10 20:16:40 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/python/converter_python_api.cc

    #include "tensorflow/compiler/mlir/lite/python/saved_model_to_tfl_flatbuffer.h"
    #include "tensorflow/compiler/mlir/lite/quantization/lite/quantize_model.h"
    #include "tensorflow/compiler/mlir/lite/sparsity/sparsify_model.h"
    #include "tensorflow/compiler/mlir/quantization/tensorflow/python/py_function_lib.h"
    #include "tensorflow/core/framework/op.h"
    #include "tensorflow/core/framework/op_def.pb.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 23:15:24 UTC 2024
    - 19.2K bytes
    - Viewed (0)
Back to top