Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for TestNop (0.14 sec)

  1. tensorflow/compiler/mlir/quantization/tensorflow/passes/propagate_quantize_type.cc

    };
    
    // Propagate dequantize op if the next op supports the data type.
    // Given the below graph,
    // op_before_dequantize -> dequantize_op -> user_op -> rest_op
    // the transformation is applied to result the following graph:
    // op_before_dequantize -> user_op -> new_dequantize_op -> rest_op
    class PropagateDequantizeOpIfAllowed
        : public OpRewritePattern<TF::PartitionedCallOp> {
     public:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 7K bytes
    - Viewed (0)
  2. tensorflow/cc/BUILD

            "//tensorflow/core:lib_internal",
            "//tensorflow/core:tensorflow",
            "//tensorflow/core:testlib",
        ],
    )
    
    tf_gen_op_wrappers_cc(
        name = "test_op",
        op_lib_names = [
            "test_op",
        ],
    )
    
    cc_library(
        name = "queue_runner",
        srcs = ["training/queue_runner.cc"],
        hdrs = ["training/queue_runner.h"],
        deps = [
            ":coordinator",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 27 18:00:18 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/experimental/tac/transforms/tac_filter.cc

              function_name_pattern: "testFunctionInclude"
              filter_type: INCLUDE_TARGET_ANNOTATION
            }
          }
          tac_filters {
            op_filter {
              op_name_pattern: "^test_op"
            }
          }
        )",
                                            &test_tac_filters);
        tac_filters_ = &test_tac_filters;
      }
    
      if (!tac_filters_) {
        return;
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  4. tensorflow/c/BUILD

        ],
    )
    
    tf_custom_op_library(
        name = "test_op1.so",
        srcs = ["test_op1.cc"],
    )
    
    tf_kernel_library(
        name = "test_op_kernel",
        srcs = ["test_op.cc"],
        deps = [
            "//tensorflow/core:framework",
            "//tensorflow/core:lib",
        ],
        alwayslink = 1,
    )
    
    tf_cuda_cc_test(
        name = "env_test",
        size = "medium",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 27 18:00:18 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  5. pkg/scheduler/internal/queue/scheduling_queue_test.go

    	p, err := q.Pop(logger)
    	if err != nil {
    		t.Fatalf("Pop failed: %v", err)
    	}
    	if p.Pod.UID != pod.UID {
    		t.Errorf("Unexpected popped pod: %v", p)
    	}
    	return p
    }
    
    func TestPop(t *testing.T) {
    	pod := st.MakePod().Name("targetpod").UID("pod1").Obj()
    	queueingHintMap := QueueingHintMapPerProfile{
    		"": {
    			PvAdd: {
    				{
    					// The hint fn tells that this event makes a Pod scheudlable.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 146.9K bytes
    - Viewed (0)
Back to top