Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 134 for mytype (0.41 sec)

  1. tensorflow/compiler/mlir/quantization/stablehlo/python/integration_test/quantize_model_test.py

            rng.uniform(low=0.0, high=1.0, size=static_input_shape).astype(
                np.float32
            )
        )
    
        def data_gen() -> repr_dataset.RepresentativeDataset:
          for _ in range(100):
            yield {
                'input_tensor': rng.uniform(
                    low=0.0, high=1.0, size=static_input_shape
                ).astype(np.float32)
            }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 06:31:57 UTC 2024
    - 51.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/ir/tf_executor_ops.td

    // Token type.
    def TfeTokenType : Type<CPred<"$_self.isa<TokenType>()">, "token">,
                       BuildableType<"$_builder.getType<TokenType>()">;
    
    // TODO(hinsu): Define and use TensorType instead of AnyType for data operands
    // and results. For example, MergeOp output type.
    
    //===----------------------------------------------------------------------===//
    // TensorFlow Executor Type Constraint
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 23 19:35:12 UTC 2023
    - 22K bytes
    - Viewed (0)
  3. cmd/admin-handlers_test.go

    	return objLayer, erasureDirs, nil
    }
    
    // cmdType - Represents different service subcomands like status, stop
    // and restart.
    type cmdType int
    
    const (
    	restartCmd cmdType = iota
    	stopCmd
    )
    
    // toServiceSignal - Helper function that translates a given cmdType
    // value to its corresponding serviceSignal value.
    func (c cmdType) toServiceSignal() serviceSignal {
    	switch c {
    	case restartCmd:
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Feb 22 06:26:06 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/ir/tf_device_ops.td

    ```
      }];
    
      let arguments = (ins
        Variadic<AnyType>:$replicated_inputs,
        Variadic<AnyType>:$packed_inputs,
    
        ConfinedAttr<I32Attr, [IntMinValue<2>]>:$n,
        OptionalAttr<DictionaryAttr>:$devices
      );
    
      let results = (outs
        Variadic<AnyType>:$replicated_outputs
      );
    
      let regions = (region SizedRegion<1>:$body);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jan 23 23:53:20 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  5. platforms/software/signing/src/main/java/org/gradle/plugins/signing/signatory/internal/ConfigurableSignatoryProvider.java

    import org.gradle.plugins.signing.signatory.SignatoryProvider;
    import org.gradle.security.internal.BaseSignatoryProvider;
    import org.gradle.util.internal.ConfigureUtil;
    
    import static org.codehaus.groovy.runtime.DefaultGroovyMethods.asType;
    
    public interface ConfigurableSignatoryProvider<T extends Signatory> extends BaseSignatoryProvider<T>, SignatoryProvider<T> {
        @Override
        default void configure(SigningExtension settings, Closure closure) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  6. operator/cmd/mesh/manifest_shared_test.go

    	"istio.io/istio/pkg/kube"
    	"istio.io/istio/pkg/log"
    )
    
    // cmdType is one of the commands used to generate and optionally apply a manifest.
    type cmdType string
    
    const (
    	// istioctl manifest generate
    	cmdGenerate cmdType = "istioctl manifest generate"
    	// istioctl install
    	cmdApply cmdType = "istioctl install"
    	// in-cluster controller
    	cmdController cmdType = "operator controller"
    )
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 20 22:39:28 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/types/identity.go

    		case TINTER:
    			// Make sure named any type matches any unnamed empty interface
    			// (but not a shape type, if identStrict).
    			isUnnamedEface := func(t *Type) bool { return t.IsEmptyInterface() && t.Sym() == nil }
    			if flags&identStrict != 0 {
    				return t1 == AnyType && isUnnamedEface(t2) && !t2.HasShape() || t2 == AnyType && isUnnamedEface(t1) && !t1.HasShape()
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 20:57:01 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  8. src/go/internal/gcimporter/support.go

    	// invalid type
    	types.Typ[types.Invalid], // only appears in packages with errors
    
    	// used internally by gc; never used by this package or in .a files
    	// not to be confused with the universe any
    	anyType{},
    
    	// comparable
    	types.Universe.Lookup("comparable").Type(),
    
    	// "any" has special handling: see usage of predeclared.
    }
    
    type anyType struct{}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/typeconverter_test.go

    						},
    						map[interface{}]interface{}{
    							"group":   "mygroup",
    							"version": "v3",
    							"kind":    "MyOtherKind",
    						},
    					},
    				},
    			},
    		},
    	}
    
    	myTypes := []smdschema.TypeDef{
    		{
    			Name: "def0",
    			Atom: smdschema.Atom{},
    		},
    		{
    			Name: "def0.1",
    			Atom: smdschema.Atom{},
    		},
    		{
    			Name: "def0.2",
    			Atom: smdschema.Atom{},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 08 21:44:00 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/tensorflow/python/integration_test/concurrency_test.py

        def data_gen():
          for _ in range(255):
            yield {
                'x': ops.convert_to_tensor(
                    np.random.uniform(size=(10)).astype('f4')
                ),
                'y': ops.convert_to_tensor(
                    np.random.uniform(size=(10)).astype('f4')
                ),
            }
    
        root = ModelWithAdd()
    
        temp_path = self.create_tempdir().full_path
        saved_model_save.save(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Sep 11 00:47:05 UTC 2023
    - 3.6K bytes
    - Viewed (0)
Back to top