Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for kXlaInferredShapesAttrName (0.15 sec)

  1. tensorflow/compiler/jit/extract_outside_compilation_pass.cc

        const Edge* e;
        if (!send_from_host_node->input_edge(i, &e).ok()) {
          return std::nullopt;
        }
    
        std::vector<PartialTensorShape> shapes;
        if (!GetNodeAttr(e->src()->attrs(), kXlaInferredShapesAttrName, &shapes)
                 .ok()) {
          return std::nullopt;
        }
    
        const PartialTensorShape shape = shapes[e->src_output()];
        if (!shape.IsFullyDefined()) {
          return std::nullopt;
        }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 104.7K bytes
    - Viewed (0)
Back to top