Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 74 for sdivisible (0.27 sec)

  1. src/runtime/arena.go

    // fault while the GC is active.)
    //
    // The implementation works in layers. At the bottom, arenas are managed in chunks.
    // Each chunk must be a multiple of the heap arena size, or the heap arena size must
    // be divisible by the arena chunks. The address space for each chunk, and each
    // corresponding heapArena for that address space, are eternally reserved for use as
    // arena chunks. That is, they can never be used for the general heap. Each chunk
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:44:56 UTC 2024
    - 37.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/ir/tf_device.cc

      if (num_replicated_inputs % n != 0)
        return op.emitOpError()
               << "expects number of replicated inputs (" << num_replicated_inputs
               << ") to be evenly divisible by 'n' (" << n << ")";
    
      const int32_t num_replicated_block_args = num_replicated_inputs / n;
      if (num_replicated_block_args + num_packed_inputs != block.getNumArguments())
        return op.emitOpError()
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 33.4K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. subprojects/core-api/src/main/java/org/gradle/api/artifacts/Configuration.java

         *
         * @param visible true if this is a visible configuration
         * @return this configuration
         */
        Configuration setVisible(boolean visible);
    
        /**
         * Returns the names of the configurations which this configuration extends from. The artifacts of the super
         * configurations are also available in this configuration.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 28 18:18:46 UTC 2024
    - 31.6K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top