Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 63 for units (0.04 sec)

  1. pkg/scheduler/internal/cache/cache_test.go

    				t.Errorf("cache.nodeTree is not updated correctly after adding node got: %d, expected: %d",
    					cache.nodeTree.numNodes, len(tc.nodes))
    			}
    
    			// Generations are globally unique. We check in our unit tests that they are incremented correctly.
    			expected.Generation = got.info.Generation
    			if diff := cmp.Diff(expected, got.info, cmp.AllowUnexported(framework.NodeInfo{})); diff != "" {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 17 01:38:03 UTC 2023
    - 63.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/tests/prepare-quantize.mlir

    // CHECK: %1 = "tfl.dequantize"(%0)
    // CHECK: return %1 : tensor<2x3xf32>
    }
    
    // CHECK-LABEL: NotQuantizeNoneType
    func.func @NotQuantizeNoneType() -> none {
      %cst = "tfl.no_value"() {value = unit} : () -> none
      func.return %cst : none
    
    // CHECK-NEXT:  %[[cst:.*]] = "tfl.no_value"() <{value}> : () -> none
    // CHECK-NEXT:  return %[[cst]]
    }
    
    // CHECK-LABEL: QuantizeZeroSplat
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 67.5K bytes
    - Viewed (0)
  3. src/runtime/mgcscavenge.go

    }
    
    // next provides a new sample to the controller.
    //
    // input is the sample, setpoint is the desired point, and period is how much
    // time (in whatever unit makes the most sense) has passed since the last sample.
    //
    // Returns a new value for the variable it's controlling, and whether the operation
    // completed successfully. One reason this might fail is if error has been growing
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:48:45 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/tensorflow/tests/quantize_composit_functions_debugging.mlir

    // XLA_PerChannel-DAG: %[[out_scale:.*]] = "tf.Const"() <{value = dense<7.24974147E-4> : tensor<f32>}> : () -> tensor<f32>
    }
    
    // TODO(b/308773062): Add whole_model unit-test
    
    // -----
    
    module {
      func.func @matmul2_with_int_per_layer(%arg0: tensor<2x2xf32> {tf_saved_model.index_path = ["input_tensor"]}) -> tensor<2x2xf32> {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Nov 06 01:23:21 UTC 2023
    - 80.5K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/ir/tf_ops.td

       generated sequentially as '*tag*/image/0', '*tag*/image/1', etc.
    
    The `bad_color` argument is the color to use in the generated images for
    non-finite input values.  It is a `unit8` 1-D tensor of length `channels`.
    Each element must be in the range `[0, 255]` (It represents the value of a
    pixel in the output image).  Non-finite values in the input tensor are
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 04:08:35 UTC 2024
    - 90.5K bytes
    - Viewed (0)
  6. pilot/pkg/serviceregistry/kube/controller/ambient/ambientindex_test.go

    		Protocol: workloadapi.ApplicationTunnel_PROXY,
    		Port:     15088,
    	})
    }
    
    // define constants for the different types of XDS events which occur during policy unit tests
    const (
    	xdsConvertedPeerAuthSelector       = "converted_peer_authentication_selector"
    	xdsConvertedPeerAuthSelectorStrict = "converted_peer_authentication_selector-strict"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 01:04:50 UTC 2024
    - 70.2K bytes
    - Viewed (0)
  7. subprojects/core-api/src/main/java/org/gradle/api/Project.java

     *
     * </ul>
     *
     * <h3>Tasks</h3>
     *
     * <p>A project is essentially a collection of {@link Task} objects. Each task performs some basic piece of work, such
     * as compiling classes, or running unit tests, or zipping up a WAR file. You add tasks to a project using one of the
     * {@code create()} methods on {@link TaskContainer}, such as {@link TaskContainer#create(String)}.  You can locate existing
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 04:56:22 UTC 2024
    - 74.3K bytes
    - Viewed (0)
  8. cmd/erasure-server-pool.go

    		//
    		// import org.apache.spark.sql.SparkSession
    		// import org.apache.spark.sql.types.{IntegerType, StringType, StructField, StructType}
    		// object SparkJSONRead {
    		//   def main(args: Array[String]): Unit = {
    		//     val spark:SparkSession = SparkSession.builder()
    		//       .appName("SparkByExample")
    		//       .master("local[1]").getOrCreate()
    		//
    		//     spark.sparkContext.setLogLevel("ERROR")
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 30 11:58:12 UTC 2024
    - 82.5K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/optimizing-performance/configuration_cache.adoc

    link:{gradle-issues}13485[[.red]#✖#]:: <<cpp_library_plugin.adoc#cpp_library_plugin,C++ Library>>
    link:{gradle-issues}13514[[.red]#✖#]:: <<cpp_unit_test_plugin.adoc#cpp_unit_test_plugin,C++ Unit Test>>
    link:{gradle-issues}13515[[.red]#✖#]:: <<swift_application_plugin.adoc#swift_application_plugin,Swift Application>>
    link:{gradle-issues}13487[[.red]#✖#]:: <<swift_library_plugin.adoc#swift_library_plugin,Swift Library>>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 71.1K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/rewrite.go

    // isARM64bitcon reports whether a constant can be encoded into a logical instruction.
    func isARM64bitcon(x uint64) bool {
    	if x == 1<<64-1 || x == 0 {
    		return false
    	}
    	// determine the period and sign-extend a unit to 64 bits
    	switch {
    	case x != x>>32|x<<32:
    		// period is 64
    		// nothing to do
    	case x != x>>16|x<<48:
    		// period is 32
    		x = uint64(int64(int32(x)))
    	case x != x>>8|x<<56:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
Back to top