Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 79 for computations (0.18 sec)

  1. tensorflow/compiler/jit/xla_launch_util.cc

      se::Stream* stream =
          ctx->op_device_context() ? ctx->op_device_context()->stream() : nullptr;
      Allocator* allocator = ctx->device()->GetAllocator({});
    
      // Computation output should always be a tuple.
      VLOG(2) << "Result tuple shape: " << output.on_host_shape().DebugString();
      VLOG(2) << "Result tuple shape (on device): "
              << output.on_device_shape().DebugString();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 00:36:08 UTC 2024
    - 40.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/kernels/xla_ops.cc

        std::vector<xla::ExecutionInput> execution_inputs,
        xla::ExecutableRunOptions run_options, xla::LocalExecutable* executable,
        OpKernelContext* ctx, se::DeviceMemoryAllocator* allocator) {
      VLOG(2) << "Executing Xla Computation.";
      Env* env = Env::Default();
      auto start_time = env->NowMicros();
    
      se::Stream* stream = GetStream(ctx);
      run_options.set_stream(GetStream(ctx));
      run_options.set_allocator(allocator);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 22:46:36 UTC 2024
    - 41.4K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types2/subst.go

    			}
    		}
    
    	case *Union:
    		terms, copied := subst.termlist(t.terms)
    		if copied {
    			// term list substitution may introduce duplicate terms (unlikely but possible).
    			// This is ok; lazy type set computation will determine the actual type set
    			// in normal form.
    			return &Union{terms}
    		}
    
    	case *Interface:
    		methods, mcopied := subst.funcList(t.methods)
    		embeddeds, ecopied := subst.typeList(t.embeddeds)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:04:07 UTC 2024
    - 11K bytes
    - Viewed (0)
  4. src/go/types/subst.go

    			}
    		}
    
    	case *Union:
    		terms, copied := subst.termlist(t.terms)
    		if copied {
    			// term list substitution may introduce duplicate terms (unlikely but possible).
    			// This is ok; lazy type set computation will determine the actual type set
    			// in normal form.
    			return &Union{terms}
    		}
    
    	case *Interface:
    		methods, mcopied := subst.funcList(t.methods)
    		embeddeds, ecopied := subst.typeList(t.embeddeds)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:04:07 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/schema/schema_v3b.fbs

      // Internal tensors are those that do not flow in or out of the operation,
      // but instead are part of internal computation. As such, the operation's
      // implementation may manage its memory more efficiently. They are needed
      // however (i.e. not just an implementation detail) since they are part of the
      // computation, which may require relevant metadata such as quantization
      // parameters.
      intermediates:[int];
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 14:28:27 UTC 2024
    - 30K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/lower_tf.td

    //
    // Computing gradient of the loss with respect to features gives us,
    //
    //  backprop = (Exp(features) / Sum(Exp(features))) - labels
    //  backprop = Softmax(features) - labels
    //
    // Computation of the reduction axis for the Sum op depends on whether the
    // input is a scalar or not. Restrict pattern to ranked inputs so that input to
    // the Sum op is also ranked.
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 04 13:30:42 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/flowcontrol/v1/types.go

    //   - How are requests for this priority level limited?
    //   - What should be done with requests that exceed the limit?
    type LimitedPriorityLevelConfiguration struct {
    	// `nominalConcurrencyShares` (NCS) contributes to the computation of the
    	// NominalConcurrencyLimit (NominalCL) of this level.
    	// This is the number of execution seats available at this priority level.
    	// This is used both for requests dispatched from this priority level
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  8. pkg/kube/inject/inject_test.go

    		for i, c := range cases {
    			if c.setFlags != nil || c.inFilePath != "" {
    				writeInjectionSettings(t, fmt.Sprintf("%s.%d", c.in, i), c.setFlags, c.inFilePath)
    			}
    		}
    	}
    	// Preload default settings. Computation here is expensive, so this speeds the tests up substantially
    	defaultTemplate, defaultValues, defaultMesh := readInjectionSettings(t, "default")
    	for i, c := range cases {
    		i, c := i, c
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 20:35:11 UTC 2024
    - 34.1K bytes
    - Viewed (0)
  9. tensorflow/compiler/aot/tfcompile.bzl

        Given an invocation of tf_library(name="foo", ...), generates the following
        build targets:
          foo:           A cc_library containing the generated header and
                          computation.
          foo_test:      A cc_test with simple tests and benchmarks. Only created if
                          gen_test=True.
          foo_benchmark: A cc_binary that runs a minimal-dependency benchmark,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 19:18:08 UTC 2024
    - 21.8K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/tools/go/types/typeutil/map.go

    //
    // A single Hasher created by MakeHasher() may be shared among many
    // Maps.  This is recommended if the instances have many keys in
    // common, as it will amortize the cost of hash computation.
    //
    // A Hasher may grow without bound as new types are seen.  Even when a
    // type is deleted from the map, the Hasher never shrinks, since other
    // types in the map may reference the deleted type indirectly.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 13.9K bytes
    - Viewed (0)
Back to top