Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 14 of 14 for TestNop (0.12 sec)

  1. 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)
  2. tensorflow/cc/framework/cc_ops_test.cc

    #include <string>
    
    #include "tensorflow/cc/client/client_session.h"
    #include "tensorflow/cc/framework/testutil.h"
    #include "tensorflow/cc/ops/standard_ops.h"
    #include "tensorflow/cc/ops/test_op.h"
    #include "tensorflow/core/framework/node_def_util.h"
    #include "tensorflow/core/framework/tensor_testutil.h"
    #include "tensorflow/core/lib/core/status_test_util.h"
    
    namespace tensorflow {
    namespace ops {
    namespace {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 15 15:13:38 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  3. 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)
  4. 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