Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for IsStackOp (0.13 sec)

  1. tensorflow/compiler/jit/compilability_check_util.h

          FunctionLibraryRuntime* lib_runtime,
          std::vector<StackFrameView>* stack_trace,
          UncompilableNodesMap* uncompilable_nodes) const;
    
      bool IsStackOp(const Node& node) const {
        const XlaResourceOpInfo* op_info =
            GetResourceOpInfoForOp(node.type_string());
        return op_info && op_info->resource_kind() == XlaResourceKind::kStack;
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 14.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/compilability_check_util.cc

                                  encapsulating_function, uncompilable_nodes);
        LogNotCompilable(node, uncompilable_reason);
        return false;
      }
    
      if (!op_filter_.allow_stack_ops && IsStackOp(node)) {
        absl::string_view uncompilable_reason = "Stack op";
        MaybeMarkUncompilableNode(uncompilable_reason, *stack_trace,
                                  encapsulating_function, uncompilable_nodes);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 30.3K bytes
    - Viewed (0)
Back to top