Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for Slice_types (0.37 sec)

  1. doc/go1.17_spec.html

    Such an anonymous variable is referred to via a (possibly implicit)
    <a href="#Address_operators">pointer indirection</a>.
    </p>
    
    <p>
    <i>Structured</i> variables of <a href="#Array_types">array</a>, <a href="#Slice_types">slice</a>,
    and <a href="#Struct_types">struct</a> types have elements and fields that may
    be <a href="#Address_operators">addressed</a> individually. Each such element
    acts like a variable.
    </p>
    
    <p>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
  2. doc/go_spec.html

    Such an anonymous variable is referred to via a (possibly implicit)
    <a href="#Address_operators">pointer indirection</a>.
    </p>
    
    <p>
    <i>Structured</i> variables of <a href="#Array_types">array</a>, <a href="#Slice_types">slice</a>,
    and <a href="#Struct_types">struct</a> types have elements and fields that may
    be <a href="#Address_operators">addressed</a> individually. Each such element
    acts like a variable.
    </p>
    
    <p>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/collection_ops_util.cc

      auto slice_shape = llvm::to_vector<8>(buffer_type.getShape());
      slice_shape[0] = 1;
      auto slice_type = tensorflow::GetTypeFromTFTensorShape(
          slice_shape, buffer_type.getElementType());
      auto update_slice = element;
      if (element.getType() != slice_type) {
        update_slice = builder.create<TF::ReshapeOp>(
            loc, ArrayRef<Type>{slice_type},
            ArrayRef<Value>{element, GetR1Const(slice_shape, builder, loc)});
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  4. test/fixedbugs/issue29312.go

    // compiler will generate only a single runtime.slicetype data
    // structure for all 3 underlying types. It turns out the compiler
    // generates just the 251-entry one. There aren't any
    // runtime.slicetypes generated for the final two types.
    //
    // The compiler passes type:[]...[]<...> (251 total "[]") to
    // fmt.Sprintf (instead of the correct 253 one). But the data
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 09 11:28:56 UTC 2022
    - 4.1K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/experimental/tac/transforms/device_transform_patterns.cc

            slice_size.push_back(-1);
          }
        }
    
        auto slice_type = mlir::RankedTensorType::get(slice_begin.size(),
                                                      rewriter->getIntegerType(32));
        auto slice_begin_attr =
            mlir::DenseIntElementsAttr::get(slice_type, slice_begin);
        auto slice_size_attr =
            mlir::DenseIntElementsAttr::get(slice_type, slice_size);
    
        auto slice_begin_const =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 25.4K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/tensor_array_ops_decomposition.cc

                              /*keep_slice_shape=*/true);
        // Add a size-1 leading dimension to elem.
        auto slice_type = original_elem.getType().cast<RankedTensorType>();
        elem = builder.create<TF::ReshapeOp>(
            write.getLoc(), ArrayRef<Type>{slice_type},
            ArrayRef<Value>{elem, cutil::GetR1Const(slice_type.getShape(), builder,
                                                    write.getLoc())});
        elem =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 02 20:41:19 UTC 2023
    - 40.2K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

        int64_t slice_size = input_dim_size / num_splits;
    
        // Get each slice's type.
        auto slice_shape = llvm::to_vector<4>(input_type.getShape());
        slice_shape[dim_index] = slice_size;
        Type slice_type = tensorflow::GetTypeFromTFTensorShape(
            slice_shape, input_type.getElementType());
    
        // Parameters for constructing each slice.
        SmallVector<int64_t, 4> begin_indices(input_rank, 0);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
  8. src/internal/trace/traceviewer/static/trace_viewer_full.html

    switch(slice[0]){case HistogramBinBoundaries.SLICE_TYPE.LINEAR:binBoundaries.addLinearBins(slice[1],slice[2]);break;case HistogramBinBoundaries.SLICE_TYPE.EXPONENTIAL:binBoundaries.addExponentialBins(slice[1],slice[2]);break;default:throw new Error('Unrecognized HistogramBinBoundaries slice type');}}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 20:45:06 UTC 2023
    - 2.5M bytes
    - Viewed (0)
Back to top