Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,936 for opus (0.11 sec)

  1. tensorflow/compiler/mlir/tfr/tests/ops.mlir

    // RUN: tfr-opt %s -verify-diagnostics -split-input-file | tfr-opt | FileCheck %s
    
    // Tests for types, ops with custom constraints, verifiers, printer or parser
    // methods.
    
    // CHECK-LABEL: tensor_type_noconstraint
    func.func private @tensor_type_noconstraint() -> !tfr.tensor
    
    // -----
    
    // CHECK-LABEL: tensor_type
    func.func private @tensor_type() -> !tfr.tensor<T>
    
    // -----
    
    // CHECK-LABEL: tensor_list_type_noconstraint
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jan 14 22:15:06 UTC 2023
    - 13.1K bytes
    - Viewed (0)
  2. CITATION.cff

    shared state, and the operations that mutate that state. It maps the nodes of a dataflow graph across many machines in a cluster, and within a machine across multiple computational devices, including multicore CPUs, general purpose GPUs, and custom-designed ASICs known as Tensor Processing Units (TPUs). This architecture gives flexibility to the application developer, whereas in previous “parameter server” designs the management of shared state is built into the system, TensorFlow enables developers to...
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Sep 06 15:26:23 UTC 2021
    - 3.5K bytes
    - Viewed (0)
  3. pkg/kubelet/cm/cpumanager/policy_none_test.go

    	policy := &nonePolicy{}
    
    	st := &mockState{
    		assignments:   state.ContainerCPUAssignments{},
    		defaultCPUSet: cpuset.New(cpuIDs...),
    	}
    
    	cpus := policy.GetAllocatableCPUs(st)
    	if cpus.Size() != 0 {
    		t.Errorf("NonePolicy GetAllocatableCPUs() error. expected empty set, returned: %v", cpus)
    	}
    }
    
    func TestNonePolicyOptions(t *testing.T) {
    	var err error
    
    	_, err = NewNonePolicy(nil)
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 03 16:26:09 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/clone_constants_for_better_clustering_test.cc

      Scope on_cpu = root.WithAssignedDevice(kCPU).WithDevice(kCPU);
    
      Output in0 = ops::Placeholder(on_gpu.WithOpName("in0"), DT_FLOAT);
      Output in1 = ops::Placeholder(on_gpu.WithOpName("in1"), DT_FLOAT);
    
      Output perm = ops::Const(on_cpu.WithOpName("perm"), {3, 1, 2, 0});
    
      {
        Output tr0 = ops::Transpose(on_gpu.WithOpName("tr0"), in0, perm);
        Output tr1 = ops::Transpose(on_gpu.WithOpName("tr1"), in1, perm);
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/ir/tfl_op_interfaces.td

      let description = [{
        Interface to verify TFLite runtime op verification.
    
        This verifies that the converted TFLite ops has operand/result type
        supported by the TFLite runtime.
      }];
    
      let methods = [
        StaticInterfaceMethod<
          [{Returns whether the op's operands/results are supported by runtime.}],
          "LogicalResult", "VerifyTflRuntimeConstraints",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  6. tensorflow/cc/gradients/README.md

          auto y = Identity(scope_, x);
          RunTest(x, shape, y, shape);
        }
        ```
    
    NOTE: There are some ops that require features from the C++ API that are not yet
    implemented.
    
    *   Ops that require PartialTensorShape information cannot yet be implemented.
    
    *   Ops that require SparseTensor or IndexSlices (currently only in python)
        cannot yet be implemented.
    
    *   Maybe more.
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Nov 29 19:12:55 UTC 2021
    - 2K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/tests/mlir2graphdef/functional-while-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
    - 3.5K bytes
    - Viewed (0)
  8. pkg/registry/networking/networkpolicy/strategy.go

    	opts := validation.ValidationOptionsForNetworking(obj.(*networking.NetworkPolicy), old.(*networking.NetworkPolicy))
    	validationErrorList := validation.ValidateNetworkPolicy(obj.(*networking.NetworkPolicy), opts)
    	updateErrorList := validation.ValidateNetworkPolicyUpdate(obj.(*networking.NetworkPolicy), old.(*networking.NetworkPolicy), opts)
    	return append(validationErrorList, updateErrorList...)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 18:19:25 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  9. cmd/update.go

    		}
    	}
    	uaAppend("; ", "")
    
    	if cpus, err := gopsutilcpu.Info(); err == nil && len(cpus) > 0 {
    		cpuMap := make(map[string]struct{}, len(cpus))
    		coreMap := make(map[string]struct{}, len(cpus))
    		for i := range cpus {
    			cpuMap[cpus[i].PhysicalID] = struct{}{}
    			coreMap[cpus[i].CoreID] = struct{}{}
    		}
    		cpu := cpus[0]
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/tests/tf-ops.mlir

    // RUN: tf-opt %s -split-input-file -verify-diagnostics | FileCheck %s
    
    // Tests for TensorFlow ops with custom verifiers.
    
    // TODO(hinsu): Remove tests for ops without custom verifiers. These tests were
    // added along with manual op definition and are obsolete now that the op
    // definitions are auto-generated.
    
    // TODO(hinsu): Move attribute and type tests to types.mlir file.
    //===--------------------------------------------------------------------===//
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 23 14:40:35 UTC 2023
    - 236.4K bytes
    - Viewed (0)
Back to top