Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 37 of 37 for slice_v1 (0.15 sec)

  1. src/internal/types/testdata/check/builtins0.go

    	f2 := func() (x, y int64) { return }
    	_ = unsafe.Sizeof(f0 /* ERROR "used as value" */ ())
    	assert(unsafe.Sizeof(f1()) == 8)
    	_ = unsafe.Sizeof(f2()) // ERROR "too many arguments"
    }
    
    func Slice1() {
    	var x int
    	unsafe.Slice()        // ERROR "not enough arguments"
    	unsafe.Slice(1, 2, 3) // ERROR "too many arguments"
    	unsafe.Slice(1 /* ERROR "is not a pointer" */ , 2)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 29.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/tests/optimize.mlir

      // CHECK: %[[SLICE_0:.*]] = "tfl.slice"(%arg0, %[[BEGIN_0]], %[[SHAPE_0]]) : (tensor<2x3x4x5xf32>, tensor<4xi64>, tensor<4xi64>) -> tensor<2x3x4x4xf32>
      // CHECK: %[[SLICE_1:.*]] = "tfl.slice"(%arg0, %[[BEGIN_1]], %[[SHAPE_1]]) : (tensor<2x3x4x5xf32>, tensor<4xi64>, tensor<4xi64>) -> tensor<1x2x3x4xf32>
      // CHECK: return %[[SLICE_0]], %[[SLICE_1]] : tensor<2x3x4x4xf32>, tensor<1x2x3x4xf32>
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 20:31:41 UTC 2024
    - 284.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

        results.reserve(op.getNumResults());
    
        for (int i = 0, end = op.getNumResults(); i < end; ++i) {
          begin_indices[axis] = i;
          end_indices[axis] = i + 1;
    
          auto slice_op = rewriter.create<mhlo::SliceOp>(
              op.getLoc(), op.getValue(),
              GetI64ElementsAttr(begin_indices, &rewriter),
              GetI64ElementsAttr(end_indices, &rewriter),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

                tflite::BuiltinOptions2_StablehloConcatenateOptions,
                concat_option.Union());
          }
          if (auto vhlo_op = llvm::dyn_cast<mlir::vhlo::SliceOpV1>(inst)) {
            std::string op_name = inst->getName().getStringRef().str();
            uint32_t opcode_index =
                GetOpcodeIndex(op_name, tflite::BuiltinOperator_STABLEHLO_SLICE);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
  5. cmd/testdata/decryptObjectInfo.json.zst

    ":"IAAfAIeJcncBjvcpYDdH/3BSJNFLGLJj/Pqd3hOZkzI9dFoHfQncV/Xw4Iuhw==","X-Minio-Internal-Server-Side-Encryption-Seal-Algorithm":"DAREv2-HMAC-SHA256","content-type":"application/octet-stream"}},{"Bucket":"buck1","Name":"go_113/src/cmd/gofmt/testdata/slices1.input","UserDef":{"X-Minio-Internal-Server-Side-Encryption-Iv":"pkH+u4J9RXoJNS9LAkC13a1a=","X-Minio-Internal-Server-Side-Encryption-S3-Kms-Key-Id":"my-minio-key","X-Minio-Internal-Server-Side-Encryption-S3-Kms-Sealed-Key":"IAAfAK8k/iUT97JRstdZF4v...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Oct 29 16:34:20 UTC 2020
    - 164K bytes
    - Viewed (0)
  6. tensorflow/compiler/jit/tests/keras_imagenet_main.pbtxt

      attr {
        key: "T"
        value {
          type: DT_FLOAT
        }
      }
    }
    node {
      name: "training/LossScaleOptimizer/gradients/pool1_pad_1/Pad_grad/Slice_1"
      op: "Slice"
      input: "training/LossScaleOptimizer/gradients/max_pooling2d_1/MaxPool_grad/MaxPoolGrad"
      input: "training/LossScaleOptimizer/gradients/pool1_pad_1/Pad_grad/Reshape"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 30 02:52:54 UTC 2019
    - 1.3M bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

       `dimI` are the dimensions of the larger tensor and `slice-spec`
       specifies what part is covered by the tensor to save.
    
    `slice-spec` itself is a `:`-separated list: `slice0:slice1:...:sliceN-1`
    where each `sliceI` is either:
    
    *  The string `-` meaning that the slice covers all indices of this dimension
    *  `start,length` where `start` and `length` are integers.  In that
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
Back to top