Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 371 for tiling (0.13 sec)

  1. tensorflow/cc/gradients/linalg_grad.cc

      // doesn't need to be transposed, then just tiling is enough and there is no
      // need to call another einsum. For example, tiling is sufficient for
      // "abcd->ac". But for equations like "aabbcd->ac" (generalized traces) or
      // "abc->ca" (transpose), we'd need another einsum operation after tiling.
      if (!has_repeated_labels &&
          input_subs_without_reduced_labels == output_subs) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 07 23:11:54 UTC 2022
    - 20.4K bytes
    - Viewed (0)
  2. src/runtime/mbitmap.go

    // we skip to "start+t.Size_" and begin again from there. This process is
    // repeated until we hit "start+s.elemsize".
    // This tiling algorithm supports array data, since the type always refers to
    // the element type of the array. Single objects are considered the same as
    // single-element arrays.
    // The tiling algorithm may scan data past the end of the compiler-recognized
    // object, but any unused data within the allocation slot (i.e. within s.elemsize)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 60K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/flags.h

      // Enables tracking of the "live" JitRt queries to, on a crash, identify the
      // "query of death". See TfJitRtQueryOfDeathLogger.
      bool log_query_of_death;
    
      // Enable vectorization, which requires tiling and peeling on different ops.
      bool vectorize;
    
      // Enables crash reproducer for JitRt MLIR pass manager.
      bool enable_crash_reproducer;
    };
    
    // Return a pointer to the DumpGraphFlags struct;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 17 18:52:57 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/mod/sumdb/tlog/tile.go

    //
    // See also https://golang.org/design/25530-sumdb#checksum-database
    // and https://research.swtch.com/tlog#tiling_a_log.
    type Tile struct {
    	H int   // height of tile (1 ≤ H ≤ 30)
    	L int   // level in tiling (-1 ≤ L ≤ 63)
    	N int64 // number within level (0 ≤ N, unbounded)
    	W int   // width of tile (1 ≤ W ≤ 2**H; 2**H is complete tile)
    }
    
    // TileForIndex returns the tile of fixed height h ≥ 1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 13K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

      let description = [{
        Constructs a tensor by tiling a given tensor.
    
       This operation creates a new tensor by replicating input
       multiples times. The output tensor's i'th dimension has
       input.dims(i) * multiples[i] elements, and the values of input
       are replicated multiples[i] times along the 'i'th dimension.
       For example, tiling [a b c d] by [2] produces [a b c d a b c d].
      }];
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  6. android/guava-tests/benchmark/com/google/common/math/BigIntegerMathBenchmark.java

          slowFactorials[i] = RANDOM_SOURCE.nextInt(factorialBound);
          binomials[i] = RANDOM_SOURCE.nextInt(factorials[i] + 1);
        }
      }
    
      /** Previous version of BigIntegerMath.factorial, kept for timing purposes. */
      private static BigInteger oldSlowFactorial(int n) {
        if (n <= 20) {
          return BigInteger.valueOf(LongMath.factorial(n));
        } else {
          int k = 20;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Dec 04 17:37:03 UTC 2017
    - 3.3K bytes
    - Viewed (0)
  7. docs/distributed/SIZING.md

    # Erasure code sizing guide
    
    ## Toy Setups
    
    Capacity constrained environments, MinIO will work but not recommended for production.
    
    | servers | drives (per node) | stripe_size | parity chosen (default) | tolerance for reads (servers) | tolerance for writes (servers) |
    |--------:|------------------:|------------:|------------------------:|------------------------------:|-------------------------------:|
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Aug 15 23:04:20 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  8. common/config/tslint.json

    Martin Taillefer <******@****.***> 1568244741 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Sep 11 23:32:21 UTC 2019
    - 631 bytes
    - Viewed (0)
  9. test/turing.go

    // run
    
    // Copyright 2009 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Test simulating a Turing machine, sort of.
    
    package main
    
    // brainfuck
    
    var p, pc int
    var a [30000]byte
    
    const prog = "++++++++++[>+++++++>++++++++++>+++>+<<<<-]>++.>+.+++++++..+++.>++.<<+++++++++++++++.>.+++.------.--------.>+.>.!"
    
    func scan(dir int) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 00:48:19 UTC 2012
    - 893 bytes
    - Viewed (0)
  10. src/cmd/compile/internal/base/timings.go

    package base
    
    import (
    	"fmt"
    	"io"
    	"strings"
    	"time"
    )
    
    var Timer Timings
    
    // Timings collects the execution times of labeled phases
    // which are added through a sequence of Start/Stop calls.
    // Events may be associated with each phase via AddEvent.
    type Timings struct {
    	list   []timestamp
    	events map[int][]*event // lazily allocated
    }
    
    type timestamp struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 14 00:03:57 UTC 2023
    - 5.8K bytes
    - Viewed (0)
Back to top