Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for function_filter (0.24 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/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