Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 40 for udivisible (0.18 sec)

  1. src/runtime/stubs.go

    	memclrNoHeapPointers(ptr, n)
    }
    
    // memmove copies n bytes from "from" to "to".
    //
    // memmove ensures that any pointer in "from" is written to "to" with
    // an indivisible write, so that racy reads cannot observe a
    // half-written pointer. This is necessary to prevent the garbage
    // collector from observing invalid pointers, and differs from memmove
    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. src/encoding/base32/base32_test.go

    			res: "leasure.", err: badErr, dbuflen: 11},
    		// Check that errors are correctly propagated when the reader returns valid bytes in
    		// groups that are not divisible by 8.  The first read will return 11 bytes and no
    		// error.  The second will return 7 and an error.  The data should be decoded correctly
    		// and the error should be propagated.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 16:25:54 UTC 2024
    - 26K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/utils/lstm_utils.cc

      }
    
      if (weight_type_.getDimSize(1) % num_gates_ != 0) {
        return fused_func_op_.emitError()
               << "Invalid dimension 1 of weight tensor, "
                  "should be divisible by the number of gates";
      }
      n_cell_ = weight_type_.getDimSize(1) / num_gates_;
    
      projection_ = fused_func_op_.getArgument(3);
      projection_type_ = mlir::cast<RankedTensorType>(projection_.getType());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 36.2K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/hash/Hashing.java

          super(functions);
          for (HashFunction function : functions) {
            checkArgument(
                function.bits() % 8 == 0,
                "the number of bits (%s) in hashFunction (%s) must be divisible by 8",
                function.bits(),
                function);
          }
        }
    
        @Override
        HashCode makeHash(Hasher[] hashers) {
          byte[] bytes = new byte[bits() / 8];
          int i = 0;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 09 00:37:15 UTC 2024
    - 29.2K bytes
    - Viewed (0)
  5. guava/src/com/google/common/hash/Hashing.java

          super(functions);
          for (HashFunction function : functions) {
            checkArgument(
                function.bits() % 8 == 0,
                "the number of bits (%s) in hashFunction (%s) must be divisible by 8",
                function.bits(),
                function);
          }
        }
    
        @Override
        HashCode makeHash(Hasher[] hashers) {
          byte[] bytes = new byte[bits() / 8];
          int i = 0;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 09 00:37:15 UTC 2024
    - 32.3K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_a_m.cc

        if (input_batch != ShapedType::kDynamic &&
            input_batch % (block_size * block_size) != 0) {
          return op.emitOpError()
                 << "requires input batch (dimension 0) to be evenly divisible "
                    "by (block_size * block_size), but got input batch "
                 << input_batch << " and block_size " << block_size;
        }
    
        input_shape.assign(input_type.getShape().begin(),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 146.7K bytes
    - Viewed (0)
  7. src/runtime/malloc.go

    		}
    	}
    	if pagesPerArena%pagesPerSpanRoot != 0 {
    		print("pagesPerArena (", pagesPerArena, ") is not divisible by pagesPerSpanRoot (", pagesPerSpanRoot, ")\n")
    		throw("bad pagesPerSpanRoot")
    	}
    	if pagesPerArena%pagesPerReclaimerChunk != 0 {
    		print("pagesPerArena (", pagesPerArena, ") is not divisible by pagesPerReclaimerChunk (", pagesPerReclaimerChunk, ")\n")
    		throw("bad pagesPerReclaimerChunk")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/tests/extract_outside_compilation.mlir

        return
      }
    
      // Test that map_outside_compilation's inputs shapes are divisible by num_cores_per_replica.
      func.func @map_outside_compilation_div_num_cores_per_replica() -> () {
        "tf_device.cluster"() ({
          %0 = "tf.OpA"() : () -> tensor<3xi64>
          // expected-error @+1 {{divisible by num_cores_per_replica}}
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 31 08:59:10 UTC 2023
    - 129.6K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tf2xla/internal/passes/extract_outside_compilation.cc

      if (in_shape[0] % num_cores_per_replica != 0) {
        return context_op->emitOpError()
               << "A map_outside_compilation op's input and output shapes must be "
                  "divisible by num_cores_per_replica="
               << num_cores_per_replica;
      }
      llvm::SmallVector<int64_t, 4> shape;
      shape.push_back(split_size);
      for (int i = 1; i < in_shape.size(); ++i) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 21:25:12 UTC 2024
    - 68.3K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

                                << kernel_output_features << ") to be divisible by "
                                << "feature_group_count (value "
                                << feature_group_count_val << ").\n";
      }
      if (input_batch % batch_group_count != 0) {
        return op.emitOpError()
               << "Expected input batch dimension (value " << input_batch
               << " ) to be divisible by batch_group_count (value "
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
Back to top