Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 593 for shake (0.04 sec)

  1. src/runtime/stubs.go

    import (
    	"internal/abi"
    	"unsafe"
    )
    
    // Should be a built-in for unsafe.Pointer?
    //
    // add should be an internal detail,
    // but widely used packages access it using linkname.
    // Notable members of the hall of shame include:
    //   - fortio.org/log
    //
    // Do not remove or change the type signature.
    // See go.dev/issue/67401.
    //
    //go:linkname add
    //go:nosplit
    func add(p unsafe.Pointer, x uintptr) unsafe.Pointer {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 20.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/tensorflow/passes/duplicate_shape_determining_constants.cc

      StringRef getArgument() const final {
        return "quant-duplicate-shape-determining-constants";
      }
    
      StringRef getDescription() const final {
        return "Duplicates shape-determining constants. A shape-determining "
               "constant is a constant that are transitively used to change or "
               "determine the shape of a tensor. For example, the second argument "
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 22 05:52:39 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  3. tensorflow/c/eager/parallel_device/parallel_device_lib_test.cc

      ASSERT_TRUE(TF_GetCode(status.get()) == TF_OK) << TF_Message(status.get());
      const std::vector<std::unique_ptr<ParallelTensor>>& handles = *outputs;
      const std::vector<int64_t>* shape;
      Status s = handles[0]->Shape(&shape);
      ASSERT_TRUE(s.ok());
      EXPECT_EQ(0, shape->size());
    }
    
    TEST(PARALLEL_DEVICE_LIB, TestCancelOnError) {
      std::unique_ptr<TF_Status, decltype(&TF_DeleteStatus)> status(
          TF_NewStatus(), TF_DeleteStatus);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 08 23:47:35 UTC 2021
    - 15.3K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb/SmbResourceLocatorImpl.java

                    this.canon = "/" + this.share + "/" + StringUtil.join("/", remainParts) + ( trailingSlash ? "/" : "" );
                }
                else {
                    this.unc = "\\";
                    if ( this.share != null ) {
                        this.canon = "/" + this.share + ( trailingSlash ? "/" : "" );
                    }
                    else {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sat Jul 20 08:24:53 UTC 2019
    - 23.9K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/flatbuffer_operator.cc

          std::vector<int64_t> shape;
          shape.push_back(static_cast<int64_t>(data.size()));
          attributes.emplace_back(builder.getNamedAttr(
              "window_strides", BuildVhloTensorV1Attr(shape, data, builder)));
        }
        if (!(op->padding.empty())) {
          std::vector<int64_t> shape;
          shape.push_back(static_cast<int64_t>(op->padding.size()) / 2);
          shape.push_back(2);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 38K bytes
    - Viewed (0)
  6. src/path/filepath/path_test.go

    	{`c:/`, `c:/`, ``},
    	{`c:/foo`, `c:/`, `foo`},
    	{`c:/foo/bar`, `c:/foo/`, `bar`},
    	{`//host/share`, `//host/share`, ``},
    	{`//host/share/`, `//host/share/`, ``},
    	{`//host/share/foo`, `//host/share/`, `foo`},
    	{`\\host\share`, `\\host\share`, ``},
    	{`\\host\share\`, `\\host\share\`, ``},
    	{`\\host\share\foo`, `\\host\share\`, `foo`},
    }
    
    func TestSplit(t *testing.T) {
    	var splittests []SplitTest
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 22 16:38:19 UTC 2024
    - 47.1K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/stablehlo/python/integration_test/quantize_model_test_base.py

                tensor_spec.TensorSpec(
                    shape=shape, dtype=dtypes.float32, name='input_tensor'
                )
            ),
        )
        return model
    
      # Prepares sample einsum input data shapes.
      # This function returns:
      # 1. Shape for input 1
      # 2. Shape for input 2
      # 3. Shape for bias
      # 4. Signature for input 1 (Could contain None dimension)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 06:31:57 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/stablehlo/transforms/unfuse_batch_norm_pass.cc

    }
    
    // Gets the shape of operand, assuming it is a dynamic shape with static rank.
    Value getShapeValue(Location loc, Value operand, PatternRewriter &rewriter) {
      RankedTensorType resultType =
          mlir::dyn_cast<RankedTensorType>(operand.getType());
      return rewriter.create<shape::ShapeOfOp>(
          loc,
          RankedTensorType::get(/*shape=*/{resultType.getRank()},
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  9. pkg/scheduler/apis/config/validation/validation_pluginargs_test.go

    				&field.Error{
    					Type:  field.ErrorTypeInvalid,
    					Field: "shape[0].utilization",
    				},
    				&field.Error{
    					Type:  field.ErrorTypeInvalid,
    					Field: "shape[1].score",
    				},
    				&field.Error{
    					Type:  field.ErrorTypeInvalid,
    					Field: "shape[2].score",
    				},
    				&field.Error{
    					Type:  field.ErrorTypeInvalid,
    					Field: "shape[3].utilization",
    				},
    			}),
    		},
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 27.3K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/transforms/einsum.cc

      auto value_type = mlir::cast<RankedTensorType>(value.getType());
      auto shape = value_type.getShape();
      SmallVector<int64_t, 4> transposed_shape(shape.begin(), shape.end());
      for (int i = 0, end = shape.size(); i < end; ++i) {
        transposed_shape[i] = shape[permutation[i]];
      }
      auto transposed_type =
          RankedTensorType::get(transposed_shape, value_type.getElementType());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 33.3K bytes
    - Viewed (0)
Back to top