Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 222 for reserialized (0.23 sec)

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

      """Serializes SignatureDef values in `signature_def_map`.
    
      Args:
        signature_def_map: Signature key -> SignatureDef mapping.
    
      Returns:
        Signature def map where the values (`SignatureDef`) are serialized.
      """
      signature_def_map_serialized = {}
      for key, signature_def in signature_def_map.items():
        signature_def_map_serialized[key] = signature_def.SerializeToString()
    
      return signature_def_map_serialized
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 12:53:33 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/stablehlo/cc/report.cc

    // its `name` field set to the callee's name reverted back to the lifted
    // function's name. Also, `call_op` must have the `kQuantizationMethodAttr`
    // attribute, which is deserialized as `Method` and set in the returned
    // `QuantizationResult`. Otherwise, it returns `std::nullopt`.
    std::optional<QuantizationResult> GetQuantizationResult(func::CallOp call_op) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  3. cmd/xl-storage-format-v2_gen.go

    		if err != nil {
    			err = msgp.WrapError(err)
    			return
    		}
    		(*z) = ChecksumAlgo(zb0001)
    	}
    	o = bts
    	return
    }
    
    // Msgsize returns an upper bound estimate of the number of bytes occupied by the serialized message
    func (z ChecksumAlgo) Msgsize() (s int) {
    	s = msgp.Uint8Size
    	return
    }
    
    // DecodeMsg implements msgp.Decodable
    func (z *ErasureAlgo) DecodeMsg(dc *msgp.Reader) (err error) {
    	{
    		var zb0001 uint8
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 29 19:14:09 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/cmd/config.go

    			Further, kubeadm can only write out config of version %q, but read both types.
    			So regardless of what version you pass to the --old-config parameter here, the API object will be
    			read, deserialized, defaulted, converted, validated, and re-serialized when written to stdout or
    			--new-config if specified.
    
    			In other words, the output of this command is what kubeadm actually would read internally if you
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 06:58:01 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/tensorflow/quantize_preprocess.cc

        // legalizing to stablehlo.constant.
        AddTFToStablehloPasses(pm_after_freezing_variables, input_arg_shapes);
      }
    
      if (deserialize_xla_call_module) {
        // Deserialize the StableHLO module embedded in tf.XlaCallModule and lifts
        // the StableHLO functions to the top level module. This is needed for
        // StableHLO quantization. Also restores some shape information for
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 12:49:45 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/services/IsolatedActionCodecsFactory.kt

                    bind(BeanCodec)
                }.build()
            )
    
        /**
         * Value sources and build services are currently unsupported but could eventually
         * be captured as part of the serialized action [environment][org.gradle.internal.cc.impl.isolation.SerializedIsolatedActionGraph.environment]
         **/
        private
        fun BindingsBuilder.unsupportedProviderTypes() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  7. cmd/data-usage-cache.go

    						return true, nil
    					}
    					return false, err
    				}
    				err = d.deserialize(r)
    				r.Close()
    				return err != nil, nil
    			case InsufficientReadQuorum, StorageErr:
    				return true, nil
    			}
    			return false, err
    		}
    		err = d.deserialize(r)
    		r.Close()
    		return err != nil, nil
    	}
    
    	// Caches are read+written without locks,
    	retries := 0
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 10 14:49:50 UTC 2024
    - 42.8K bytes
    - Viewed (0)
  8. android/guava-tests/test/com/google/common/collect/ImmutableSortedSetTest.java

        }
      }
    
      @J2ktIncompatible
      @GwtIncompatible // SerializableTester
      public void testEmpty_serialization() {
        SortedSet<String> set = of();
        SortedSet<String> copy = SerializableTester.reserialize(set);
        assertSame(set, copy);
      }
    
      public void testSingle_comparator() {
        SortedSet<String> set = of("e");
        assertSame(Ordering.natural(), set.comparator());
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 17 15:27:58 UTC 2024
    - 45.1K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheIntegrationTest.groovy

            where:
            provider                         | _
            "jar.flatMap { it.archiveFile }" | _
            "jar.get().archiveFile"          | _
        }
    
        @Issue("gradle/gradle#20390")
        def "can deserialize copy task with rename"() {
            given:
            def configurationCache = newConfigurationCacheFixture()
            buildFile """
                tasks.register('copyAndRename', Copy) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/tools/internal/facts/facts.go

    // analysis.Pass interface for use in analysis drivers such as "go vet"
    // and other build systems.
    //
    // The serial format is unspecified and may change, so the same version
    // of this package must be used for reading and writing serialized facts.
    //
    // The handling of facts in the analysis system parallels the handling
    // of type information in the compiler: during compilation of package P,
    // the compiler emits an export data file that describes the type of
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 12.1K bytes
    - Viewed (0)
Back to top