Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for sparsity_parameter (0.2 sec)

  1. tensorflow/compiler/mlir/lite/tests/flatbuffer2mlir/constants_offset.mlir

      // CHECK-LABEL: @sparse_f32
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/tests/flatbuffer2mlir/constants.mlir

      // CHECK-LABEL: @sparse_f32
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/ir/tfl_op_enums.td

          I32ArrayParameter:$indices
      );
      let summary = "Dimension metadata.";
      let assemblyFormat = "`<` struct(params) `>`";
    }
    
    def SparsityParameterAttr : AttrDef<TFL_Dialect, "SparsityParameter"> {
      let mnemonic = "sparsity_parameter";
      let parameters = (ins
          I32ArrayParameter:$traversal_order,
          I32ArrayParameter:$block_map,
          ArrayRefParameter<"DimensionMetadataAttr">:$dim_metadata
      );
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 20 00:05:24 UTC 2022
    - 6.4K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/tests/flatbuffer2mlir/test_schema.fbs

      //     column indices).
      dense_size:int;
      array_segments:SparseIndexVector;
      array_indices:SparseIndexVector;
    }
    
    // Parameters to encode a sparse TfLite tensor.
    table SparsityParameters {
      // The traversal order of the dimensions defined in the `shape` field of the
      // conceptual dense tensor. For a n-dimensional tensors with dims (d0, d1,
      // ..., dn-1),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 19 19:46:06 UTC 2021
    - 26.1K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/schema/schema_generated.h

      }
      explicit SparsityParametersBuilder(::flatbuffers::FlatBufferBuilder &_fbb)
            : fbb_(_fbb) {
        start_ = fbb_.StartTable();
      }
      ::flatbuffers::Offset<SparsityParameters> Finish() {
        const auto end = fbb_.EndTable(start_);
        auto o = ::flatbuffers::Offset<SparsityParameters>(end);
        return o;
      }
    };
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 1M bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/schema/schema_v3b.fbs

      //     column indices).
      dense_size:int;
      array_segments:SparseIndexVector;
      array_indices:SparseIndexVector;
    }
    
    // Parameters to encode a sparse TfLite tensor.
    table SparsityParameters {
      // The traversal order of the dimensions defined in the `shape` field of the
      // conceptual dense tensor. For a n-dimensional tensors with dims (d0, d1,
      // ..., dn-1),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 14:28:27 UTC 2024
    - 30K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/schema/schema.fbs

      //     column indices).
      dense_size:int;
      array_segments:SparseIndexVector;
      array_indices:SparseIndexVector;
    }
    
    // Parameters to encode a sparse TfLite tensor.
    table SparsityParameters {
      // The traversal order of the dimensions defined in the `shape` field of the
      // conceptual dense tensor. For a n-dimensional tensors with dims (d0, d1,
      // ..., dn-1),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 18:01:23 UTC 2024
    - 41.7K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

      // is marked as a stateful operand.
      bool IsStatefulOperand(mlir::Operation* op, int operand_index);
    
      // Returns a unique name for `val`.
      std::string UniqueName(mlir::Value val);
    
      BufferOffset<tflite::SparsityParameters> BuildSparsityParameters(
          const mlir::TFL::SparsityParameterAttr& s_attr);
    
      bool EstimateArithmeticCount(int64_t* count);
    
      // Check compatibility with GPU delegate and returns the compatibility.
    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