Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 78 for ifndef (0.16 sec)

  1. tensorflow/c/c_api.h

    // Represents a specific input of an operation.
    typedef struct TF_Input {
      TF_Operation* oper;
      int index;  // The index of the input within oper.
    } TF_Input;
    
    // Represents a specific output of an operation.
    typedef struct TF_Output {
      TF_Operation* oper;
      int index;  // The index of the output within oper.
    } TF_Output;
    
    // TF_Function is a grouping of operations with defined inputs and outputs.
    Registered: Tue Nov 05 12:39:12 UTC 2024
    - Last Modified: Thu Oct 26 21:08:15 UTC 2023
    - 82.3K bytes
    - Viewed (0)
  2. tensorflow/c/eager/c_api_test.cc

      if (use_tfrt) {
        TF_Buffer* buf = TF_NewBuffer();
        TFE_GetExecutedOpNames(ctx, buf, status);
        ASSERT_EQ(TF_OK, TF_GetCode(status)) << TF_Message(status);
    #ifndef NDEBUG
        if (enable_grappler)
          EXPECT_NE(strstr(static_cast<const char*>(buf->data), "tf.Mul"), nullptr);
        else
          EXPECT_NE(strstr(static_cast<const char*>(buf->data), "tf.Add"), nullptr);
    #endif
    Registered: Tue Nov 05 12:39:12 UTC 2024
    - Last Modified: Thu Aug 03 20:50:20 UTC 2023
    - 94.6K bytes
    - Viewed (0)
  3. docs/en/docs/img/index/index-02-redoc-simple.png

    index-02-redoc-simple.png...
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Thu Mar 26 19:09:53 UTC 2020
    - 66.9K bytes
    - Viewed (0)
  4. docs/en/docs/img/index/index-05-swagger-04.png

    index-05-swagger-04.png...
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Thu Mar 26 19:09:53 UTC 2020
    - 69.8K bytes
    - Viewed (0)
  5. docs/en/docs/img/index/index-04-swagger-03.png

    index-04-swagger-03.png...
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Thu Mar 26 19:09:53 UTC 2020
    - 66K bytes
    - Viewed (0)
  6. docs/en/docs/img/index/index-03-swagger-02.png

    index-03-swagger-02.png...
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Thu Mar 26 19:09:53 UTC 2020
    - 73.3K bytes
    - Viewed (0)
  7. docs/en/docs/img/index/index-06-redoc-02.png

    index-06-redoc-02.png...
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Thu Mar 26 19:09:53 UTC 2020
    - 77K bytes
    - Viewed (0)
  8. docs/en/docs/img/index/index-01-swagger-ui-simple.png

    index-01-swagger-ui-simple.png...
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Thu Mar 26 19:09:53 UTC 2020
    - 72.4K bytes
    - Viewed (0)
  9. index.yaml

    Yannis Mazzer <******@****.***> 1728649265 +0000
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Fri Oct 11 12:21:05 UTC 2024
    - 54.5K bytes
    - Viewed (0)
  10. cmd/erasure-object.go

    			fi := metadata[index]
    			// Assign index when index is initialized
    			if fi.Erasure.Index == 0 {
    				fi.Erasure.Index = index + 1
    			}
    
    			if !fi.IsValid() {
    				return errFileCorrupt
    			}
    			resp, err := disks[index].RenameData(ctx, srcBucket, srcEntry, fi, dstBucket, dstEntry, RenameOptions{})
    			if err != nil {
    				return err
    			}
    			diskVersions[index] = resp.Sign
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Thu Oct 31 22:10:24 UTC 2024
    - 78.8K bytes
    - Viewed (0)
Back to top