Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,936 for opus (0.09 sec)

  1. tensorflow/c/eager/parallel_device/parallel_device_test.cc

      std::unique_ptr<TFE_ContextOptions, decltype(&TFE_DeleteContextOptions)> opts(
          TFE_NewContextOptions(), TFE_DeleteContextOptions);
      std::unique_ptr<TF_Buffer, decltype(&TF_DeleteBuffer)> config(
          TF_CreateConfig(
              /*enable_xla_compilation=*/false,
              /*gpu_memory_allow_growth=*/true, /*num_cpu_devices=*/2),
          TF_DeleteBuffer);
      TFE_ContextOptionsSetConfig(opts.get(), config->data, config->length,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 08 23:47:35 UTC 2021
    - 29.3K bytes
    - Viewed (0)
  2. tensorflow/cc/framework/scope.h

      /// Return a new scope. All ops created within the returned scope will have no
      /// control dependencies on other operations.
      Scope WithNoControlDependencies() const;
    
      /// Return a new scope. All ops created within the returned scope will have
      /// the device field set to 'device'.
      Scope WithDevice(const string& device) const;
    
      /// Returns a new scope.  All ops created within the returned scope will have
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 13 09:08:33 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  3. pkg/kubelet/cm/cpumanager/policy_static_test.go

    			if testCase.expectedError {
    				return
    			}
    
    			if !reflect.DeepEqual(opts, testCase.expectedValue) {
    				t.Fatalf("value mismatch with args %v expected value %v got %v",
    					testCase.policyOptions, testCase.expectedValue, opts)
    			}
    		})
    	}
    }
    
    func newCPUSetPtr(cpus ...int) *cpuset.CPUSet {
    	ret := cpuset.New(cpus...)
    	return &ret
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 40.8K bytes
    - Viewed (0)
  4. pkg/registry/flowcontrol/ensurer/strategy.go

    type client[ObjectType configurationObject] interface {
    	Create(ctx context.Context, obj ObjectType, opts metav1.CreateOptions) (ObjectType, error)
    	Update(ctx context.Context, obj ObjectType, opts metav1.UpdateOptions) (ObjectType, error)
    	Delete(ctx context.Context, name string, opts metav1.DeleteOptions) error
    }
    
    // cache is the needed fragment of the typed generated access ("lister") to an informer's local cache
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:40 UTC 2023
    - 14K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tf2xla/internal/passes/tpu_cluster_formation.cc

    //   2. Find users not in cluster that are interleaved between cluster ops.
    //   3. Find external uses of cluster ops.
    //   4. Create `tf_device.cluster` with results consisting of the external uses
    //      of cluster ops determined at 3.
    //   5. Move cluster ops to `tf_device.cluster` body.
    //   6. Replace external uses of cluster ops uses with `tf_device.cluster`
    //      results.
    //   7. Move users from 2 to after the `tf_device.cluster`.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 22:03:30 UTC 2024
    - 39.3K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/transforms/dilated_conv.h

          !TFL::TFTypeIsBFloat16OrHalfTensor(op.getInput())) {
        return rewriter.notifyMatchFailure(
            op, "op's input is not float or half or bfloat16");
      }
      if (!TFL::TFDataFormatIsNHWC(op)) {
        return rewriter.notifyMatchFailure(op, "op's data format isn't NHWC");
      }
    
      // Allow dynamic width and height dimensions only.
      auto result_ty = mlir::cast<TensorType>(op.getResult().getType());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 20K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/utils/cluster_util.cc

    namespace {
    
    // Exhaust search in the block to get all the ops that have data dependency of
    // the cluster.
    llvm::SetVector<Operation*> GetAllOpsDependOnCluster(
        const Cluster& c,
        const llvm::DenseMap<Operation*, Cluster*>& op_to_cluster_map) {
      llvm::SetVector<Operation*> ops_depend_on_cluster;
      for (Operation& op : *c.ops.front()->getBlock()) {
        if (op.isBeforeInBlock(c.ops.front()) || c.ops.contains(&op)) {
          continue;
        }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jul 28 00:32:55 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  8. tensorflow/c/eager/parallel_device/parallel_device_lib_test.cc

      std::unique_ptr<TFE_ContextOptions, decltype(&TFE_DeleteContextOptions)> opts(
          TFE_NewContextOptions(), TFE_DeleteContextOptions);
      std::unique_ptr<TF_Buffer, decltype(&TF_DeleteBuffer)> config(
          TF_CreateConfig(
              /*xla*/ false,
              /* gpu_memory_allow_growth */ true, /* num_cpu_devices */
              2),
          TF_DeleteBuffer);
      TFE_ContextOptionsSetConfig(opts.get(), config->data, config->length,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 08 23:47:35 UTC 2021
    - 15.3K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/check_control_dependencies.cc

    // grouping control dependencies. We don't want to report warnings for these
    // ops, unless they belong to a control path between two side-effecting ops that
    // should not have any dependencies.
    bool IsIntermediateOp(IslandOp island) {
      // These two side-effect-free ops are known to be used for control dependency
      // grouping (e.g., in `BreakUpIslands` pass).
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Oct 05 23:50:19 UTC 2022
    - 10.2K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/tests/mlir2graphdef/functional-if-ops.mlir

    Tres Popp <******@****.***> 1648211118 -0700
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 25 12:28:56 UTC 2022
    - 2.5K bytes
    - Viewed (0)
Back to top