Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for bufferIndex (0.09 sec)

  1. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

          auto buffer_or =
              BuildBuffer(value, not_returned_by_subgraph, buffer_index);
          if (!buffer_or) return false;
          buffers_.push_back(*buffer_or);
        } else {
          buffers_.push_back(empty_buffer_);
        }
    
        auto tensor_or =
            BuildTensor(value, tensor_name, buffer_index, quant_parameters);
        if (!tensor_or) return false;
        tensors.push_back(*tensor_or);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

        DeclareOpInterfaceMethods<TFL_RuntimeVerification>]> {
      let summary = "External const op.";
    
      let description = [{
        External const op holds a `buffer_index` which points to a constant
        in the flatbuffer.
      }];
    
      let arguments = (ins I32Attr:$buffer_index);
    
      let results = (outs AnyTensor:$output);
    }
    
    def TFL_Conv2DOp : TFL_ConvOp<"conv_2d", "Convolution", 0,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
Back to top