Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for shuffled_paddings (0.12 sec)

  1. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_n_z.cc

        return failure();
    
      SmallVector<int32_t, 8> shuffled_paddings(paddings_value.getNumElements());
      for (const auto &index_pair :
           llvm::enumerate(paddings_value.getValues<APInt>())) {
        size_t outer_idx = index_pair.index() / 2;
        size_t inner_idx = index_pair.index() % 2;
    
        shuffled_paddings[permutation[outer_idx] * 2 + inner_idx] =
            index_pair.value().getSExtValue();
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 170.8K bytes
    - Viewed (0)
Back to top