Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 879 for shake (0.05 sec)

  1. src/os/path_windows_test.go

    		// UNC Absolute
    		{`\\srv\share\long`, `\\?\UNC\srv\share\long`},
    		{`//srv/share/long`, `\\?\UNC\srv\share\long`},
    		{`/\srv/share/long`, `\\?\UNC\srv\share\long`},
    		{`\\srv\share\long\`, `\\?\UNC\srv\share\long\`},
    		{`\\srv\share\bar\.\long`, `\\?\UNC\srv\share\bar\long`},
    		{`\\srv\share\bar\..\long`, `\\?\UNC\srv\share\long`},
    		{`\\srv\share\bar\..\..\long`, `\\?\UNC\srv\share\long`}, // share name is not removed by ".."
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 23 16:37:32 UTC 2024
    - 8K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/tests/mlir2flatbuffer/svdf.mlir

    // CHECK-NEXT:     subgraphs: [ {
    // CHECK-NEXT:       tensors: [ {
    // CHECK-NEXT:         shape: [ 4 ],
    // CHECK-NEXT:         buffer: 1,
    // CHECK-NEXT:         name: "arg0",
    // CHECK-NEXT:         quantization: {
    // CHECK-EMPTY:
    // CHECK-NEXT:         },
    // CHECK-NEXT:         has_rank: true
    // CHECK-NEXT:       }, {
    // CHECK-NEXT:         shape: [ 4 ],
    // CHECK-NEXT:         buffer: 2,
    // CHECK-NEXT:         name: "arg1",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 14 16:41:28 UTC 2022
    - 3.6K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/tests/mlir2flatbuffer/unidirectional_sequence_rnn.mlir

    // CHECK-NEXT:     subgraphs: [ {
    // CHECK-NEXT:       tensors: [ {
    // CHECK-NEXT:         shape: [ 4 ],
    // CHECK-NEXT:         buffer: 1,
    // CHECK-NEXT:         name: "arg0",
    // CHECK-NEXT:         quantization: {
    // CHECK-EMPTY:
    // CHECK-NEXT:         },
    // CHECK-NEXT:         has_rank: true
    // CHECK-NEXT:       }, {
    // CHECK-NEXT:         shape: [ 4 ],
    // CHECK-NEXT:         buffer: 2,
    // CHECK-NEXT:         name: "arg1",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 14 16:41:28 UTC 2022
    - 3.9K bytes
    - Viewed (0)
  4. tensorflow/c/eager/c_api_debug.cc

      std::vector<int64_t> shape;
      int rank = -1;
      *status = handle.NumDims(&rank);
      if (!status->ok()) {
        return shape;
      }
      shape.reserve(rank);
      for (int i = 0; i < rank; ++i) {
        int64_t dim;
        *status = handle.Dim(i, &dim);
        if (!status->ok()) {
          return shape;
        }
        shape.push_back(dim);
      }
      return shape;
    }
    
    }  // namespace
    
    extern "C" {
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 11 01:20:50 UTC 2021
    - 2.5K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/utils/convert_type.h

    // Converts an TensorFlow shape to the one used in MLIR.
    void ConvertToMlirShape(const TensorShape& input_shape,
                            llvm::SmallVectorImpl<int64_t>* shape);
    
    // Converts an TensorFlow shape proto to the one used in MLIR.
    Status ConvertToMlirShape(const TensorShapeProto& input_shape,
                              llvm::SmallVectorImpl<int64_t>* shape);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Apr 26 09:37:10 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  6. tensorflow/c/experimental/ops/array_ops.h

    // Returns a tensor of zeros with the same shape and type as x.
    Status ZerosLike(AbstractContext* ctx, AbstractTensorHandle* const x,
                     AbstractTensorHandle** y, const char* name = nullptr,
                     const char* raw_device_name = nullptr);
    
    // Returns the shape of a tensor.
    Status Shape(AbstractContext* ctx, AbstractTensorHandle* const input,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 10 19:11:36 UTC 2022
    - 2.7K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/tests/graphdef2mlir/mlir_passthrough_op.pbtxt

      attr {
        key: "_user_specified_name"
        value {
          s: "x"
        }
      }
      attr {
        key: "dtype"
        value {
          type: DT_FLOAT
        }
      }
      attr {
        key: "shape"
        value {
          shape {
            dim {
              size: 10
            }
          }
        }
      }
    }
    node {
      name: "y"
      op: "Placeholder"
      attr {
        key: "_user_specified_name"
        value {
          s: "y"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  8. tensorflow/cc/framework/ops.cc

          return;
        }
        if (!TensorShape{e.tensor.shape()}.IsSameSize(
                TensorShape{first.tensor.shape()})) {
          status = errors::InvalidArgument(
              "Initializer list components should all have the same shape");
          return;
        }
      }
    
      // Form the new shape.
      TensorShape shape{static_cast<int64_t>(v.size())};
      shape.AppendShape(TensorShape{first.tensor.shape()});
    
      Tensor t(first.tensor.dtype(), shape);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 11 01:20:50 UTC 2021
    - 3.5K bytes
    - Viewed (0)
  9. tensorflow/compiler/jit/pjrt_tensor_buffer_util.cc

    #include "tsl/platform/statusor.h"
    
    namespace tensorflow {
    
    static size_t GetTensorSize(const TensorShape& shape, const DataType dtype) {
      return shape.num_elements() * DataTypeSize(dtype);
    }
    
    absl::StatusOr<Tensor> MakeTensorFromPjRtBuffer(
        const DataType dtype, const TensorShape& shape,
        std::unique_ptr<xla::PjRtBuffer> pjrt_buffer) {
      TF_ASSIGN_OR_RETURN(std::unique_ptr<xla::PjRtBuffer::ExternalReference> ref,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Sep 14 18:14:47 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/tests/mlir2flatbuffer/math.mlir

      // CHECK-NEXT:   subgraphs: [ {
      // CHECK-NEXT:     tensors: [ {
      // CHECK-NEXT:       shape: [ 4 ],
      // CHECK-NEXT:       buffer: 1,
      // CHECK-NEXT:       name: "arg0",
      // CHECK-NEXT:       quantization: {
      // CHECK-EMPTY:
      // CHECK-NEXT:       },
      // CHECK-NEXT:       has_rank: true
      // CHECK-NEXT:     }, {
      // CHECK-NEXT:       shape: [ 4 ],
      // CHECK-NEXT:       buffer: 2,
      // CHECK-NEXT:       name: "Const",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 14 16:41:28 UTC 2022
    - 5.6K bytes
    - Viewed (0)
Back to top