Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 33 for deltaY (0.15 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. src/main/webapp/js/admin/bootstrap.min.js.map

    ttr]\n        }\n      })\n\n    config = {\n      ...this.constructor.Default,\n      ...dataAttributes,\n      ...typeof config === 'object' && config ? config : {}\n    }\n\n    if (typeof config.delay === 'number') {\n      config.delay = {\n        show: config.delay,\n        hide: config.delay\n      }\n    }\n\n    if (typeof config.title === 'number') {\n      config.title = config.title.toString()\n    }\n\n    if (typeof config.content === 'number') {\n      config.content = config.content.toString()\n...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Feb 07 10:28:50 UTC 2020
    - 185.8K bytes
    - Viewed (0)
  4. src/main/webapp/js/bootstrap.min.js.map

    ttr]\n        }\n      })\n\n    config = {\n      ...this.constructor.Default,\n      ...dataAttributes,\n      ...typeof config === 'object' && config ? config : {}\n    }\n\n    if (typeof config.delay === 'number') {\n      config.delay = {\n        show: config.delay,\n        hide: config.delay\n      }\n    }\n\n    if (typeof config.title === 'number') {\n      config.title = config.title.toString()\n    }\n\n    if (typeof config.content === 'number') {\n      config.content = config.content.toString()\n...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sat Jan 11 06:54:28 UTC 2020
    - 189.9K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. src/runtime/proc.go

    			throw("findrunnable: netpoll with spinning")
    		}
    		delay := int64(-1)
    		if pollUntil != 0 {
    			if now == 0 {
    				now = nanotime()
    			}
    			delay = pollUntil - now
    			if delay < 0 {
    				delay = 0
    			}
    		}
    		if faketime != 0 {
    			// When using fake time, just poll.
    			delay = 0
    		}
    		list, delta := netpoll(delay) // block until new work is available
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top