Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,648 for computeLO (0.29 sec)

  1. src/math/fma.go

    		shift := uint(bits.LeadingZeros64(mantissa) - 11)
    		mantissa <<= shift
    		exp = 1 - int32(shift)
    	} else {
    		// Add implicit 1 bit
    		mantissa |= 1 << 52
    	}
    	return
    }
    
    // FMA returns x * y + z, computed with only one rounding.
    // (That is, FMA returns the fused multiply-add of x, y, and z.)
    func FMA(x, y, z float64) float64 {
    	bx, by, bz := Float64bits(x), Float64bits(y), Float64bits(z)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 05 22:05:30 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  2. tensorflow/c/experimental/gradients/custom_gradient_test.cc

        grad_inputs[0] = grad_outputs[0];
        if (grad_inputs[0]) {
          grad_inputs[0]->Ref();
        }
        return absl::OkStatus();
      }
    };
    
    // Computes:
    //
    // @tf.custom_gradient
    // def f(input):
    //   def grad(grads):
    //     return grads[0]
    //   return tf.exp(input), grad
    // outputs = [f(inputs[0])]
    Status ExpWithPassThroughGrad(AbstractContext* ctx,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 28 13:53:47 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  3. pilot/pkg/model/push_context.go

    				// We have already computed the scope for this namespace, just return it.
    				return sc
    			}
    			// We need to compute this namespace
    			computed := convertToSidecarScope(ps, ps.sidecarIndex.meshRootSidecarConfig, proxy.ConfigNamespace)
    			ps.sidecarIndex.meshRootSidecarsByNamespace[proxy.ConfigNamespace] = computed
    			return computed
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 91.8K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/cel/common/maplist.go

    	case bool, float64, int64, string:
    		return v, true
    	default:
    		return nil, false // non-scalar
    	}
    }
    
    // multiKeyStrategy computes a composite key of all key values.
    type multiKeyStrategy struct {
    	sts Schema
    }
    
    // CompositeKeyFor returns a composite key computed from the values of all
    // keys.
    func (ks *multiKeyStrategy) CompositeKeyFor(obj map[string]interface{}) (interface{}, bool) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 07 02:56:51 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/experimental/common/outline_operations.h

    namespace mlir {
    namespace TFL {
    namespace common {
    
    // Returns true if the `op` is a constant-like op or produces none type.
    bool IsConstantOrNone(Operation* op);
    
    // Computes the list of Value(s) referenced by Subgraph Operations that are
    // not defined within the Subgraph. Any such Value(s)
    // are validly in-scope for the initial Operation. They must be either
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Nov 17 18:49:43 UTC 2022
    - 6K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/tools/internal/facts/imports.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package facts
    
    import (
    	"go/types"
    
    	"golang.org/x/tools/internal/aliases"
    )
    
    // importMap computes the import map for a package by traversing the
    // entire exported API each of its imports.
    //
    // This is a workaround for the fact that we cannot access the map used
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  7. tensorflow/compiler/jit/device_compilation_cluster_signature.cc

        return true;
      }
      bool operator()(const TensorTypeAndShape& arg, const Tensor& other) {
        return true;
      }
    };
    
    // Functor that incrementally computes a Signature's hash given its current hash
    // and one of its args.
    struct SignatureHashCombiner {
      explicit SignatureHashCombiner(const uint64 h) : h(h) {}
      uint64 h;
      uint64 operator()(const Tensor& arg) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 06:59:07 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  8. src/crypto/tls/key_schedule.go

    		// impossible for this to panic, and routing errors back through the
    		// tree rooted in this function is quite painful. The labels are fixed
    		// size, and the context is either a fixed-length computed hash, or
    		// parsed from a field which has the same length limitation. As such, an
    		// error here is likely to only be caused during development.
    		//
    		// NOTE: another reasonable approach here might be to return a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 14:56:25 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/repositories/resolver/IvyResourcePatternTest.groovy

            "group"     | "projectA" | 'prefix/group-projectA/[revision]/ivys/[revision]/ivy.xml'
            "org.group" | "projectA" | 'prefix/org.group-projectA/[revision]/ivys/[revision]/ivy.xml'
        }
    
        def "computes module version path"() {
            def ivyPattern = new IvyResourcePattern(pattern)
            def moduleId = DefaultModuleComponentIdentifier.newId(DefaultModuleIdentifier.newId(group, module), version)
    
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 02 17:19:47 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/types2/typeset.go

    	}
    
    	// If the interface is not fully set up yet, the type set will
    	// not be complete, which may lead to errors when using the
    	// type set (e.g. missing method). Don't compute a partial type
    	// set (and don't store it!), so that we still compute the full
    	// type set eventually. Instead, return the top type set and
    	// let any follow-on errors play out.
    	//
    	// TODO(gri) Consider recording when this happens and reporting
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 13.6K bytes
    - Viewed (0)
Back to top