Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,936 for opus (0.04 sec)

  1. pkg/kubelet/cm/cpumanager/policy_options.go

    	opts := StaticPolicyOptions{}
    	for name, value := range policyOptions {
    		if err := CheckPolicyOptionAvailable(name); err != nil {
    			return opts, err
    		}
    
    		switch name {
    		case FullPCPUsOnlyOption:
    			optValue, err := strconv.ParseBool(value)
    			if err != nil {
    				return opts, fmt.Errorf("bad value for option %q: %w", name, err)
    			}
    			opts.FullPhysicalCPUsOnly = optValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 27 13:02:15 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/tests/graphdef2mlir/functional-while-ops.pbtxt

    # Verify that TensorFlow While and StatelessWhile ops are mapped to the
    # composite While op in MLIR with is_stateless attribute set accordingly to
    # distinguish between them.
    
    # CHECK-DAG: "tf.While"{{.*}} is_stateless = false{{.*}} loc(fused["While:", "StatefulWhile"])
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Nov 15 19:42:47 UTC 2021
    - 5.5K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/tests/raise-custom-ops.mlir

    // RUN: tf-opt -tfl-raise-custom-ops -canonicalize %s --split-input-file | FileCheck %s
    // RUN: tf-opt -tfl-raise-custom-ops="test-raise-tf-targets=tf.FakeQuantWithMinMaxVarsPerChannel" -canonicalize %s --split-input-file | FileCheck --check-prefix=WRAPPED %s
    
    // CHECK-LABEL: custom_op
    func.func @custom_op(%arg0: tensor<4xf32>) -> tensor<4xf32> {
      %0 = "arith.constant" () {value = dense<1.0> : tensor<4xf32>} : () -> tensor<4xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 4K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/cluster_scoping_pass_test.cc

        Node* unstage = ops::SourceOp(
            "Unstage",
            builder.opts().WithName("unstage").WithAttr("dtypes", {DT_FLOAT}));
    
        Node* add0 = ops::BinaryOp("Add", a, b, builder.opts().WithName("add0"));
        Node* add1 =
            ops::BinaryOp("Add", unstage, b, builder.opts().WithName("add1"));
        Node* relu0 = ops::UnaryOp("Relu", add0, builder.opts().WithName("relu0"));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 29 16:20:48 UTC 2020
    - 6.7K bytes
    - Viewed (0)
  5. tensorflow/compiler/jit/partially_decluster_pass_test.cc

    #include "absl/memory/memory.h"
    #include "tensorflow/cc/framework/ops.h"
    #include "tensorflow/cc/ops/array_ops.h"
    #include "tensorflow/cc/ops/const_op.h"
    #include "tensorflow/cc/ops/control_flow_ops_internal.h"
    #include "tensorflow/cc/ops/function_ops.h"
    #include "tensorflow/cc/ops/sendrecv_ops.h"
    #include "tensorflow/cc/ops/standard_ops.h"
    #include "tensorflow/compiler/jit/defs.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jun 10 12:32:39 UTC 2022
    - 23K bytes
    - Viewed (0)
  6. tensorflow/compiler/jit/compilability_check_util_test.cc

    TEST_F(CompilabilityCheckUtilTest, CheckNonFunctionalNodes) {
      GraphDefBuilder builder(GraphDefBuilder::kFailImmediately);
      auto opts = builder.opts();
      Node* const0 = ops::SourceOp("InputFloatOp", opts);
      Node* compilable_op = ops::UnaryOp("CompilableOp", const0, opts);
      Node* uncompilable_op = ops::UnaryOp("MissingKernel", compilable_op, opts);
      GraphDef graph_def;
      TF_EXPECT_OK(builder.ToGraphDef(&graph_def));
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jun 10 12:32:39 UTC 2022
    - 22.3K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/tests/graphdef2mlir/functional-if-ops.pbtxt

    # Verify that TensorFlow If and StatelessIf ops are mapped to the
    # composite If op in MLIR with is_stateless attribute set accordingly to
    # distinguish between them.
    
    # CHECK-DAG: "tf.If"{{.*}} is_stateless = false{{.*}} loc(fused["If:", "StatefulIf"])
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Nov 15 19:42:47 UTC 2021
    - 3.9K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/python/mlir_wrapper/ops.cc

                 state.addTypes(mlir::ArrayRef<mlir::Type>(tys));
               })
          .def("addOperands",
               [](mlir::OperationState& os, std::vector<mlir::Value> ops) {
                 os.addOperands(mlir::ArrayRef<mlir::Value>(ops));
               })
          .def("addRegion", py::overload_cast<>(&mlir::OperationState::addRegion),
               py::return_value_policy::reference);
    
      py::class_<mlir::ModuleOp>(m, "ModuleOp")
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 30 02:12:49 UTC 2022
    - 7.6K bytes
    - Viewed (0)
  9. tensorflow/c/ops.cc

    See the License for the specific language governing permissions and
    limitations under the License.
    ==============================================================================*/
    
    #include "tensorflow/c/ops.h"
    
    #include "tensorflow/c/tf_status_helper.h"
    #include "tensorflow/core/framework/common_shape_fns.h"
    #include "tensorflow/core/framework/op.h"
    #include "tensorflow/core/framework/op_def_builder.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 28 22:41:35 UTC 2022
    - 10.9K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/tests/ops.mlir

    // RUN: tf-opt -split-input-file -verify-diagnostics -tfl-runtime-verify %s | FileCheck %s
    
    // Unary math ops
    // -----
    
    // CHECK-LABEL: testCos
    func.func @testCos(tensor<? x f32>) -> tensor<? x f32> {
    ^bb0(%arg0: tensor<? x f32>):
      // CHECK: "tfl.cos"(%arg0)
      %0 = "tfl.cos"(%arg0): (tensor<? x f32>) -> tensor<? x f32>
      func.return %0 : tensor<? x f32>
    }
    
    // -----
    
    // test invalid Cos input
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 189.2K bytes
    - Viewed (0)
Back to top