Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getBlob (0.43 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

              tl_element_shape.replaceAllUsesWith(initial_element_shape);
            } else {
              OpBuilder b(use.getOwner());
              Operation* cast_op = InsertCast(
                  b, use.getOwner()->getLoc(),
                  tl_element_shape.getResult().getType(), initial_element_shape);
              if (!cast_op) return false;
              tl_element_shape.replaceAllUsesWith(cast_op->getResult(0));
            }
            continue;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

      std::string graph_name = op_name + std::to_string(subgraph_index);
      auto subgraph = BuildSubGraph(graph_name, region, subgraph_index);
      if (!subgraph.has_value()) {
        mlir::emitError(region->getLoc(), "failed to build subgraph");
        return -1;
      }
      subgraphs_.push_back(subgraph.value());
      subgraph_index_map_[graph_name] = subgraph_index;
      return subgraph_index;
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
Back to top