Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 21 for pcdelta (0.14 sec)

  1. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_n_z.cc

        return ((std::abs(diff) + std::abs(delta) - 1) / std::abs(delta));
      }
      return std::ceil(std::abs(diff / delta));
    }
    
    // Builds a constant range tensor of `result_elem_type` elements.
    // Template parameter `FloatOrIntAtrr` must be mlir::IntegerAttr or
    // mlir::FloatAttr.
    template <typename FloatOrIntAtrr>
    DenseElementsAttr BuildConstRangeTensor(Type result_elem_type, int num_elements,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 170.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo.cc

        Type element_type = type.getElementType();
        Attribute start, delta;
        if (mlir::isa<FloatType>(element_type)) {
          start = rewriter.getFloatAttr(element_type, 0.0);
          delta = rewriter.getFloatAttr(element_type, 1.0);
        } else if (mlir::isa<IntegerType>(element_type)) {
          start = rewriter.getIntegerAttr(element_type, 0);
          delta = rewriter.getIntegerAttr(element_type, 1);
        } else {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 154.9K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/cluster_test.go

    				proxy.PrevSidecarScope.SetDestinationRulesForTesting(tc.prevConfigs)
    			}
    			clusters, removed, delta := cg.DeltaClusters(proxy, tc.configUpdated,
    				&model.WatchedResource{ResourceNames: tc.watchedResourceNames})
    			if delta != tc.usedDelta {
    				t.Errorf("un expected delta, want %v got %v", tc.usedDelta, delta)
    			}
    			assert.Equal(t, removed, tc.removedClusters)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 108.8K bytes
    - Viewed (0)
  4. okhttp/src/test/java/okhttp3/CacheTest.kt

        sink.close()
      }
    
      /**
       * @param delta the offset from the current date to use. Negative values yield dates in the past;
       * positive values yield dates in the future.
       */
      private fun formatDate(
        delta: Long,
        timeUnit: TimeUnit,
      ): String {
        return formatDate(Date(System.currentTimeMillis() + timeUnit.toMillis(delta)))
      }
    
      private fun formatDate(date: Date): String {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 10 19:46:48 UTC 2024
    - 108.6K bytes
    - Viewed (0)
  5. src/cmd/vendor/rsc.io/markdown/entity.go

    	"&Dashv;":                           "\u2ae4",
    	"&Dcaron;":                          "\u010e",
    	"&Dcy;":                             "\u0414",
    	"&Del;":                             "\u2207",
    	"&Delta;":                           "\u0394",
    	"&Dfr;":                             "\U0001d507",
    	"&DiacriticalAcute;":                "\u00b4",
    	"&DiacriticalDot;":                  "\u02d9",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 101K bytes
    - Viewed (0)
  6. src/runtime/proc.go

    	assertWorldStopped()
    
    	mp := acquirem() // disable preemption because it can be holding p in a local var
    	if netpollinited() {
    		list, delta := netpoll(0) // non-blocking
    		injectglist(&list)
    		netpollAdjustWaiters(delta)
    	}
    	lock(&sched.lock)
    
    	procs := gomaxprocs
    	if newprocs != 0 {
    		procs = newprocs
    		newprocs = 0
    	}
    	p1 := procresize(procs)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

                 ? ((std::abs(limit - start) + std::abs(delta) - 1) /
                    std::abs(delta))
                 : std::ceil(std::abs((limit - start) / delta));
    }
    
    // Builds a constant range tensor of `result_elem_type` elements.
    // Template parameter `FloatOrIntAtrr` must be mlir::IntegerAttr or
    // mlir::FloatAttr.
    template <typename FloatOrIntAtrr>
    DenseElementsAttr BuildConstRangeTensor(Type result_elem_type, int num_elements,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 169.2K bytes
    - Viewed (0)
  8. src/html/entity.go

    		"Dashv;":                           '\U00002AE4',
    		"Dcaron;":                          '\U0000010E',
    		"Dcy;":                             '\U00000414',
    		"Del;":                             '\U00002207',
    		"Delta;":                           '\U00000394',
    		"Dfr;":                             '\U0001D507',
    		"DiacriticalAcute;":                '\U000000B4',
    		"DiacriticalDot;":                  '\U000002D9',
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jul 31 22:10:54 UTC 2018
    - 114.3K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

      let description = [{
        Returns a 1D tensor defined by a sequence from `start` to `limit` with
        a given `delta`.
      }];
    
      let arguments = (ins
        TFL_TensorOf<[I32, F32, I64]>:$start,
        TFL_TensorOf<[I32, F32, I64]>:$limit,
        TFL_TensorOf<[I32, F32, I64]>:$delta);
    
      let results = (outs TFL_TensorOf<[I32, F32, I64]>:$result);
    
      let hasFolder = 1;
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  10. src/main/webapp/js/admin/bootstrap.min.js.map

    isPrevDirection && activeIndex === 0 ||\n                            isNextDirection && activeIndex === lastItemIndex\n\n    if (isGoingToWrap && !this._config.wrap) {\n      return activeElement\n    }\n\n    const delta     = direction === Direction.PREV ? -1 : 1\n    const itemIndex = (activeIndex + delta) % this._items.length\n\n    return itemIndex === -1\n      ? this._items[this._items.length - 1] : this._items[itemIndex]\n  }\n\n  _triggerSlideEvent(relatedTarget, eventDirectionName) {\n    const targetIndex...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Feb 07 10:28:50 UTC 2020
    - 185.8K bytes
    - Viewed (0)
Back to top