Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for function_filter (0.12 sec)

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

                  }
    
                  const bool a_is_function_exclude =
                      (a->function_filter().filter_type() ==
                       FunctionFilter::SKIP_TARGET_ANNOTATION);
                  const bool b_is_function_exclude =
                      (b->function_filter().filter_type() ==
                       FunctionFilter::SKIP_TARGET_ANNOTATION);
                  // Function exclude filter is applied before function include
    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

    }
    
    // A filter can be used for an op or function.
    message TacFilter {
      oneof filter {
        OpFilter op_filter = 1;
        FunctionFilter function_filter = 2;
      }
    }
    
    // Function filter is to include/exclude a function in the target annotation
    // pass in the TAC tool pipeline.
    message FunctionFilter {
      // Function filter types that are supported. If one function is matched for
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 19 19:32:06 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  3. tensorflow/c/experimental/saved_model/core/tf_saved_model_api.cc

      }
      int node = signatures_iter->second;
    
      auto function_iter = revived_objects_.signature_def_functions.find(node);
      if (function_iter == revived_objects_.signature_def_functions.end()) {
        return errors::Internal(
            "Unable to find SignatureDefFunction associated with key ",
            signature_def_key, " despite key being valid.");
      }
    
      *function = function_iter->second.get();
      return Status();
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Feb 27 09:34:33 UTC 2024
    - 14.1K bytes
    - Viewed (0)
Back to top