Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 132 for numeric (0.45 sec)

  1. tensorflow/compiler/mlir/lite/quantization/ir/QuantOps.cc

    limitations under the License.
    ==============================================================================*/
    
    #include "tensorflow/compiler/mlir/lite/quantization/ir/QuantOps.h"
    
    #include <numeric>
    
    #include "llvm/ADT/StringRef.h"
    #include "llvm/ADT/Twine.h"
    #include "llvm/Support/MathExtras.h"
    #include "mlir/Dialect/Quant/QuantTypes.h"  // from @llvm-project
    #include "mlir/IR/BuiltinTypes.h"  // from @llvm-project
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  2. src/time/format.go

    	stdNumTZ                                       // "-0700"  // always numeric
    	stdNumSecondsTz                                // "-070000"
    	stdNumShortTZ                                  // "-07"    // always numeric
    	stdNumColonTZ                                  // "-07:00" // always numeric
    	stdNumColonSecondsTZ                           // "-07:00:00"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:28 UTC 2024
    - 49.3K bytes
    - Viewed (0)
  3. platforms/core-configuration/graph-serialization/src/main/kotlin/org/gradle/internal/serialize/graph/package-info.java

     * <p>
     *  Each single {@link org.gradle.internal.serialize.graph.codecs.Binding binding} comprises:
     *  <ul>
     *     <li>a tag (a unique numeric identifier that represents the type the binding supports)
     *     <li>the {@link org.gradle.internal.serialize.graph.EncodingProvider encoding provider} {@link org.gradle.internal.serialize.graph.EncodingProvider producer}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  4. samples/bookinfo/src/details/details.rb

    server.mount_proc '/details' do |req, res|
        pathParts = req.path.split('/')
        headers = get_forward_headers(req)
    
        begin
            begin
              id = Integer(pathParts[-1])
            rescue
              raise 'please provide numeric product id'
            end
            details = get_book_details(id, headers)
            res.body = details.to_json
            res['Content-Type'] = 'application/json'
        rescue => error
            res.body = {'error' => error}.to_json
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 10 14:35:54 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  5. src/cmd/vendor/github.com/google/pprof/internal/graph/graph.go

    	LabelTags TagMap
    
    	// NumericTags provide additional values for subsets of a sample.
    	// Numeric tags are optionally associated to a label tag. The key
    	// for NumericTags is the name of the LabelTag they are associated
    	// to, or "" for numeric tags not associated to a label tag.
    	NumericTags map[string]TagMap
    }
    
    // FlatValue returns the exclusive value for this node, computing the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 31K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/set_tpu_infeed_layout.cc

    limitations under the License.
    ==============================================================================*/
    
    #include "tensorflow/compiler/mlir/tensorflow/transforms/set_tpu_infeed_layout.h"
    
    #include <algorithm>
    #include <numeric>
    #include <vector>
    
    #include "mlir/Dialect/Func/IR/FuncOps.h"  // from @llvm-project
    #include "mlir/IR/Attributes.h"  // from @llvm-project
    #include "mlir/IR/Builders.h"  // from @llvm-project
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/common/quantization_lib/quantization_utils.h

    // Used in TFL Numeric Verify
    struct NumericVerifySpec {
      // Whether to enable numeric verification
      bool verify_numeric = false;
    
      // Tolerance level from the quantized value for verification. If the tolerance
      // is very small(<0.1), only the stats of the diff is displayed.
      float error_tolerance = 5.0f;
    
      // Whether to verify numerical correctness layer by layer or by whole model
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 20:30:06 UTC 2024
    - 41.7K bytes
    - Viewed (0)
  8. tensorflow/compiler/jit/device_util.h

    #ifndef TENSORFLOW_COMPILER_JIT_DEVICE_UTIL_H_
    #define TENSORFLOW_COMPILER_JIT_DEVICE_UTIL_H_
    
    #include <functional>
    #include <memory>
    
    #include "absl/container/flat_hash_map.h"
    #include "absl/numeric/bits.h"
    #include "absl/strings/string_view.h"
    #include "absl/types/span.h"
    #include "tensorflow/compiler/tf2xla/xla_op_registry.h"
    #include "xla/status_macros.h"
    #include "xla/statusor.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 17:18:31 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  9. pkg/proxy/util/utils.go

    	}
    
    	// Append port to address.
    	if ip.To4() != nil {
    		return fmt.Sprintf("%s:%d", addr, port)
    	}
    	return fmt.Sprintf("[%s]:%d", addr, port)
    }
    
    // EnsureSysctl sets a kernel sysctl to a given numeric value.
    func EnsureSysctl(sysctl utilsysctl.Interface, name string, newVal int) error {
    	if oldVal, _ := sysctl.GetSysctl(name); oldVal != newVal {
    		if err := sysctl.SetSysctl(name, newVal); err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 20 11:57:43 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  10. src/go/types/predicates.go

    }
    
    // isUntypedNumeric reports whether t is an untyped numeric type.
    // Safe to call from types that are not fully set up.
    func isUntypedNumeric(t Type) bool {
    	// Alias and named types cannot denote untyped types
    	// so there's no need to call Unalias or under, below.
    	b, _ := t.(*Basic)
    	return b != nil && b.info&IsUntyped != 0 && b.info&IsNumeric != 0
    }
    
    // IsInterface reports whether t is an interface type.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 17.6K bytes
    - Viewed (0)
Back to top