Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 184 for ktypes (0.14 sec)

  1. tensorflow/compiler/mlir/quantization/tensorflow/python/integration_test/quantize_model_test_base.py

        return inputs, outputs
    
      def _create_data_generator(
          self,
          input_key: str,
          shape: Sequence[int],
          minval: float = -1.0,
          maxval: float = 1.0,
          dtype: dtypes.DType = dtypes.float32,
          num_examples: int = 8,
      ) -> repr_dataset.RepresentativeDataset:
        """Creates a data generator to be used as representative dataset.
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 21 08:51:46 UTC 2024
    - 51.2K bytes
    - Viewed (0)
  2. testing/architecture-test/src/changes/archunit-store/public-api-methods-return-allowed-types.txt

    Method <org.gradle.api.DefaultTask.doLast(groovy.lang.Closure)> has arguments/return type groovy.lang.Closure that is not Gradle public API or primitive or built-in JDK classes or Kotlin classes in (DefaultTask.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 12:21:31 UTC 2024
    - 91.3K bytes
    - Viewed (0)
  3. src/cmd/link/internal/ld/dwarf.go

    		dwsectCUSize = make(map[string]uint64)
    	}
    
    	// For ctxt.Diagnostic messages.
    	newattr(&dwtypes, dwarf.DW_AT_name, dwarf.DW_CLS_STRING, int64(len("dwtypes")), "dwtypes")
    
    	// Unspecified type. There are no references to this in the symbol table.
    	d.newdie(&dwtypes, dwarf.DW_ABRV_NULLTYPE, "<unspecified>")
    
    	// Some types that must exist to define other ones (uintptr in particular
    	// is needed for array size)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:25:18 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tfr/python/tfr_gen.py

        """Return single type or a tuple of types if more than one type."""
        types_ = anno.getanno(node, anno.Static.TYPES, None)
        if not types_:
          print('WARN: no Static.TYPES annotation. Fix the type inference pass: ')
          self.debug_print(node)
          return default
    
        if len(types_) == 1:
          type_, = types_
        else:
          type_ = types_
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 27 15:27:03 UTC 2022
    - 55.8K bytes
    - Viewed (0)
  5. pkg/kubelet/pod_workers_test.go

    			waitingToStartStaticPodsByFullname: map[string][]types.UID{
    				"foo_": {
    					types.UID("uid-2"),
    					types.UID("uid-3"),
    					types.UID("uid-0"),
    					types.UID("uid-1"),
    				},
    			},
    			expectedStartedStaticPodsByFullname: map[string]types.UID{},
    			expectedWaitingToStartStaticPodsByFullname: map[string][]types.UID{
    				"foo_": {
    					types.UID("uid-2"),
    					types.UID("uid-3"),
    					types.UID("uid-0"),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 75.6K bytes
    - Viewed (0)
  6. guava-tests/test/com/google/common/reflect/TypeTokenTest.java

        TypeToken<Object>.TypeSet types = new TypeToken<Object>() {}.getTypes();
        assertThat(types).contains(TypeToken.of(Object.class));
        assertThat(types.rawTypes()).contains(Object.class);
        assertThat(types.interfaces()).isEmpty();
        assertThat(types.interfaces().rawTypes()).isEmpty();
        assertThat(types.classes()).contains(TypeToken.of(Object.class));
        assertThat(types.classes().rawTypes()).contains(Object.class);
      }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 17:15:24 UTC 2024
    - 88.7K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/ir/tf_ops.td

    shared_name: the name by which this variable is referred to.
    dtype and shape: attributes representing the data type and shape held in the
      variable.
    
    Example:
        resource_variable_ops.var_handle_op(
              dtype=dtypes.int32, shape=[8, 16], container="foo", shared_name="bar")
      returns a handle for a variable with name "bar" in container "foo", and the
      variable holds a tensor of shape [8, 16] and dtype int32.
      }];
    
      let arguments = (ins
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 04:08:35 UTC 2024
    - 90.5K bytes
    - Viewed (0)
  8. pkg/controller/volume/attachdetach/cache/actual_state_of_world_test.go

    	asw := NewActualStateOfWorld(volumePluginMgr)
    	volumeName := v1.UniqueVolumeName("volume-name")
    	volumeSpec := controllervolumetesting.GetTestVolumeSpec(string(volumeName), volumeName)
    
    	node1Name := types.NodeName("node1-name")
    	node2Name := types.NodeName("node2-name")
    	devicePath := "fake/device/path"
    
    	// Act
    	logger, _ := ktesting.NewTestContext(t)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 11 07:35:17 UTC 2024
    - 66.1K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/rewritedec64.go

    	config := b.Func.Config
    	typ := &b.Func.Config.Types
    	// match: (Arg {n} [off])
    	// cond: is64BitInt(v.Type) && !config.BigEndian && v.Type.IsSigned() && !(b.Func.pass.name == "decompose builtin")
    	// result: (Int64Make (Arg <typ.Int32> {n} [off+4]) (Arg <typ.UInt32> {n} [off]))
    	for {
    		off := auxIntToInt32(v.AuxInt)
    		n := auxToSym(v.Aux)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 19 22:42:34 UTC 2023
    - 65.3K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/reflect/TypeToken.java

        // invariant context.
        return of(getInvariantTypeResolver().resolveType(type));
      }
    
      private TypeToken<?> resolveSupertype(Type type) {
        TypeToken<?> supertype = of(getCovariantTypeResolver().resolveType(type));
        // super types' type mapping is a subset of type mapping of this type.
        supertype.covariantTypeResolver = covariantTypeResolver;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 26 21:02:13 UTC 2023
    - 53.6K bytes
    - Viewed (0)
Back to top