Search Options

Results per page
Sort
Preferred Languages
Advance

Results 171 - 180 of 4,605 for expectGet (1.54 sec)

  1. tensorflow/cc/framework/gradients_test.cc

      ClientSession session(scope_test_);
      std::vector<Tensor> grad_result;
      TF_EXPECT_OK(session.Run({{x, {3.0f}}}, grad_outputs, &grad_result));
      EXPECT_EQ(grad_result.size(), 1);
      EXPECT_EQ(grad_result[0].NumElements(), 1);
      EXPECT_EQ(grad_result[0].flat<float>()(0), 17502.0f);
    }
    
    TEST_F(GradientsTest, MultiOutputNodeDependentOutputs) {
      auto x = Placeholder(scope_test_, DT_FLOAT);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 15 15:13:38 UTC 2023
    - 25K bytes
    - Viewed (0)
  2. tensorflow/c/c_api_function_test.cc

      ASSERT_EQ(func_->record->fdef().signature().attr().size(), 2);
      EXPECT_EQ(func_->record->fdef().signature().attr(0).name(), "v1");
      EXPECT_EQ(func_->record->fdef().signature().attr(0).type(), "int");
      EXPECT_EQ(func_->record->fdef().signature().attr(1).name(), "v2");
      EXPECT_EQ(func_->record->fdef().signature().attr(1).type(), "int");
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 20 22:08:54 UTC 2023
    - 63.6K bytes
    - Viewed (0)
  3. pkg/apis/policy/v1beta1/conversion_test.go

    				}
    				if !strings.Contains(err.Error(), tc.ExpectErr) {
    					t.Fatalf("expected error %s, got %v", tc.ExpectErr, err)
    				}
    				return
    			}
    			if len(tc.ExpectErr) > 0 {
    				t.Fatalf("expected error %s, got none", tc.ExpectErr)
    			}
    			if !reflect.DeepEqual(tc.Out, tc.ExpectOut) {
    				t.Fatalf("unexpected result:\n %s", cmp.Diff(tc.ExpectOut, tc.Out))
    			}
    		})
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 09 15:29:11 UTC 2021
    - 5.1K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/xla_activity_listener_test.cc

      }
    
      EXPECT_EQ(listener()->jit_compilation_activity().cluster_name(), "cluster_0");
      EXPECT_EQ(listener()->jit_compilation_activity().compile_count(), 2);
    
      EXPECT_GT(listener()->jit_compilation_activity().compile_time_us(), 0);
      EXPECT_EQ(listener()->jit_compilation_activity().cumulative_compile_time_us(),
                first_compile_time +
                    listener()->jit_compilation_activity().compile_time_us());
    }
    
    }  // namespace
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  5. operator/pkg/object/objects_test.go

    		},
    		{
    			name:        "space in the end of the manifest",
    			input:       "well-formed-with-space",
    			expectCount: 1,
    			expectOut:   true,
    		},
    		{
    			name:        "some random comments",
    			input:       "well-formed-with-comments",
    			expectCount: 1,
    			expectOut:   true,
    		},
    		{
    			name:        "invalid k8s object - missing kind",
    			input:       "invalid",
    			failOnError: true,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Sep 21 07:16:46 UTC 2023
    - 18.4K bytes
    - Viewed (0)
  6. tensorflow/compiler/aot/tests/tfcompile_test.cc

      EXPECT_TRUE(add.Run());
      EXPECT_EQ(add.error_msg(), "");
      EXPECT_EQ(add.result0(), 579);
      EXPECT_EQ(add.result0_data()[0], 579);
      EXPECT_EQ(add.result0_data(), add.results()[0]);
    
      const AddComp& add_const = add;
      EXPECT_EQ(add_const.error_msg(), "");
      EXPECT_EQ(add_const.arg0(), 123);
      EXPECT_EQ(add_const.arg0_data()[0], 123);
      EXPECT_EQ(add_const.arg0_data(), add.arg_data(0));
      EXPECT_EQ(add_const.arg1(), 456);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 26.4K bytes
    - Viewed (0)
  7. tensorflow/cc/gradients/data_flow_grad_test.cc

        TF_ASSERT_OK(scope_.status());
        float max_error;
        TF_ASSERT_OK((ComputeGradientError<float, float, float>(
            scope_, xs, x_shapes, ys, y_shapes, &max_error)));
        EXPECT_LT(max_error, 1e-4);
      }
    
      Scope scope_;
    };
    
    TEST_F(DataFlowGradTest, DynamicPartitionGrad) {
      TensorShape data_shape({2, 3, 2});
      auto data = Placeholder(scope_, DT_FLOAT, Placeholder::Shape(data_shape));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jan 02 18:49:13 UTC 2018
    - 2.6K bytes
    - Viewed (0)
  8. security/pkg/nodeagent/sds/sdsservice_test.go

    		s.Verify(s.Connect().RequestResponseAck(t, &discovery.DiscoveryRequest{ResourceNames: []string{testResourceName}}), expectCert)
    	})
    	t.Run("unsubscribe", func(t *testing.T) {
    		s := setupSDS(t)
    		c := s.Connect()
    		res := c.RequestResponseAck(t, &discovery.DiscoveryRequest{ResourceNames: []string{testResourceName}})
    		s.Verify(res, expectCert)
    		c.Request(t, &discovery.DiscoveryRequest{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 17 20:12:58 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  9. tensorflow/compiler/jit/shape_inference_test.cc

                               &shape_info));
      auto iter = shape_info.find("sink");
      EXPECT_NE(iter, shape_info.end());
      EXPECT_EQ(iter->second.size(), 1);
      EXPECT_EQ(iter->second.at(0).handle_type, DT_FLOAT);
      TensorShape resource_shape;
      EXPECT_TRUE(iter->second.at(0).handle_shape.AsTensorShape(&resource_shape));
      EXPECT_EQ(resource_shape, TensorShape({2, 3}));
    }
    
    }  // namespace
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 00:41:19 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest-death-test.h

    //   // Only asserts in dbg.
    //   EXPECT_DEBUG_DEATH(DieInDebugOr12(&sideeffect), "death");
    //
    // #ifdef NDEBUG
    //   // opt-mode has sideeffect visible.
    //   EXPECT_EQ(12, sideeffect);
    // #else
    //   // dbg-mode no visible sideeffect.
    //   EXPECT_EQ(0, sideeffect);
    // #endif
    // }
    //
    // This will assert that DieInDebugReturn12InOpt() crashes in debug
    // mode, usually due to a DCHECK or LOG(DFATAL), but returns the
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 11.3K bytes
    - Viewed (0)
Back to top