Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for _XlaMustCompile (0.21 sec)

  1. tensorflow/compiler/mlir/tf2xla/internal/mlir_bridge_pass_util.cc

        for (const Node* node : graph.nodes()) {
          auto node_op = node->type_string();
          if (node_op == kStatefulPartitionedCallOp) {
            // Functions called by StatefulfulPartitionedCall ops with
            // _XlaMustCompile=true are compiled by XLA.
            auto attr = node->attrs().FindByString(std::string(kMustCompileAttr));
            if (attr != nullptr && attr->b() == true) {
              return true;
            }
          }
        }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 07 12:22:33 UTC 2024
    - 8.9K bytes
    - Viewed (0)
Back to top