Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for TacFilter (0.41 sec)

  1. tensorflow/compiler/mlir/lite/experimental/tac/transforms/tac_filter.cc

      OpBuilder builder(module);
      std::sort(tac_filters_->mutable_tac_filters()->pointer_begin(),
                tac_filters_->mutable_tac_filters()->pointer_end(),
                [](const TacFilter* a, const TacFilter* b) {
                  const bool a_is_function_filter = a->has_function_filter();
                  const bool b_is_function_filter = b->has_function_filter();
                  if (a_is_function_filter != b_is_function_filter) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/experimental/tac/tac_filter.proto

    message TacFilters {
      // A list of filters/rules to specify the parts that user wants to run on
      // other hardware.
      repeated TacFilter tac_filters = 1;
    }
    
    // A filter can be used for an op or function.
    message TacFilter {
      oneof filter {
        OpFilter op_filter = 1;
        FunctionFilter function_filter = 2;
      }
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 19 19:32:06 UTC 2023
    - 1.8K bytes
    - Viewed (0)
Back to top