Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for shape_backing (0.16 sec)

  1. tensorflow/compiler/mlir/tf2xla/api/v1/compile_mlir_util.cc

          for (tensorflow::TensorShapeDim dim : tensor_resource_shape.shape) {
            shape_backing[offset] = dim.size;
            ++offset;
          }
          if (offset == start) {
            arg_shapes_copy.push_back(llvm::ArrayRef<int64_t>());
          } else {
            arg_shapes_copy.push_back(
                llvm::ArrayRef<int64_t>(&shape_backing[start], offset - start));
          }
        }
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 17:24:39 UTC 2024
    - 45.3K bytes
    - Viewed (0)
Back to top